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