UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

20 lines (19 loc) 608 B
/** * The business day convention used for adjusting dates. The value defined here applies to all adjustable dates in the instrument unless specifically overridden. * - Tag: 40921 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const BusinessDayConvention: Readonly<{ readonly NotApplicable: 0; /** None (current day) */ readonly None: 1; readonly FollowingDay: 2; readonly FloatingRateNote: 3; readonly ModifiedFollowingDay: 4; readonly PrecedingDay: 5; readonly ModifiedPrecedingDay: 6; readonly NearestDay: 7; }>;