Receive Execution Details

View as MarkdownOpen in Claude

EWrapper.execDetails (

reqId: int. The request’s identifier.

contract: Contract. The Contract of the Order.

execution: Execution. The Execution details.
)

Provides the executions which happened in the last 24 hours.

1def execDetails(self, reqId: int, contract: Contract, execution: Execution):
2 print("ExecDetails. ReqId:", reqId, "Symbol:", contract.symbol, "SecType:", contract.secType, "Currency:", contract.currency, execution)

EWrapper.execDetailsEnd (

reqId: int. The request’s identifier
)

Indicates the end of the Execution reception.

1def execDetailsEnd(self, reqId: int):
2 print("ExecDetailsEnd. ReqId:", reqId)