docs/concepts/events/order_pending_cancel.md
OrderPendingCancel represents a CancelOrder command having been sent to the trading
venue. The ExecutionEngine applies it to the order, updates the Cache, and publishes
it on the MessageBus. It fires when the system dispatches a cancel request and awaits
venue acknowledgement.
Transition: ACCEPTED -> PENDING_CANCEL. Handler: on_order_pending_cancel.
OrderPendingCancel carries only the common order event fields. On this event, venue_order_id and
account_id are usually populated but may be None, and reconciliation carries a real
value.
Reading the event in a strategy handler:
def on_order_pending_cancel(self, event: OrderPendingCancel) -> None:
self.log.info(f"Cancel pending for {event.client_order_id}")