UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

22 lines (21 loc) 564 B
/** * Specifies the type of tick rule which is being described * - Tag: 1209 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const TickRuleType: Readonly<{ /** Regular trading */ readonly RegularTrading: 0; /** Variable cabinet */ readonly VariableCabinet: 1; /** Fixed cabinet */ readonly FixedCabinet: 2; /** Traded as a spread leg */ readonly TradedAsASpreadLeg: 3; /** Settled as a spread leg */ readonly SettledAsASpreadLeg: 4; readonly TradedAsSpread: 5; }>;