UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

20 lines (19 loc) 535 B
/** * Specifies a type of Security List. * - Tag: 1470 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const SecurityListType: Readonly<{ /** Industry Classification */ readonly IndustryClassification: 1; /** Trading List */ readonly TradingList: 2; /** Market / Market Segment List */ readonly Market: 3; /** Newspaper List */ readonly NewspaperList: 4; }>; export type SecurityListType = (typeof SecurityListType)[keyof typeof SecurityListType];