UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

28 lines (27 loc) 1 kB
/** * 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"; }>; export type ExecPriceType = (typeof ExecPriceType)[keyof typeof ExecPriceType];