Suppose my strategy places two limit orders and they both get hit
prc = 900.25
EnterLongLimit(0,true,1,prc ,"BuyLimitOrder.1");
EnterLongLimit(0,true,1,prc+TickSize,"BuyLimitOrde r.2");
both have the same profit target but only 1 porfot target order gets hit
I can catch the execution of a target fill but how do I determine which original longLimit order it is related too the execution.name = "Profit target" and does not hold any information regarding the originating order.
Thanks
Paul

Comment