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 Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        664 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        376 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        110 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        575 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        580 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X