Announcement

Collapse
No announcement yet.

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 CaptainJack, 05-29-2026, 05:09 AM
          0 responses
          239 views
          0 likes
          Last Post CaptainJack  
          Started by CaptainJack, 05-29-2026, 12:02 AM
          0 responses
          155 views
          0 likes
          Last Post CaptainJack  
          Started by charlesugo_1, 05-26-2026, 05:03 PM
          0 responses
          165 views
          1 like
          Last Post charlesugo_1  
          Started by DannyP96, 05-18-2026, 02:38 PM
          1 response
          247 views
          0 likes
          Last Post NinjaTrader_ChelseaB  
          Started by CarlTrading, 05-11-2026, 05:56 AM
          0 responses
          199 views
          0 likes
          Last Post CarlTrading  
          Working...
          X