fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 390 B
TypeScript
/**
* Type of statistical value.
* - Tag: 2479
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const MDStatisticValueType: Readonly<{
/** Absolute */
readonly Absolute: 1;
/** Percentage */
readonly Percentage: 2;
}>;
export type MDStatisticValueType = (typeof MDStatisticValueType)[keyof typeof MDStatisticValueType];