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

CrossAbove(High, High, 1)

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

    CrossAbove(High, High, 1)

    Shouldn't CrossAbove(High, High, 1) tell me if the Current Bar High[0] moves above the previous Bar High[1]?

    The method takes IDataseries, yes, and High = DataSeries so it is supposed to be compatible? 'course I could be reading the help wrong...

    Thanks!

    #2
    No, this will not work since identical series can never cross over itself. Try Rising() for this.
    RayNinjaTrader Customer Service

    Comment


      #3
      Thank you.
      OK. Rising() triggers -- over and over and over... A step fwd at least!
      I tried CrossAbove because I thought it would trigger once per bar.

      I can code flags and manage it manually if necessary, I was hoping for a simple already existing method....

      Do you have any suggestions?

      [ Do they ever let you go home? ]

      Comment


        #4
        I'm not sure what you are seeking. Rising() is the method to see if the values are rising or not. If you have CalculateOnBarClose set to false then it will keep evaluating to true as long as it is rising.
        Josh P.NinjaTrader Customer Service

        Comment


          #5
          OK, I did add boolean flags to control action to once per bar, clearing them at the first tick. It has to check intrabar or does no good.

          Oddly, I first tried creating a new DataSeries
          prevHigh.Set(High[1]);
          so that I could later use
          if( CrossAbove(High,prevHigh, 1) )
          but it triggered over and over and over again as well.
          I honestly thought y'all had coded the Cross-over to only trigger at the actual cross-over and not continuously... oh well.

          So I went back to Rising() and semaphores.

          Thanks for the help!
          Cheers

          Comment

          Latest Posts

          Collapse

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