UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 494 B
/** * Indicates if a Cancel/Replace has caused an order to lose book priority. * - Tag: 638 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const PriorityIndicator: Readonly<{ /** Priority unchanged */ readonly PriorityUnchanged: 0; /** Lost Priority as result of order change */ readonly LostPriorityAsResultOfOrderChange: 1; }>; export type PriorityIndicator = (typeof PriorityIndicator)[keyof typeof PriorityIndicator];