fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
32 lines (31 loc) • 1.17 kB
TypeScript
/**
* Specifies when the complex event outcome takes effect. The outcome of a complex event is a payout or barrier action as specified by the ComplexEventType(1484).
* - Tag: 1489
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const ComplexEventPriceTimeType: Readonly<{
/** Expiration */
readonly Expiration: 1;
/** Immediate (At Any Time) */
readonly Immediate: 2;
/** Specified Date/Time */
readonly SpecifiedDate: 3;
/** Close
Official closing time of the exchange on valuation date. */
readonly Close: 4;
/** Open
Official opening time of the exchange on valuation date. */
readonly Open: 5;
/** Official settlement price
Official settlement price determination time. */
readonly OfficialSettlPrice: 6;
/** Derivatives close
Official closing time of the derivatives exchange. */
readonly DerivativesClose: 7;
/** As specified in Master Confirmation */
readonly AsSpecifiedMasterConfirmation: 8;
}>;
export type ComplexEventPriceTimeType = (typeof ComplexEventPriceTimeType)[keyof typeof ComplexEventPriceTimeType];