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

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 Barry Milan, Today, 10:35 PM
    1 response
    8 views
    0 likes
    Last Post NinjaTrader_Manfred  
    Started by WeyldFalcon, 12-10-2020, 06:48 PM
    14 responses
    1,428 views
    0 likes
    Last Post Handclap0241  
    Started by DJ888, Yesterday, 06:09 PM
    2 responses
    9 views
    0 likes
    Last Post DJ888
    by DJ888
     
    Started by jeronymite, 04-12-2024, 04:26 PM
    3 responses
    40 views
    0 likes
    Last Post jeronymite  
    Started by bill2023, Today, 08:51 AM
    2 responses
    16 views
    0 likes
    Last Post bill2023  
    Working...
    X