I am submitting an order inside an indicator that is attached to Market Analyzer (add-on) as below.
order1 = myAccount.CreateOrder(myInstrument, OrderAction.Buy, OrderType.Limit, TimeInForce.Day, 1, GetCurrentBid(0), 0, null, "Entry", null);
myAccount.Submit(new[] { order1 });
How can I get the execution quantity in case of a partially filled order? Can I do this without using OnExecutionUpdate?
Thank you,

Comment