UNPKG

@stoqey/ib

Version:

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

16 lines (15 loc) 430 B
import SecType from "../data/enum/sec-type"; import ComboLeg from "./comboLeg"; import { Contract } from "./contract"; /** * A Combo contract. */ export declare class Combo implements Contract { symbol: string; comboLegs: ComboLeg[]; currency?: string; exchange?: string; constructor(symbol: string, comboLegs: ComboLeg[], currency?: string, exchange?: string); secType: SecType; } export default Combo;