UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

26 lines (25 loc) 698 B
/** * Reason for submission of mass action. * - Tag: 2675 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const MassActionReason: Readonly<{ /** No special reason (default) */ readonly None: 0; readonly TradingRiskControl: 1; readonly ClearingRiskControl: 2; readonly MarketMakerProtection: 3; readonly StopTrading: 4; readonly EmergencyAction: 5; readonly SessionLossLogout: 6; readonly DuplicateLogin: 7; readonly ProductNotTraded: 8; readonly InstrumentNotTraded: 9; readonly CompleInstrumentDeleted: 10; readonly CircuitBreakerActivated: 11; /** Other */ readonly Other: 99; }>;