Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Falling(), Rising() on bars before

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

    Falling(), Rising() on bars before

    I'm using CalculateOnBarClose=false as I need tick based data. The only way to know if a bar has closed is by using FirstTickOfBar.

    So if I do understand correctly Falling() and Rising() methods use the current bar and the previous one. But since I'm already in a new bar when I can call them, am I correct that the calculation is based on the current first tick and the last close?

    If yes this is not what I need. I need the close of the last bar in comparison to the one before!
    How can that be done?


    Thanks for help!

    #2
    You need something like this:

    if(FirstTickOfBar)
    {
    if(Close[1] > Close[2]) DoSomethingHere; //is Rising
    else if(Close[1] < Close[2] DoSomethingElseHere; //is Falling
    else DoTheOtherThingHere; //is Flat
    }
    eDanny
    NinjaTrader Ecosystem Vendor - Integrity Traders

    Comment


      #3
      Thanks! I figured it wouldn't work with those functions.

      Since I wanted to use EMA, how can I get the EMA value for the last two bars?

      Comment


        #4
        if(EMA(Close,7)[1] > EMA(Close,7)[2])
        eDanny
        NinjaTrader Ecosystem Vendor - Integrity Traders

        Comment


          #5
          Thanks for sharing, eDanny!
          Ryan M.NinjaTrader Customer Service

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by CarlTrading, 03-31-2026, 09:41 PM
          1 response
          67 views
          0 likes
          Last Post NinjaTrader_ChelseaB  
          Started by CarlTrading, 04-01-2026, 02:41 AM
          0 responses
          36 views
          0 likes
          Last Post CarlTrading  
          Started by CaptainJack, 03-31-2026, 11:44 PM
          0 responses
          59 views
          1 like
          Last Post CaptainJack  
          Started by CarlTrading, 03-30-2026, 11:51 AM
          0 responses
          62 views
          0 likes
          Last Post CarlTrading  
          Started by CarlTrading, 03-30-2026, 11:48 AM
          0 responses
          53 views
          0 likes
          Last Post CarlTrading  
          Working...
          X