Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Get Current StopLoss Price ?

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

    Get Current StopLoss Price ?

    Hello,

    Is there a way to programmatically retrieve the current StopLoss Price?

    I have a section of code in my strategy where I update the stop loss based on various parameters, but I want to "skip over" this section of code depending on where the current stop is.

    Thank you.

    #2
    Hi montana,

    You will need to detect that the stop loss is being submitted in OnOrderUpdate and save the price of the order to a variable.

    For example:

    (*edited quick fix to protected override void)
    protected override void OnOrderUpdate(IOrder order)
    {
    if (order.Name == "Stop loss" && order.OrderState == OrderState.Accepted)
    myStopLossPrice == order.StopPrice;
    }
    Last edited by NinjaTrader_ChelseaB; 08-25-2014, 07:28 AM.
    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      Thanks for the hint, this was also useful for me!

      But the sample above will give you a "virtual or abstract members cannot be private" error.
      => just use:
      protected override void OnOrderUpdate(IOrder order)
      {...}

      Comment


        #4
        Thanks for pointing that out, you are correct we will reflect in our post.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by charlesugo_1, 05-26-2026, 05:03 PM
        0 responses
        60 views
        0 likes
        Last Post charlesugo_1  
        Started by DannyP96, 05-18-2026, 02:38 PM
        1 response
        145 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 05-11-2026, 05:56 AM
        0 responses
        161 views
        0 likes
        Last Post CarlTrading  
        Started by CarlTrading, 05-10-2026, 08:12 PM
        0 responses
        97 views
        0 likes
        Last Post CarlTrading  
        Started by Hwop38, 05-04-2026, 07:02 PM
        0 responses
        283 views
        0 likes
        Last Post Hwop38
        by Hwop38
         
        Working...
        X