fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 399 B
TypeScript
/**
* Specifies how the calculation will be made.
* - Tag: 2592
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const CalculationMethod: Readonly<{
/** Automatic (default) */
readonly Automatic: 0;
/** Manual */
readonly Manual: 1;
}>;
export type CalculationMethod = (typeof CalculationMethod)[keyof typeof CalculationMethod];