UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

26 lines (25 loc) 587 B
/** * State of the trading session. * - Tag: 340 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const TradSesStatus: Readonly<{ /** Unknown */ readonly Unknown: 0; /** Halted */ readonly Halted: 1; /** Open */ readonly Open: 2; /** Closed */ readonly Closed: 3; /** Pre-Open */ readonly PreOpen: 4; /** Pre-Close */ readonly PreClose: 5; /** Request Rejected */ readonly RequestRejected: 6; }>; export type TradSesStatus = (typeof TradSesStatus)[keyof typeof TradSesStatus];