fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 499 B
TypeScript
/**
* Define the type of trade volume applicable for the MinTradeVol(562) and MaxTradeVol(1140)
* - Tag: 1786
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const TradeVolType: Readonly<{
/** Number of units (e.g. share, par, currency, contracts) (default) */
readonly NumberOfUnits: 0;
/** Number of round lots */
readonly NumberOfRoundLots: 1;
}>;
export type TradeVolType = (typeof TradeVolType)[keyof typeof TradeVolType];