fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
21 lines (20 loc) • 836 B
TypeScript
/**
* Indicates the type of the currency rate being used. This is relevant for currencies that have offshore rate that different from onshore rate.
* - Tag: 2795
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const OffshoreIndicator: Readonly<{
/** Regular - Default if not specified.
The notion of onshore and offshore rates does not apply. */
readonly Regular: 0;
/** Offshore
Used to indicate that the rate specified is an offshore rate which differs from its onshore rate. */
readonly Offshore: 1;
/** Onshore
Used to indicate that the rate specified is an onshore rate which differs from its offshore rate. */
readonly Onshore: 2;
}>;
export type OffshoreIndicator = (typeof OffshoreIndicator)[keyof typeof OffshoreIndicator];