UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 488 B
/** * Instruction to define conditions under which to release a locked order or parts of it. * - Tag: 1810 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const ReleaseInstruction: Readonly<{ /** Intermarket Sweep Order (ISO) */ readonly ISO: 1; /** No Away Market Better check */ readonly NoAwayMarketBetterCheck: 2; }>; export type ReleaseInstruction = (typeof ReleaseInstruction)[keyof typeof ReleaseInstruction];