fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 796 B
TypeScript
/**
* Specifies the fallback provisions for the hedging party in the determination of the final settlement price.
* - Tag: 2599
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const ComplexEventPVFinalPriceElectionFallback: Readonly<{
/** Close
In respect of the "early final valuation date", the provisions for "future present value close" shall apply. */
readonly Close: 0;
/** Hedge election
In respect of the "early final valuation date", the provisions for "future present value hedge execution" shall apply. */
readonly HedgeElection: 1;
}>;
export type ComplexEventPVFinalPriceElectionFallback = (typeof ComplexEventPVFinalPriceElectionFallback)[keyof typeof ComplexEventPVFinalPriceElectionFallback];