UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

17 lines (16 loc) 575 B
/** * Indicates the quality of the market data being provided. In the context of the EU Consolidated Tape, this is used by the CTP to identify suspicious data coming from the data contributor. * - Tag: 3105 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const MDQualityIndicator: Readonly<{ /** No data quality issue */ readonly NoQualityIssue: 0; /** Data quality issue */ readonly QualityIssue: 1; }>; export type MDQualityIndicator = (typeof MDQualityIndicator)[keyof typeof MDQualityIndicator];