UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

20 lines (19 loc) 468 B
/** * Type of NBBO information. * - Tag: 2831 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const NBBOEntryType: Readonly<{ /** Bid May apply to price or quantity. */ readonly Bid: 0; /** Offer May apply to price or quantity. */ readonly Offer: 1; /** Mid-price */ readonly MidPrice: 2; }>; export type NBBOEntryType = (typeof NBBOEntryType)[keyof typeof NBBOEntryType];