UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

27 lines (26 loc) 925 B
/** * For CIV - Identifies how the execution price LastPx (31) was calculated from the fund unit/share price(s) calculated at the fund valuation point. * - Tag: 484 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const ExecPriceType: Readonly<{ /** Bid price */ readonly BidPrice: 'B'; /** Creation price */ readonly CreationPrice: 'C'; /** Creation price plus adjustment percent */ readonly CreationPricePlusAdjustmentPercent: 'D'; /** Creation price plus adjustment amount */ readonly CreationPricePlusAdjustmentAmount: 'E'; /** Offer price */ readonly OfferPrice: 'O'; /** Offer price minus adjustment percent */ readonly OfferPriceMinusAdjustmentPercent: 'P'; /** Offer price minus adjustment amount */ readonly OfferPriceMinusAdjustmentAmount: 'Q'; /** Single price */ readonly SinglePrice: 'S'; }>;