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 NullPointStrategies, Today, 05:17 AM
    0 responses
    22 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    120 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    63 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    41 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    45 views
    0 likes
    Last Post TheRealMorford  
    Working...
    X