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 charlesugo_1, 05-26-2026, 05:03 PM
        0 responses
        59 views
        0 likes
        Last Post charlesugo_1  
        Started by DannyP96, 05-18-2026, 02:38 PM
        1 response
        144 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 05-11-2026, 05:56 AM
        0 responses
        161 views
        0 likes
        Last Post CarlTrading  
        Started by CarlTrading, 05-10-2026, 08:12 PM
        0 responses
        97 views
        0 likes
        Last Post CarlTrading  
        Started by Hwop38, 05-04-2026, 07:02 PM
        0 responses
        283 views
        0 likes
        Last Post Hwop38
        by Hwop38
         
        Working...
        X