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 Taddypole, 04-26-2024, 02:47 PM
        2 responses
        14 views
        0 likes
        Last Post Taddypole  
        Started by futtrader, 04-21-2024, 01:50 AM
        6 responses
        58 views
        0 likes
        Last Post futtrader  
        Started by sgordet, Today, 11:48 AM
        0 responses
        4 views
        0 likes
        Last Post sgordet
        by sgordet
         
        Started by Trader146, Today, 11:41 AM
        0 responses
        5 views
        0 likes
        Last Post Trader146  
        Started by jpapa, 04-23-2024, 07:22 AM
        2 responses
        22 views
        0 likes
        Last Post rene69851  
        Working...
        X