fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
35 lines (34 loc) • 996 B
TypeScript
/**
* Unit of time associated with the contract.
NOTE: Additional values may be used by mutual agreement of the counterparties.
* - Tag: 997
* - FIX Specification type: String
* - Mapped type: string
* @readonly
* @public
*/
export declare const TimeUnit: Readonly<{
/** Hour */
readonly Hour: "H";
/** Minute */
readonly Minute: "Min";
/** Second */
readonly Second: "S";
/** Day */
readonly Day: "D";
/** Week */
readonly Week: "Wk";
/** Month */
readonly Month: "Mo";
/** Year */
readonly Year: "Yr";
/** Quarter */
readonly Quarter: "Q";
/** End of Month
End of Month identifies a relative time unit, e.g. until the third Friday of each month. */
readonly EndOfMonth: "EOM";
/** Flexible
A flexible time unit indicates that a specific time unit for the contract is currently undetermined. */
readonly Flexible: "F";
}>;
export type TimeUnit = (typeof TimeUnit)[keyof typeof TimeUnit];