UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 438 B
/** * Specifies whether the UnderlyingFxRate(1045) should be multiplied or divided. * - Tag: 1046 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const UnderlyingFXRateCalc: Readonly<{ /** Divide */ readonly Divide: "D"; /** Multiply */ readonly Multiply: "M"; }>; export type UnderlyingFXRateCalc = (typeof UnderlyingFXRateCalc)[keyof typeof UnderlyingFXRateCalc];