I have a strategy that places two different entries. Both entries are submitted and filled ok. The first entry's exit orders are also submitted and filled fine. However, the exit orders for the second entry are not submitted for some reason. I can see NT evaluating the logic inside the brackets that contain the second entry's exit order. But nothing happens when NT gets to the following exit order code.
longProfitTargetOrder2 = ExitLongLimit(0, true, filled2, limitEntryAdd + (Target2 * TickSize), "ProTgtLE2Exit"+instrument, "ProLE2"+instrument) ; //Set Profit Target longStopOrder2 = ExitLongStopLimit(0, true, filled2, limitEntryAdd - (Stop2 * TickSize), limitEntryAdd - (Stop2 * TickSize), "ProStopLE2Exit"+instrument, "ProLE2"+instrument) ; //Set Stop Loss

Comment