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 Noerclou, Today, 04:55 AM
        0 responses
        2 views
        0 likes
        Last Post Noerclou  
        Started by llanqui, Yesterday, 09:59 AM
        2 responses
        17 views
        0 likes
        Last Post llanqui
        by llanqui
         
        Started by ThoriSten, Today, 03:56 AM
        0 responses
        6 views
        0 likes
        Last Post ThoriSten  
        Started by PhillT, 04-19-2024, 02:16 PM
        3 responses
        21 views
        0 likes
        Last Post mangel2000  
        Started by TraderBCL, Today, 02:37 AM
        0 responses
        4 views
        0 likes
        Last Post TraderBCL  
        Working...
        X