UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 413 B
/** * Instructs when to refresh DisplayQty (1138). * - Tag: 1083 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const DisplayWhen: Readonly<{ /** Immediate (after each fill) */ readonly Immediate: "1"; /** Exhaust (when DisplayQty = 0) */ readonly Exhaust: "2"; }>; export type DisplayWhen = (typeof DisplayWhen)[keyof typeof DisplayWhen];