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

Test for "Rising" Condition

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

    Test for "Rising" Condition

    Many strategies call for rising condition. For example ADX has to be rising?

    What is the best way to test for rising condition?

    I looked at rising condition in script but it only test the value higher than yesterday's value!

    Of course I can test that today > yesterday and yesterday > day before

    Does Ninja provide more sophisticated test for this condition? thx

    #2
    An easy solution would be to test the moving average for a rising condition to get a more broad trend, for example if you wanted to check a period of 15 is still rising:
    Rising(SMA(15))

    Comment


      #3
      sam11976, the NinjaTrader Rising() function looks at the bars on a bar by bar basis, not day to day. If

      It basically works like this:
      Code:
      if (DataSeriesValue[0] > DataSeriesValue[1])
          return true;
      else
         return false;
      AustinNinjaTrader Customer Service

      Comment


        #4
        Originally posted by sam11976 View Post
        Many strategies call for rising condition. For example ADX has to be rising?

        What is the best way to test for rising condition?

        I looked at rising condition in script but it only test the value higher than yesterday's value!

        Of course I can test that today > yesterday and yesterday > day before

        Does Ninja provide more sophisticated test for this condition? thx
        I would think that "current bar greater than the bar before it" means "rising". If you want to say: "Rising for x number of days", you would probably have to manually code that.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by AaronKoRn, Yesterday, 09:49 PM
        0 responses
        11 views
        0 likes
        Last Post AaronKoRn  
        Started by carnitron, Yesterday, 08:42 PM
        0 responses
        10 views
        0 likes
        Last Post carnitron  
        Started by strategist007, Yesterday, 07:51 PM
        0 responses
        12 views
        0 likes
        Last Post strategist007  
        Started by StockTrader88, 03-06-2021, 08:58 AM
        44 responses
        3,982 views
        3 likes
        Last Post jhudas88  
        Started by rbeckmann05, Yesterday, 06:48 PM
        0 responses
        9 views
        0 likes
        Last Post rbeckmann05  
        Working...
        X