fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
22 lines (21 loc) • 639 B
TypeScript
/**
* Scope details of the statistics to reduce the number of events being used as basis for the statistics.
* - Tag: 2459
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const MDStatisticScopeType: Readonly<{
/** Entry rate */
readonly EntryRate: 1;
/** Modification rate */
readonly ModificationRate: 2;
/** Cancel rate */
readonly CancelRate: 3;
/** Downward move */
readonly DownwardMove: 4;
/** Upward move */
readonly UpwardMove: 5;
}>;
export type MDStatisticScopeType = (typeof MDStatisticScopeType)[keyof typeof MDStatisticScopeType];