UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

29 lines (28 loc) 1.05 kB
/** * Identifier for a trading session. A trading session spans an extended period of time that can also be expressed informally in terms of the trading day. Usage is determined by market or counterparties. To specify good for session where session spans more than one calendar day, use TimeInForce = 0 (Day) in conjunction with TradingSessionID(336). Bilaterally agreed values of data type "String" that start with a character can be used for backward compatibility. * - Tag: 336 * - FIX Specification type: String * - Mapped type: string * @readonly * @public */ export declare const TradingSessionID: Readonly<{ /** Day */ readonly Day: "1"; /** HalfDay */ readonly HalfDay: "2"; /** Morning */ readonly Morning: "3"; /** Afternoon */ readonly Afternoon: "4"; /** Evening */ readonly Evening: "5"; /** After-hours */ readonly AfterHours: "6"; /** Holiday */ readonly Holiday: "7"; }>; export type TradingSessionID = (typeof TradingSessionID)[keyof typeof TradingSessionID];