UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

19 lines (18 loc) 436 B
/** * Number of shares in numeric or relative size. * - Tag: 27 * - FIX Specification type: String * - FIX Specification version: FIX42 * - Mapped type: string * @readonly * @public */ export declare const IOIShares: Readonly<{ /** Large */ readonly Large: "L"; /** Medium */ readonly Medium: "M"; /** Small */ readonly Small: "S"; }>; export type IOIShares = (typeof IOIShares)[keyof typeof IOIShares];