fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 426 B
TypeScript
/**
* Indicates how control of trading session and subsession transitions are performed.
* - Tag: 1785
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const TradSesControl: Readonly<{
/** Automatic (Default) */
readonly Automatic: 0;
/** Manual */
readonly Manual: 1;
}>;
export type TradSesControl = (typeof TradSesControl)[keyof typeof TradSesControl];