UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

30 lines (29 loc) 760 B
/** * Indicates the type of valuation method or payout trigger for an in-the-money option. * - Tag: 1482 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const OptPayoutType: Readonly<{ /** Vanilla */ readonly Vanilla: 1; /** Capped */ readonly Capped: 2; /** Digital (Binary) */ readonly Binary: 3; /** Asian */ readonly Asian: 4; /** Barrier */ readonly Barrier: 5; /** Digital Barrier */ readonly DigitalBarrier: 6; /** Lookback */ readonly Lookback: 7; /** Other path dependent */ readonly OtherPathDependent: 8; /** Other */ readonly Other: 99; }>; export type OptPayoutType = (typeof OptPayoutType)[keyof typeof OptPayoutType];