UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

17 lines (16 loc) 655 B
/** * Specifies the condition between complex events when more than one event is specified. Multiple barrier events would use an "or" condition since only one can be effective at a given time. A set of digital range events would use an "and" condition since both conditions must be in effect for a payout to result. * - Tag: 1490 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const ComplexEventCondition: Readonly<{ /** And */ readonly And: 1; /** Or */ readonly Or: 2; }>; export type ComplexEventCondition = (typeof ComplexEventCondition)[keyof typeof ComplexEventCondition];