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 SalmaTrader, 07-07-2026, 10:26 PM
        0 responses
        47 views
        0 likes
        Last Post SalmaTrader  
        Started by CarlTrading, 07-05-2026, 01:16 PM
        0 responses
        22 views
        0 likes
        Last Post CarlTrading  
        Started by CaptainJack, 06-17-2026, 10:32 AM
        0 responses
        15 views
        0 likes
        Last Post CaptainJack  
        Started by kinfxhk, 06-17-2026, 04:15 AM
        0 responses
        21 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Started by kinfxhk, 06-17-2026, 04:06 AM
        0 responses
        23 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Working...
        X