UNPKG

@stoqey/ib

Version:

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

16 lines (15 loc) 466 B
/** * Delta-Neutral Contract. */ export interface DeltaNeutralContract { /** * The unique contract identifier specifying the security. * Used for Delta-Neutral Combo contracts. */ conId: number; /** The underlying stock or future delta. Used for Delta-Neutral Combo contracts. */ delta: number; /** The price of the underlying. Used for Delta-Neutral Combo contracts. */ price: number; } export default DeltaNeutralContract;