UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

17 lines (16 loc) 430 B
/** * Describes the type of book for which the feed is intended. Used when multiple feeds are provided over the same connection * - Tag: 1021 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const MDBookType: Readonly<{ /** Top of Book */ readonly TopOfBook: 1; /** Price Depth */ readonly PriceDepth: 2; /** Order Depth */ readonly OrderDepth: 3; }>;