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 Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        649 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        370 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        109 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        574 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        576 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X