UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

19 lines (18 loc) 652 B
/** * Indicates the acceptance status of a market data entry. * - Tag: 3106 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const MDEntryStatus: Readonly<{ /** Accepted */ readonly Accepted: 0; /** Accepted with errors In the context of the EU Consolidated Tape, this is used to identify suspicious data that may be flagged as such with MDQualityIndicator(3105) when forwarded from the CTP to the data user. */ readonly AcceptedWithErrors: 1; /** Rejected */ readonly Rejected: 2; }>; export type MDEntryStatus = (typeof MDEntryStatus)[keyof typeof MDEntryStatus];