UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

24 lines (23 loc) 1.6 kB
/** * Reference data entry's date-time type. * - Tag: 2748 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const ReferenceDataDateType: Readonly<{ /** Date of request for admission to trading In the context of MiFID II ESMA RTS 23 this is defined as "Date and time the issuer has approved admission to trading or trading in its financial instruments on a trading venue." (Reference: Annex I Table 3 Field 9) */ readonly AdmitToTradeRequestDate: 0; /** Date of approval of admission to trading In the context of MiFID II ESMA RTS 23 this is defined as "Date and time of the request for admission to trading on the trading venue." (Reference: Annex I Table 3 Field 10) */ readonly AdmitToTradeApprovalDate: 1; /** Date of admission to trading or date of first trade In the context of MiFID II ESMA RTS 23 this is defined as "Date and time of the admission to trading on the trading venue or the date and time when the instrument was first traded or an order or quote was first received by the trading venue." (Reference: Annex I Table 3 Field 11) */ readonly AdmitToTradeOrFirstTradeDate: 2; /** Termination date In the context of MiFID II ESMA RTS 23 this is defined as "Where available, the date and time when the financial instrument ceases to be traded or to be admitted to trading on the trading venue." (Reference: Annex I Table 3 Field 12) */ readonly TerminationDate: 3; }>; export type ReferenceDataDateType = (typeof ReferenceDataDateType)[keyof typeof ReferenceDataDateType];