Two orders

vijoeyz
For a given instrument, can 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.)

Can I expect two individual on_order_update() with filled_quantity == 1 each?
  • rakeshr
    Can I expect two individual on_order_update() with filled_quantity == 1 each?
    Yes, you will get two individual order_update with each having different order_id.
Sign In or Register to comment.