I'm trading a multi-day strategy that looks at intraday bars.
I have a SetStopLoss() set as part of my initialize(). However, I'd like to temporarily disable any stop losses during the first bar (30 minute bars) of each session... to avoid being taken out by any temporary gap downs.
Do I need to fake it with a SetStopLoss(Price, 0); ...? I imagine there's a call out there that I can call to temporarily cancel any stop orders...

Comment