UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

21 lines (20 loc) 703 B
/** * Type of Trade Capture Report. * - Tag: 569 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const TradeRequestType: Readonly<{ /** All Trades */ readonly AllTrades: 0; /** Matched trades matching criteria provided on request (Parties, ExecID, TradeID, OrderID, Instrument, InputSource, etc.) */ readonly MatchedTradesMatchingCriteria: 1; /** Unmatched trades that match criteria */ readonly UnmatchedTradesThatMatchCriteria: 2; /** Unreported trades that match criteria */ readonly UnreportedTradesThatMatchCriteria: 3; /** Advisories that match criteria */ readonly AdvisoriesThatMatchCriteria: 4; }>;