UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

20 lines (19 loc) 914 B
/** * Specifies how the underlying price is determined at the point of option exercise. The underlying price may be set to the current settlement price, set to a special reference, set to the optimal value of the underlying during the defined period ("Look-back") or set to the average value of the underlying during the defined period ("Asian option"). * - Tag: 1481 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const UnderlyingPriceDeterminationMethod: Readonly<{ /** Regular */ readonly Regular: 1; /** Special reference */ readonly SpecialReference: 2; /** Optimal value (Lookback) */ readonly OptimalValue: 3; /** Average value (Asian option) */ readonly AverageValue: 4; }>; export type UnderlyingPriceDeterminationMethod = (typeof UnderlyingPriceDeterminationMethod)[keyof typeof UnderlyingPriceDeterminationMethod];