UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

26 lines (25 loc) 682 B
/** * Indicates whether an order is locked and for what reason. * - Tag: 1807 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const LockType: Readonly<{ /** Not locked */ readonly NotLocked: 0; /** Away market better */ readonly AwayMarketNetter: 1; /** Three tick locked */ readonly ThreeTickLocked: 2; /** Locked by market maker */ readonly LockedByMarketMaker: 3; /** Directed order lock */ readonly DirectedOrderLock: 4; readonly MultilegLock: 5; /** Market order lock */ readonly MarketOrderLock: 6; /** Pre-assignment lock */ readonly PreAssignmentLock: 7; }>;