Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

SetStopLoss not working at all

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

    SetStopLoss not working at all

    Hi there !
    why the following stoploss code never get executed ? they are placed under OnBarUpdate method within strategy.
    could this due to the entry order was either manually placed or placed by another strategy?

    which means that SetStopLoss and SetProfitTarget work only for same strategy entry order ?


    if (PositionsAccount[0].MarketPosition == MarketPosition.Flat)
    {
    SetStopLoss(CalculationMode.Ticks, 40);
    }

    // If an position is open, allow for stop loss and target modification to $50
    else (PositionsAccount[0].MarketPosition == MarketPosition.Long)
    {

    SetStopLoss(CalculationMode.Currency, 50);
    SetProfitTarget(CalculationMode.Currency, 50);

    }


    #2
    Hello judysamnt7,

    Thank you for your post.

    A strategy can only manage orders placed by the strategy itself - it cannot manage manual orders or orders placed by another strategy.

    Please let us know if you have any further questions.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    47 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    22 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    33 views
    1 like
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    50 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    42 views
    0 likes
    Last Post CarlTrading  
    Working...
    X