UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

19 lines (18 loc) 402 B
/** * 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'; }>;