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 Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        571 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        331 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        101 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        549 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        549 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X