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 habeebft, Today, 07:27 AM
    1 response
    11 views
    0 likes
    Last Post NinjaTrader_ChristopherS  
    Started by AveryFlynn, Today, 04:57 AM
    1 response
    12 views
    0 likes
    Last Post NinjaTrader_Erick  
    Started by Max238, Today, 01:28 AM
    4 responses
    37 views
    0 likes
    Last Post Max238
    by Max238
     
    Started by r68cervera, Today, 05:29 AM
    1 response
    10 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by geddyisodin, Today, 05:20 AM
    1 response
    14 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Working...
    X