UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 425 B
/** * Status for a statistic to indicate its availability. * - Tag: 2477 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const MDStatisticStatus: Readonly<{ /** Active (default) */ readonly Active: 1; /** Inactive (not disseminated) */ readonly Inactive: 2; }>; export type MDStatisticStatus = (typeof MDStatisticStatus)[keyof typeof MDStatisticStatus];