Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Multi timeframe strategy - Playback

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

    Multi timeframe strategy - Playback

    NT Forum,

    A single-instrument multi-timeframe strategy must use Calculate.OnEachTick to access data from any BarsArray Bar[0] before the close of the Bar (How to structure Multi-Time Frame Strategy).

    I understand a Strategy with Calculate.OnEachTick is tested via Market Replay (Historical) to simulate live market conditions. State (i.e. .Historical & .Realtime etc) simulate live market as expected.

    Can a referenced Indicator differentiate between Market Replay and live market?
    For example, a Strategy can use the below. Indicators can not access Account.
    Code:
    if (Account.Name == "Playback101") //do something

    #2
    Hello Shannon,

    Thanks for your post.

    You can test for the playback connection in the indicator.

    simple test code:

    if (Cbi.Connection.PlaybackConnection != null)
    Print ("Connected to Playback");
    else
    Print ("not connected to playback");

    Comment


      #3
      To save checking Cbi.Connection.PlaybackConnection on each OnBarUpdate, at what State State is it safe to check Cbi.Connection.PlaybackConnection? State.DataLoaded?

      Comment


        #4
        Hi Shannon,

        Thanks for your reply.

        Yes, sorry, I meant to advise that you could either place in State = State.DataLoaded or in OBU using for example if (CurrentBar == 0) to limit to one check.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by CarlTrading, 03-31-2026, 09:41 PM
        1 response
        72 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 04-01-2026, 02:41 AM
        0 responses
        39 views
        0 likes
        Last Post CarlTrading  
        Started by CaptainJack, 03-31-2026, 11:44 PM
        0 responses
        63 views
        2 likes
        Last Post CaptainJack  
        Started by CarlTrading, 03-30-2026, 11:51 AM
        0 responses
        63 views
        0 likes
        Last Post CarlTrading  
        Started by CarlTrading, 03-30-2026, 11:48 AM
        0 responses
        53 views
        0 likes
        Last Post CarlTrading  
        Working...
        X