UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

32 lines (31 loc) 857 B
/** * Identifies the type of venue where a trade was executed. * - Tag: 1430 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const VenueType: Readonly<{ /** Electronic exchange */ readonly Electronic: 'E'; /** Pit */ readonly Pit: 'P'; /** Ex-pit */ readonly ExPit: 'X'; /** Clearinghouse */ readonly ClearingHouse: 'C'; readonly RegisteredMarket: 'R'; readonly OffMarket: 'O'; /** Central limit order book */ readonly CentralLimitOrderBook: 'B'; /** Quote driven market */ readonly QuoteDrivenMarket: 'Q'; /** Dark order book */ readonly DarkOrderBook: 'D'; readonly AuctionDrivenMarket: 'A'; readonly QuoteNegotiation: 'N'; readonly VoiceNegotiation: 'V'; readonly HybridMarket: 'H'; readonly OtherMarket: 'z'; }>;