Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Close bar recognization in multi time frame strategy

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

    Close bar recognization in multi time frame strategy

    Hi Guys,

    I have a simple question to ask. in this case I set CalculateOnClose = false, I have 10 minutes bar and 30 minutes bar comes in my script in real time.

    I was able to identify whether the 10 minutes bar or 30 minutes bar was close separately by using FirstTickOfBar variable.

    But i have some trouble to identify whether 10 minutes and 30 minutes bar closed together or not. I observed that 30 minutes bar close trigger always comes after 10 minutes bar close. But How can I filter out the 10 minutes close trigger? because I don't want my strategy got triggered twice at the same timestamp.

    Here is an example. and the trigger that i want to pick up

    10:10:00 ---- 10 minutes bar close triggered. I want to pick it up
    10:20:00 ---- 10 minutes bar close triggered. I want to pick it up
    10:30:00 ---- both 10 minutes and 30 minutes close triggered ( 10 comes first, 30 comes second) but I only want to use 30 minutes close trigger.

    How can I filter 10 minutes close trigger out at 10:30:00.

    Thanks in advance.

    WQL

    #2
    Hello WQL,

    Thanks for the post and welcome to the NinjaTrader forums.

    You can use BarsInProgress filter to define context of updates.

    if (BarsInProgress == 0 && FirstTickOfBar)

    if (BarsInProgress == 1 && FirstTickOfBar)

    Ryan M.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by charlesugo_1, 05-26-2026, 05:03 PM
    0 responses
    56 views
    0 likes
    Last Post charlesugo_1  
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    143 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    160 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    96 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    276 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Working...
    X