Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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 andrewtrades, Today, 04:57 PM
        1 response
        5 views
        0 likes
        Last Post NinjaTrader_Manfred  
        Started by chbruno, Today, 04:10 PM
        0 responses
        3 views
        0 likes
        Last Post chbruno
        by chbruno
         
        Started by josh18955, 03-25-2023, 11:16 AM
        6 responses
        436 views
        0 likes
        Last Post Delerium  
        Started by FAQtrader, Today, 03:35 PM
        0 responses
        7 views
        0 likes
        Last Post FAQtrader  
        Started by rocketman7, Today, 09:41 AM
        5 responses
        19 views
        0 likes
        Last Post NinjaTrader_Jesse  
        Working...
        X