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 CarlTrading, 03-31-2026, 09:41 PM
        1 response
        80 views
        1 like
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 04-01-2026, 02:41 AM
        0 responses
        40 views
        0 likes
        Last Post CarlTrading  
        Started by CaptainJack, 03-31-2026, 11:44 PM
        0 responses
        63 views
        2 likes
        Last Post CaptainJack  
        Started by CarlTrading, 03-30-2026, 11:51 AM
        0 responses
        63 views
        0 likes
        Last Post CarlTrading  
        Started by CarlTrading, 03-30-2026, 11:48 AM
        0 responses
        54 views
        0 likes
        Last Post CarlTrading  
        Working...
        X