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 Mindset, 04-21-2026, 06:46 AM
        0 responses
        90 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by M4ndoo, 04-20-2026, 05:21 PM
        0 responses
        137 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by M4ndoo, 04-19-2026, 05:54 PM
        0 responses
        68 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by cmoran13, 04-16-2026, 01:02 PM
        0 responses
        120 views
        0 likes
        Last Post cmoran13  
        Started by PaulMohn, 04-10-2026, 11:11 AM
        0 responses
        71 views
        0 likes
        Last Post PaulMohn  
        Working...
        X