Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Canceling a order after <n> bars

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

    Canceling a order after <n> bars

    All order method are going to be canceled after the current bar is finished

    By using the Method with the liveUntilCancelled-param the order has to be canceled with the CancelOrder()-Method ---- right ?

    EnterLongStop(int barsInProgressIndex, bool liveUntilCancelled, int quantity, double limitPrice,string signalName)


    so ... has anybody a idea how I can cancel the order after e.g. 4 bars...

    the same strategy should run in all timeframes.

    Thanks for help

    #2
    Yes, that is correct.

    Create a variable

    private int submitBar;

    when you submit the order assign it a value of:

    submitBar = CurrentBar;

    add some code like:

    if (CurrentBar - submitBar == 4)
    // Cancel order
    RayNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by PaulMohn, Today, 05:00 AM
    0 responses
    5 views
    0 likes
    Last Post PaulMohn  
    Started by ZenCortexAuCost, Today, 04:24 AM
    0 responses
    5 views
    0 likes
    Last Post ZenCortexAuCost  
    Started by ZenCortexAuCost, Today, 04:22 AM
    0 responses
    2 views
    0 likes
    Last Post ZenCortexAuCost  
    Started by SantoshXX, Today, 03:09 AM
    0 responses
    16 views
    0 likes
    Last Post SantoshXX  
    Started by DanielTynera, Today, 01:14 AM
    0 responses
    3 views
    0 likes
    Last Post DanielTynera  
    Working...
    X