I am trying to understand the IOrder object and how their property values changes related to filled quantity.
Example:
1. A new order has placed with quantity 10, nothing got filled
IOrder.Filled=0
IOrder.Quantity=10
2. Out of 10 qty 2 got filled ( Quantity 8 is not yet filled)
IOrder.Filled=2
IOrder.Quantity=10
3. Out of remaining 8, 4 got filled
IOrder.Filled= (what value can I expect, will it be 4 or (2+4=6)
IOrder.Quantity=10
thanks,


Comment