UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

18 lines (17 loc) 501 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; }>; export type MDBookType = (typeof MDBookType)[keyof typeof MDBookType];