UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

19 lines (18 loc) 663 B
/** * Describes the reporting ranges for executed transactions. In context of ESMA RTS 27 Article 9, the execution venue is required to report on transactions within several size ranges (in terms of a value and currency). The thresholds for these ranges are dependent on the type of financial instrument. * - Tag: 2711 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const MDValueTier: Readonly<{ /** Range 1 */ readonly Range1: 1; /** Range 2 */ readonly Range2: 2; /** Range 3 */ readonly Range3: 3; }>; export type MDValueTier = (typeof MDValueTier)[keyof typeof MDValueTier];