Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Regression Channel (Support for Deviations < 1)

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Regression Channel (Support for Deviations < 1)

    Hello,

    I tried searching but couldn't find anything pertaining to this. Does anyone know if some enterprising individual has modified the original "regression channel" indicator code that comes with Ninjatrader to support standard deviations below 1.0? It can support 2.5, 2.2, 1.2, etc, but it won't work with anything less than 1 (.5, .25, etc).

    Does anyone know if this is available anywhere or if anyone could code up this modification real quicK? Thanks in advance...


    -Amed

    #2
    when you build an indicator there's a min value a parameter can have

    you have to go into the code and change the min from 1 to 0

    Comment


      #3
      Amed, towards the bottom of most indicators you'll see something like this:
      Code:
      [Description("")]
      [GridCategory("Parameters")]
      public int MyInput0
      {
           get { return myInput0; }
           set { myInput0 = Math.Max(1, value); }
      }
      The Math.Max is what is creating an artificial barrier for the input value. You can change it to ignore a floor value:
      Code:
      [Description("")]
      [GridCategory("Parameters")]
      public int MyInput0
      {
           get { return myInput0; }
           set { myInput0 = value; }
      }
      AustinNinjaTrader Customer Service

      Comment


        #4
        this did the trick--much appreciated!!

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        581 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        338 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        103 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        554 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        552 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X