Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to trigger a stop loss order via OnOrderUpdate(...) method

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

    How to trigger a stop loss order via OnOrderUpdate(...) method

    Hello everyone,

    I developing a strategy and I need it to trigger a stop loss order separately for a short position and a long position. I tried to use BarsSinceExitExecution("Stop loss") method, but it triggers all executions "Stop loss". I have "SAT4 : Buy" as a signal name for my long orders, and "SAT4 : Sell" as a signal name for my short orders. I think this could be done with OnOrderUpdate(…) method. Here is a part of my code, but it is not working.

    protected override void OnOrderUpdate(Order order, double limitPrice, double stopPrice, int quantity, int filled, double averageFillPrice, OrderState orderState, DateTime time, ErrorCode error, string comment)
    {
    if (order.Name == "SAT4 : Buy" && order.OrderState == OrderState.Filled)
    { … }
    }

    Please tell me what's wrong with it.

    #2
    Hello AntonTymoshchuk,

    Thank you for your note.

    BarsSinceExitExecution should be passed the entry orders signal name.

    For example,

    BarsSinceExitExecution("SAT4 : Sell");
    BarsSinceExitExecution("SAT4 : Buy");

    See the syntax at the following,



    If you change your call from "Stop Loss" to above, do you get the results you expect?

    I look forward to your reply.
    Alan P.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    90 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    137 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
    120 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