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 cmoran13, 04-16-2026, 01:02 PM
        0 responses
        42 views
        0 likes
        Last Post cmoran13  
        Started by PaulMohn, 04-10-2026, 11:11 AM
        0 responses
        25 views
        0 likes
        Last Post PaulMohn  
        Started by CarlTrading, 03-31-2026, 09:41 PM
        1 response
        162 views
        1 like
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 04-01-2026, 02:41 AM
        0 responses
        98 views
        1 like
        Last Post CarlTrading  
        Started by CaptainJack, 03-31-2026, 11:44 PM
        0 responses
        157 views
        2 likes
        Last Post CaptainJack  
        Working...
        X