fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
24 lines (23 loc) • 593 B
TypeScript
/**
* Specifies the period type.
* - Tag: 41011
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const ComplexEventPeriodType: Readonly<{
/** Asian Out */
readonly AsianOut: 0;
/** Asian In */
readonly AsianIn: 1;
/** Barrier Cap */
readonly BarrierCap: 2;
/** Barrier Floor */
readonly BarrierFloor: 3;
/** Knock Out */
readonly KnockOut: 4;
/** Knock In */
readonly KnockIn: 5;
}>;
export type ComplexEventPeriodType = (typeof ComplexEventPeriodType)[keyof typeof ComplexEventPeriodType];