如果一分钟后没有成交,如何自动取消订单?

How to automatically cancel an order if it is not filled after a minute?

我想在 IBKR 的 IB API 中自动取消订单,如果它们在一分钟后仍未成交。都是父订单,不能睡60秒就用cancelOrder,不然子订单也会被取消

您可以在下单时添加有效时间条件。

https://interactivebrokers.github.io/tws-api/order_conditions.html

Interactive Brokers time-in-force order through python api

order = Order()
order.goodTillDate = "20200923 15:13:20 EST"
order.tif = "GTD"