UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 509 B
/** * Type of price used to determine upfront payment for swaps contracts. * - Tag: 1741 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const UpfrontPriceType: Readonly<{ /** Percentage (i.e. percent of par) (often called "dollar price" for fixed income) */ readonly Percentage: 1; /** Fixed amount (absolute value) */ readonly FixedAmount: 3; }>; export type UpfrontPriceType = (typeof UpfrontPriceType)[keyof typeof UpfrontPriceType];