UNPKG

@stoqey/ib

Version:

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

18 lines (17 loc) 448 B
import SecType from "../enum/sec-type"; /** * A container for storing Family Code information. */ export interface DepthMktDataDescription { /** The exchange code. */ exchange?: string; /** The security type. */ secType?: SecType; /** TODO: document */ listingExch?: string; /** TODO: document */ serviceDataType?: string; /** TODO: document */ aggGroup?: number; } export default DepthMktDataDescription;