UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

18 lines (17 loc) 434 B
/** * Defines the type of action to take when the trigger hits. * - Tag: 1101 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const TriggerAction: Readonly<{ /** Activate */ readonly Activate: "1"; /** Modify */ readonly Modify: "2"; /** Cancel */ readonly Cancel: "3"; }>; export type TriggerAction = (typeof TriggerAction)[keyof typeof TriggerAction];