fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 482 B
TypeScript
/**
* Direction of the "tick".
* - Tag: 274
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const TickDirection: Readonly<{
/** Plus Tick */
readonly PlusTick: "0";
/** Zero-Plus Tick */
readonly ZeroPlusTick: "1";
/** Minus Tick */
readonly MinusTick: "2";
/** Zero-Minus Tick */
readonly ZeroMinusTick: "3";
}>;
export type TickDirection = (typeof TickDirection)[keyof typeof TickDirection];