fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 530 B
TypeScript
/**
* Identifies a specific settlement session
* - Tag: 716
* - FIX Specification type: String
* - Mapped type: string
* @readonly
* @public
*/
export declare const SettlSessID: Readonly<{
/** Intraday */
readonly Intraday: "ITD";
/** Regular Trading Hours */
readonly RegularTradingHours: "RTH";
/** Electronic Trading Hours */
readonly ElectronicTradingHours: "ETH";
/** End Of Day */
readonly EndOfDay: "EOD";
}>;
export type SettlSessID = (typeof SettlSessID)[keyof typeof SettlSessID];