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 argusthome, Yesterday, 10:06 AM
          0 responses
          20 views
          0 likes
          Last Post argusthome  
          Started by NabilKhattabi, 03-06-2026, 11:18 AM
          0 responses
          18 views
          0 likes
          Last Post NabilKhattabi  
          Started by Deep42, 03-06-2026, 12:28 AM
          0 responses
          14 views
          0 likes
          Last Post Deep42
          by Deep42
           
          Started by TheRealMorford, 03-05-2026, 06:15 PM
          0 responses
          9 views
          0 likes
          Last Post TheRealMorford  
          Started by Mindset, 02-28-2026, 06:16 AM
          0 responses
          38 views
          0 likes
          Last Post Mindset
          by Mindset
           
          Working...
          X