UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

25 lines (24 loc) 592 B
/** * Used to describe the origin of the market data entry. * - Tag: 1024 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const MDOriginType: Readonly<{ /** Book */ readonly Book: 0; /** Off-Book */ readonly OffBook: 1; /** Cross */ readonly Cross: 2; readonly QuoteDrivenMarket: 3; /** Dark order book */ readonly DarkOrderBook: 4; readonly AuctionDrivenMarket: 5; readonly QuoteNegotiation: 6; readonly VoiceNegotiation: 7; readonly HybridMarket: 8; readonly OtherMarket: 9; }>;