Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

OnConnectionStatusUpdate

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

    OnConnectionStatusUpdate

    Two questions regarding OnConnectionStatusUpdate:

    1. In backtest (historic state), is there a way to simulate / reproduce a connection loss and re-connect ?

    2. Within the OnConnectionStatusUpdate, suppose I use ReloadAllHistoricalData() as follows:

    protected override void OnConnectionStatusUpdate(ConnectionStatusEventArgs connectionStatusUpdate)
    {
    if (connectionStatusUpdate.Status == ConnectionStatus.ConnectionLost)
    {
    IsReloadAllHistoricalDataNeeded = true;
    }
    else if (IsReloadAllHistoricalDataNeeded && connectionStatusUpdate.Status == ConnectionStatus.Connected)
    {
    ReloadAllHistoricalData();
    IsReloadAllHistoricalDataNeeded = false;
    }
    }

    Would NT also buy / sell positions to bring the strategy's positions to be in line with the expected strategy positions as if there was no connection loss?


    #2
    Hello uday12,

    Thanks for your post.

    I am not aware of a way to simulate connection loss in a backtest. Perhaps others in the community might and they are of course welcome to contribute.

    Reloading all historical data will also cause your strategy to be reloaded so it would react according to how you have configured syncing options to your account, reference: https://ninjatrader.com/support/help..._positions.htm

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    37 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, Yesterday, 02:41 AM
    0 responses
    17 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    25 views
    1 like
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    40 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    34 views
    0 likes
    Last Post CarlTrading  
    Working...
    X