UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

22 lines (21 loc) 792 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; }>; export type TradeRequestType = (typeof TradeRequestType)[keyof typeof TradeRequestType];