fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
19 lines (18 loc) • 456 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';
}>;