Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Not able to replace ExitLongStop order

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

    Not able to replace ExitLongStop order

    Hi,

    I am using following sequence in my automated startegy.



    1. Entering Long

    EnterLong(int quantity, string signalName)


    2. Entering stop order

    In OnExecution method, I am placing stop loss order

    ExitLongStop(int quantity, double stopPrice, string signalName, string fromEntrySignal)


    3. After predefined condition met, I am canceling stop order and placing new stop order (moving stop to break even)


    4. after some predefined condition met, I am selling half of the postion

    ExitLongLimit(int quantity, double limitPrice, string signalName, string fromEntrySignal)


    5. OnExecution of ExitLongLimit order, I want to change/update stop order (which was placed by ExitLongStop) , I cancel old order and place new ExitLongStop with reduced quantity since I have already sold half of the position.
    but Here after placing ExitLongStop order again, nothing happens.


    I want to know, how can I update the stop order after selling half of the position.

    #2
    Hi there, please set TraceOrders = true in the Initialize() section of your strategy and see what output is printed in the output window. If your orders are being ignored, it will say why. If you are scaling out of the position though, it is necessary to first scale in or the exit logic will not behave properly.

    To update the stop order after selling half of the position, you can just update the order. Another option would be to cancel the order and then submit a new stop.
    AustinNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    637 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    366 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    107 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    569 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    572 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X