fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 444 B
TypeScript
/**
* Method of trading
* - Tag: 338
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const TradSesMethod: Readonly<{
/** Electronic */
readonly Electronic: 1;
/** Open Outcry */
readonly OpenOutcry: 2;
/** Two Party */
readonly TwoParty: 3;
/** Voice */
readonly Voice: 4;
}>;
export type TradSesMethod = (typeof TradSesMethod)[keyof typeof TradSesMethod];