It looks like you're new here. If you want to get involved, click one of these buttons!
on_order_update()
ever be combined for the following orders?
place_order(quantity = 1)
place_order(quantity = 1)
Will I get an on_order_update()
with filled_quantity == 2
. The above two orders are placed successively, independent of on_order_update()
implementation. (For example, order 1 was not completed till the order 2 was placed.)on_order_update()
with filled_quantity == 1
each?