fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
22 lines (21 loc) • 1 kB
TypeScript
/**
* Specifies the boundary condition to be used for the event price relative to the underlying price at the point the complex event outcome takes effect as determined by the ComplexEventPriceTimeType.
* - Tag: 1487
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const ComplexEventPriceBoundaryMethod: Readonly<{
/** Less than ComplexEventPrice(1486) */
readonly LessThanComplexEventPrice: 1;
/** Less than or equal to ComplexEventPrice(1486) */
readonly LessThanOrEqualToComplexEventPrice: 2;
/** Equal to ComplexEventPrice(1486) */
readonly EqualToComplexEventPrice: 3;
/** Greater than or equal to ComplexEventPrice(1486) */
readonly GreaterThanOrEqualToComplexEventPrice: 4;
/** Greater than ComplexEventPrice(1486) */
readonly GreaterThanComplexEventPrice: 5;
}>;
export type ComplexEventPriceBoundaryMethod = (typeof ComplexEventPriceBoundaryMethod)[keyof typeof ComplexEventPriceBoundaryMethod];