I'm trying to open 2 stop limit order in different directions (long and short)
if (_orderShort == null)
{
_orderShort = EnterShortStopLimit(0, true, 1, Close[0] - 50 * TickSize,
Close[0] - 55 * TickSize, "Short stop limit");
}
if (_orderLong == null)
{
_orderLong = EnterLongStopLimit(0, true, 1, Close[0] + 50 * TickSize,
Close[0] + 55 * TickSize,
"Long stop limit");
}
In example above EnterLongStopLimit always returns null. If I swap them and call
1) EnterLongStopLimit
2) EnterShortStopLimit
then EnterShortStopLimit will return null.
It seems NT cannot hold 2 stop limit orders simultaneously. Is the any way to make it working?

Comment