UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 411 B
/** * Describes whether discretionay price is static or floats * - Tag: 841 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const DiscretionMoveType: Readonly<{ /** Floating (default) */ readonly Floating: 0; /** Fixed */ readonly Fixed: 1; }>; export type DiscretionMoveType = (typeof DiscretionMoveType)[keyof typeof DiscretionMoveType];