UNPKG

@stoqey/ib

Version:

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

13 lines (12 loc) 370 B
import SecType from "../data/enum/sec-type"; import { Contract } from "./contract"; /** * A container for storing Soft Dollar Tier information. */ export interface ContractDescription { /** The underlying contract. */ contract?: Contract; /** Array of derivative security types. */ derivativeSecTypes?: SecType[]; } export default ContractDescription;