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 Hwop38, 05-04-2026, 07:02 PM
        0 responses
        160 views
        0 likes
        Last Post Hwop38
        by Hwop38
         
        Started by CaptainJack, 04-24-2026, 11:07 PM
        0 responses
        308 views
        0 likes
        Last Post CaptainJack  
        Started by Mindset, 04-21-2026, 06:46 AM
        0 responses
        245 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by M4ndoo, 04-20-2026, 05:21 PM
        0 responses
        349 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by M4ndoo, 04-19-2026, 05:54 PM
        0 responses
        179 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Working...
        X