Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Order cancellation – "bar" lifetime limitation

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

    Order cancellation – "bar" lifetime limitation

    Hi to all,
    I’m building automated strategy, and I’d like to limit time when my order is active. Now, by default, is canceled after next bar if it’s not filled.
    My target is to have possibility to have active order next 3 bars.

    Any tip pls ?

    Regards

    RaD

    From LOG:
    >>Entered internal PlaceOrder() method at 3/20/2009 9:13:03 PM: Action=SellShort OrderType=Stop Quantity=1 LimitPrice=0 StopPrice=1185.75 SignalName='myShort111' FromEntrySignal=''

    after one bar, if it's not filled:

    >>Cancelled expired order: BarsInProgress=0: Order='1dca52ead0d540019c75f8dc38f7cfa1/Replay101' Name='myShort111' State=Accepted Instrument='NQ 06-09' Action=SellShort Limit price=0 Stop price=1185.75 Quantity=1 Strategy='ForTemp2' Type=Stop Tif=Gtc Oco='' Filled=0 Fill price=0 Token='1dca52ead0d540019c75f8dc38f7cfa1' Gtd='12/1/2099 12:00:00 AM'

    #2
    Hello,

    So you are trying to keep the order working for 3 bars then cancel it?

    Try counting the bars since you placed the order. Maybe start with something like the below code (where i_have_an_order_open is a bool that is set to true when you place the order initially):

    if(FirstTickOfBar && i_have_an_order_open)
    {
    count++;
    }

    if(count < bars_to_cancel && FirstTickOfBar)
    {
    //place order on the new bar here
    }

    Hope that helps.
    DenNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    78 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    45 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    29 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    32 views
    0 likes
    Last Post TheRealMorford  
    Started by Mindset, 02-28-2026, 06:16 AM
    0 responses
    64 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X