UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

15 lines (14 loc) 276 B
/** * Type of NBBO information. * - Tag: 2831 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const NBBOEntryType: Readonly<{ readonly Bid: 0; readonly Offer: 1; /** Mid-price */ readonly MidPrice: 2; }>;