Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Replay/Backtest clock - how to access

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

    Replay/Backtest clock - how to access

    Hi,


    In replay/backtest, IExecute.Time for the exit's returns the "replay" time - not the computer clock so to speak. It returns the time that I see on the Market Replay control.

    After an exit, if I want to see that at least X seconds passed before I enter a new trade, I can use DateTime.Now for a live environment.

    How can I assess the current replay clock?

    My code looks something like this:

    Code:
    Trade lastTrade = Performance.AllTrades[Performance.AllTrades.Count - 1];
    DateTime lastExitTime = lastTrade.Exit.Time;
    
      
    DateTime newEntryThresh = lastExitTime.AddSeconds(45);
                
    if (DateTime.Compare(DateTime.Now, newEntryThresh) < 0)
    {
        return false;
    }

    #2
    Hello onnb1,

    Thank you for your post.

    You can use Bars.Marketdata.Connection.Now to retrieve the current time in Market Replay.

    This is unsupported code and therefore we have no documentation.

    Please let me know if I may be of further assistance.

    Comment


      #3
      Hello all,

      I have a strategy that is time dependent.

      For real time, I just access DateTime.Now
      For replay, I use Bars.MarketData.Connection.Now

      What can I use for Backtest? I can see that Bars.MarketData is null which makes since we are using historical bars.

      Onn

      Comment


        #4
        If you want to access time in a way that works on all three types of tests you can use the Time data series : http://www.ninjatrader.com/support/h....html?time.htm



        This time will however be based on the bars time. If you require intra bar time calculations these would not work on a backtest because you only have access to the OHLCV values for each bar.

        Let me know if I can further assist.
        LanceNinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        566 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        330 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        101 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        547 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        548 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X