UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

22 lines (21 loc) 703 B
/** * Defines when the trigger will hit, i.e. the action specified by the trigger instructions will come into effect. * - Tag: 1100 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const TriggerType: Readonly<{ /** Partial Execution */ readonly PartialExecution: "1"; /** Specified Trading Session */ readonly SpecifiedTradingSession: "2"; /** Next Auction */ readonly NextAuction: "3"; /** Price Movement */ readonly PriceMovement: "4"; /** On Order Entry or order modification entry */ readonly OnOrderEntryOrModification: "5"; }>; export type TriggerType = (typeof TriggerType)[keyof typeof TriggerType];