fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 677 B
TypeScript
/**
* Identifies an event related to a TradSesStatus(340). An event occurs and is gone, it is not a state that applies for a period of time.
* - Tag: 1368
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const TradSesEvent: Readonly<{
/** Trading resumes (after Halt) */
readonly TradingResumes: 0;
/** Change of Trading Session */
readonly ChangeOfTradingSession: 1;
/** Change of Trading Subsession */
readonly ChangeOfTradingSubsession: 2;
/** Change of Trading Status */
readonly ChangeOfTradingStatus: 3;
}>;
export type TradSesEvent = (typeof TradSesEvent)[keyof typeof TradSesEvent];