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