UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

23 lines (22 loc) 557 B
/** * MultilegPriceMethod * - Tag: 1378 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const MultilegPriceMethod: Readonly<{ /** Net Price */ readonly NetPrice: 0; /** Reversed Net Price */ readonly ReversedNetPrice: 1; /** Yield Difference */ readonly YieldDifference: 2; /** Individual */ readonly Individual: 3; /** Contract Weighted Average Price */ readonly ContractWeightedAveragePrice: 4; /** Multiplied Price */ readonly MultipliedPrice: 5; }>;