UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 401 B
/** * Describes the format of the PriceMovementValue(1921). * - Tag: 1923 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const PriceMovementType: Readonly<{ /** Amount */ readonly Amount: 0; /** Percentage */ readonly Percentage: 1; }>; export type PriceMovementType = (typeof PriceMovementType)[keyof typeof PriceMovementType];