UNPKG

@stoqey/ib

Version:

Interactive Brokers TWS/IB Gateway API client library for Node.js (TS)

12 lines (11 loc) 319 B
import { OperatorCondition } from "./operator-condition"; /** * An order execution condition with contract details. */ export interface ContractCondition extends OperatorCondition { /** The contract id. */ conId: number; /** The exchange code. */ exchange: string; } export default ContractCondition;