Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Does SetStopLoss() Cancel on Next Bar ?

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

    Does SetStopLoss() Cancel on Next Bar ?

    Just wanted to clarify something. If I am in a position via EnterLong() or EnterShort(). And I have called SetStopLoss(). Do I need to keep calling it on every bar?

    I'm having trouble with my stops constantly cancelling, and I can't work out if its a bug in my code of me misunderstanding the behavior in Ninjatrader.

    #2
    Hello kevinenergy,

    Thank you for the post.

    This is likely related to the specific logic you have used, if you are simply using SetStopLoss with an entry, it should remain active. You can create small tests to confirm items like this, here is an example you could apply to a 10 second chart to see what the expected outcome is.


    Code:
    protected override void OnBarUpdate()
    {
    	if(State != State.Realtime) return;
    	if(Position.MarketPosition == MarketPosition.Flat)
    	{
    		EnterLong();
    	}
    	if(Position.MarketPosition == MarketPosition.Long && BarsSinceEntryExecution() == 1)
    	{
    		Print("called SetStopLoss");
    		SetStopLoss(CalculationMode.Ticks, 10);
    	}
    }
    This type of test just submits a single order, waits for a bar then submits the stop which you can then watch as bars elapse to see if it cancels. I did not see it cancel but remained active.

    You can also form other samples like this to be more like what you have created to see if the logic you used is part of the problem. If you are unsure why something is happening still after reducing the logic or making a sample like this, I would be happy to review that with you.

    I look forward to being of further assistance.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CaptainJack, 05-29-2026, 05:09 AM
    0 responses
    163 views
    0 likes
    Last Post CaptainJack  
    Started by CaptainJack, 05-29-2026, 12:02 AM
    0 responses
    82 views
    0 likes
    Last Post CaptainJack  
    Started by charlesugo_1, 05-26-2026, 05:03 PM
    0 responses
    125 views
    0 likes
    Last Post charlesugo_1  
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    206 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    185 views
    0 likes
    Last Post CarlTrading  
    Working...
    X