UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

30 lines (29 loc) 1.1 kB
/** * Identifies an event related to a SecurityTradingStatus(326). An event occurs and is gone, it is not a state that applies for a period of time. * - Tag: 1174 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const SecurityTradingEvent: Readonly<{ /** Order imbalance, auction is extended */ readonly OrderImbalance: 1; /** Trading resumes (after Halt) */ readonly TradingResumes: 2; /** Price Volatility Interruption */ readonly PriceVolatilityInterruption: 3; /** Change of Trading Session */ readonly ChangeOfTradingSession: 4; /** Change of Trading Subsession */ readonly ChangeOfTradingSubsession: 5; /** Change of Security Trading Status */ readonly ChangeOfSecurityTradingStatus: 6; /** Change of Book Type */ readonly ChangeOfBookType: 7; /** Change of Market Depth */ readonly ChangeOfMarketDepth: 8; /** Corporate action */ readonly CorporateAction: 9; }>; export type SecurityTradingEvent = (typeof SecurityTradingEvent)[keyof typeof SecurityTradingEvent];