fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
25 lines (24 loc) • 887 B
TypeScript
/**
* Identifies the source of rate information.
For FX, the reference source to be used for the FX spot rate.
This is where to look up the rate information and is not necessarily the entity that sets the rate.
* - Tag: 1446
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const RateSource: Readonly<{
/** Bloomberg */
readonly Bloomberg: 0;
/** Reuters */
readonly Reuters: 1;
/** Telerate */
readonly Telerate: 2;
/** ISDA Settlement Rate Option
The source of the currency conversion as specified by the ISDA terms in Annex A to the 1998 FX and Currency Option Definitions. See http://www.fpml.org/coding-scheme/settlement-rate-option */
readonly ISDARateOption: 3;
/** Other */
readonly Other: 99;
}>;
export type RateSource = (typeof RateSource)[keyof typeof RateSource];