Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Multi instrument time synchronisation

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

    Multi instrument time synchronisation

    I'm running a strategy with three instruments, each on 1 minute charts, however I notice that the charts become unsynchronised quite often using the code below in OnBarUpdate():

    Is there a way to improve the synch of multiple instruments?

    Thanks

    Chris

    Code:
    if (Times[0][0] != Times[1][0] && Times[0][0] != Times[2][0])
                {
                    Print(Time[0] + " Times not synchronised");
                    return;
                }

    #2
    Hi Operandi,

    The various bar objects are not intertwined together in the sense that just because one of the bar objects fires off an 10am event the others do not have to fire off 10am events as well.

    The bars objects are triggered whenever their underlying instruments have incoming data. If one instrument has a 10am event at this very moment, the other objects can still be at 9:59:59am event or even on a 10:00:01 event. It all depends on the timestamp of the incoming data of the particular instrument.
    Josh P.NinjaTrader Customer Service

    Comment


      #3
      Hi Josh

      Thanks for this clarification.

      So it makes perfect sense to test for the same timestamps for each of the instruments and ignore events where they are out of synch because of different event timings in the instrument data streams.

      Chris

      Comment


        #4
        Yes, it is expected that timestamps across different instruments can be different depending on when their latest data comes in.
        Josh P.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        633 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        364 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        105 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        567 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        568 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X