UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

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