Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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");
    Paul H.NinjaTrader Customer Service

    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.
        Paul H.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Brevo, Today, 01:45 AM
        0 responses
        4 views
        0 likes
        Last Post Brevo
        by Brevo
         
        Started by aussugardefender, Today, 01:07 AM
        0 responses
        3 views
        0 likes
        Last Post aussugardefender  
        Started by pvincent, 06-23-2022, 12:53 PM
        14 responses
        240 views
        0 likes
        Last Post Nyman
        by Nyman
         
        Started by TraderG23, 12-08-2023, 07:56 AM
        9 responses
        384 views
        1 like
        Last Post Gavini
        by Gavini
         
        Started by oviejo, Today, 12:28 AM
        0 responses
        6 views
        0 likes
        Last Post oviejo
        by oviejo
         
        Working...
        X