UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

21 lines (20 loc) 641 B
/** * Indicates the reason a short sale order is exempted from applicable regulation (e.g. Reg SHO addendum (b)(1) in the U.S.). * - Tag: 1688 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const ShortSaleExemptionReason: Readonly<{ readonly ExemptionReasonUnknown: 0; readonly IncomingSSE: 1; readonly AboveNationalBestBid: 2; readonly DelayedDelivery: 3; readonly OddLot: 4; readonly DomesticArbitrage: 5; readonly InternationalArbitrage: 6; readonly UnderwriterOrSyndicateDistribution: 7; readonly RisklessPrincipal: 8; readonly VWAP: 9; }>;