UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 359 B
/** * Type of settlement price * - Tag: 731 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const SettlPriceType: Readonly<{ /** Final */ readonly Final: 1; /** Theoretical */ readonly Theoretical: 2; }>; export type SettlPriceType = (typeof SettlPriceType)[keyof typeof SettlPriceType];