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 usazencort, Today, 01:16 AM
        0 responses
        1 view
        0 likes
        Last Post usazencort  
        Started by kaywai, 09-01-2023, 08:44 PM
        5 responses
        603 views
        0 likes
        Last Post NinjaTrader_Jason  
        Started by xiinteractive, 04-09-2024, 08:08 AM
        6 responses
        22 views
        0 likes
        Last Post xiinteractive  
        Started by Pattontje, Yesterday, 02:10 PM
        2 responses
        21 views
        0 likes
        Last Post Pattontje  
        Started by flybuzz, 04-21-2024, 04:07 PM
        17 responses
        230 views
        0 likes
        Last Post TradingLoss  
        Working...
        X