UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

42 lines (41 loc) 1.61 kB
/** * Price conditions in effect at the time of the trade. Multiple price conditions can be in effect at the same time. Price conditions are usually required to be reported in markets that have regulations on price execution at a market or national best bid or offer, and the trade price differs from the best bid or offer. * - Tag: 1839 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const TradePriceCondition: Readonly<{ /** Special cum dividend (CD) */ readonly SpecialCumDividend: 0; /** Special cum rights (CR) */ readonly SpecialCumRights: 1; /** Special ex dividend (XD) */ readonly SpecialExDividend: 2; /** Special ex rights (XR) */ readonly SpecialExRights: 3; /** Special cum coupon (CC) */ readonly SpecialCumCoupon: 4; /** Special cum capital repayments (CP) */ readonly SpecialCumCapitalRepayments: 5; /** Special ex coupon (XC) */ readonly SpecialExCoupon: 6; /** Special ex capital repayments (XP) */ readonly SpecialExCapitalRepayments: 7; /** Cash settlement (CS) */ readonly CashSettlement: 8; /** Special cum bonus (CB) */ readonly SpecialCumBonus: 9; readonly SpecialPrice: 10; /** Special ex bonus (XB) */ readonly SpecialExBonus: 11; /** Guaranteed delivery (GD) */ readonly GuaranteedDelivery: 12; readonly SpecialDividend: 13; readonly PriceImprovement: 14; readonly NonPriceFormingTrade: 15; readonly TradeExemptedFromTradingObligation: 16; readonly PricePending: 17; readonly PriceNotApplicable: 18; }>;