Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Rescue strategy to cancel all pending orders from my account

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

    Rescue strategy to cancel all pending orders from my account

    In some situations, I need to cancel all my pending orders from my account. I made a small scrips as follows. But this scrip is quite dangerous because this script can be triggered for any other strategy being called. I have to remember to comment out after using it. Is there any other method to safely cancel all pending orders? Thanks a lot.

    protected override void OnStateChange()
    {
    if (State == State.SetDefaults)
    {
    ...
    lock (Account.All)
    myAccount = Account.All.FirstOrDefault(a => a.Name == "Sim101");

    foreach (Order order in myAccount.Orders)
    {
    if (order.OrderState != OrderState.Cancelled)
    {
    myAccount.CancelAllOrders(order.Instrument);
    }
    }


    #2
    Hello localappleseed,

    I would highly not recommend that this code be in State.SetDefaults. The defaults are called when the Strategies window is opened. Every time it's opened. This would cancel all working orders everytime the Strategies window is opened when the defaults are pulled.

    A more effective place would be State.DataLoaded, which runs once in OnStateChange() as the strategy has finished loading data and is about to start running OnBarUpdate(), or State.Historical as historical data is about to begin processing, or even State.Realtime just before real-time data begins processing.

    Please see the help guide on OnStateChange() and the definitions of each State.
    https://ninjatrader.com/support/help...tatechange.htm

    That said, what do you mean by "safe"? Do you mean the code would not cancel working orders on the account?

    This would be the only code to place orders to an account outside of a NinjaScript Strategy. I am not aware of any other approach.
    Last edited by NinjaTrader_ChelseaB; 11-15-2020, 07:26 PM.
    Chelsea B.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    88 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    135 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    68 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by cmoran13, 04-16-2026, 01:02 PM
    0 responses
    119 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    69 views
    0 likes
    Last Post PaulMohn  
    Working...
    X