Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

bar replay time

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

    bar replay time

    i used a work around to get the DateTime during barreplay so i can connect timestamp of specific events in my trading system during market replay. how can i do the same in NT8
    here is a function i used in NT 7 but cannot fathom how to do it in NT8
    Code:
    private DateTime currentTime()
            {
                DateTime a = DateTime.Now;
                try
                {
    
                    a = Bars.MarketData.Connection.Options.Provider == Cbi.Provider.Replay ? Bars.MarketData.Connection.Now : DateTime.Now;
                }
                catch (Exception e)
                {
    
                    Print( "There was an error : Printfing datetime" + e.ToString());
                    Print( e.StackTrace);
    
    
    
                }
                return a;
            }

    #2
    Hello junkone,

    For NinjaTrader 8, use Cbi.Connection.PlaybackConnection.Now.
    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      how do I check if I am in a playback mode?

      Comment


        #4
        Hello junkone,

        You can find the connection name through the OnConnectionStatusUpdate event with the ConnectionStatusEventArgs.Connection.Options.Name

        Below is a link to an example.
        http://ninjatrader.com/support/forum...140#post462140
        Chelsea B.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by kinfxhk, 07-13-2026, 10:18 AM
        0 responses
        24 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Started by kinfxhk, 07-13-2026, 09:50 AM
        0 responses
        14 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Started by kinfxhk, 07-13-2026, 07:21 AM
        0 responses
        20 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Started by kinfxhk, 07-11-2026, 02:11 AM
        0 responses
        19 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Started by SalmaTrader, 07-07-2026, 10:26 PM
        0 responses
        135 views
        0 likes
        Last Post SalmaTrader  
        Working...
        X