Should I some how be using something with 'stop1.Instrument.FullName' ?
Here is what I think is the relevant part of my code:
private IOrder stop1;
private IOrder submitLong1 = null;
...
submitLong1 = SubmitOrder(0,OrderAction.Buy, OrderType.Market, 1,0,0, "EnterL1","EnterLong1");
...
OnExecution
{
...
stop1 = SubmitOrder(0, OrderAction.Sell, OrderType.Stop, execution.Order.Filled, stopValue, stopValue, "ExitL1", "LongStop1");
}
...
ChangeOrder(stop1, stop1.Quantity, 0, stopValue);
Thanks
Gordo

Comment