fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 440 B
TypeScript
/**
* Identifies whether the value of a measure needs to be over or under a specific threshold to be successful.
* - Tag: 3058
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const TestThresholdType: Readonly<{
/** Under */
readonly Under: 0;
/** Over */
readonly Over: 1;
}>;
export type TestThresholdType = (typeof TestThresholdType)[keyof typeof TestThresholdType];