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 NullPointStrategies, Yesterday, 05:17 AM
        0 responses
        65 views
        0 likes
        Last Post NullPointStrategies  
        Started by argusthome, 03-08-2026, 10:06 AM
        0 responses
        139 views
        0 likes
        Last Post argusthome  
        Started by NabilKhattabi, 03-06-2026, 11:18 AM
        0 responses
        75 views
        0 likes
        Last Post NabilKhattabi  
        Started by Deep42, 03-06-2026, 12:28 AM
        0 responses
        45 views
        0 likes
        Last Post Deep42
        by Deep42
         
        Started by TheRealMorford, 03-05-2026, 06:15 PM
        0 responses
        50 views
        0 likes
        Last Post TheRealMorford  
        Working...
        X