Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

market replay - days to load

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

    market replay - days to load

    How do I get my strategy to only run the timeframe I select with the play,pause when using market replay.
    Currently once I start the market replay it seems to run through the last 3 days or so through my entire strategy resulting in trades being entered, exit, cancelled, etc.
    I see that you can manually set days to load. Can it be done programatically and can it be 0?
    I already have:
    PHP Code:
    if (Historical)return; 
    
    Seems to have no affect when used with market replay?

    Thanks

    #2
    Hi trtrav,

    There's no programmatic control here, but you can set in the GUI the from and to date.

    if (Historical) return; works the same in market replay as live, but maybe not the way you expect. Market replay simulates a real time feed, so the tick by tick playback will flag bars with Historical = false. There can still be historical bars, but the script shouldn't calculate them if you have that return statement. To check what your strategy is doing on Historical/ RealTime bars add this statement

    Print(CurrentBar + " Historical: " + Historical);

    Since you are returning out when Historical, you should expect that this statement will always look like: # Historical: false and will only receive output when there is playback.
    Ryan M.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    670 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    379 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    111 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    575 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    582 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X