Announcement

Collapse
No announcement yet.

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 cmoran13, 04-16-2026, 01:02 PM
        0 responses
        36 views
        0 likes
        Last Post cmoran13  
        Started by PaulMohn, 04-10-2026, 11:11 AM
        0 responses
        23 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
        96 views
        1 like
        Last Post CarlTrading  
        Started by CaptainJack, 03-31-2026, 11:44 PM
        0 responses
        152 views
        2 likes
        Last Post CaptainJack  
        Working...
        X