fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 393 B
TypeScript
/**
* Trading Session Mode
* - Tag: 339
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const TradSesMode: Readonly<{
/** Testing */
readonly Testing: 1;
/** Simulated */
readonly Simulated: 2;
/** Production */
readonly Production: 3;
}>;
export type TradSesMode = (typeof TradSesMode)[keyof typeof TradSesMode];