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 kaywai, Today, 06:26 AM
          1 response
          6 views
          0 likes
          Last Post kaywai
          by kaywai
           
          Started by ct, 05-07-2023, 12:31 PM
          6 responses
          203 views
          0 likes
          Last Post wisconsinpat  
          Started by kevinenergy, 02-17-2023, 12:42 PM
          118 responses
          2,780 views
          1 like
          Last Post kevinenergy  
          Started by briansaul, Today, 05:31 AM
          0 responses
          10 views
          0 likes
          Last Post briansaul  
          Started by traderqz, Yesterday, 12:06 AM
          11 responses
          28 views
          0 likes
          Last Post NinjaTrader_Gaby  
          Working...
          X