UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

24 lines (23 loc) 843 B
/** * Indicates whether order has been triggered during its lifetime. Applies to cases where original information, e.g. OrdType(40), is modified when the order is triggered. * - Tag: 1823 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const Triggered: Readonly<{ /** Not triggered (default) */ readonly NotTriggered: 0; /** Triggered */ readonly Triggered: 1; /** Stop order triggered */ readonly StopOrderTriggered: 2; /** One Cancels the Other (OCO) order triggered */ readonly OCOOrderTriggered: 3; /** One Triggers the Other (OTO) order triggered */ readonly OTOOrderTriggered: 4; /** One Updates the Other (OUO) order triggered */ readonly OUOOrderTriggered: 5; }>; export type Triggered = (typeof Triggered)[keyof typeof Triggered];