fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 638 B
TypeScript
/**
* Type of quantity specified in quantity field. ContractMultiplier (tag 231) is required when QtyType = 1 (Contracts). UnitOfMeasure (tag 996) and TimeUnit (tag 997) are required when QtyType = 2 (Units of Measure per Time Unit).
* - Tag: 854
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const QtyType: Readonly<{
/** Units (shares, par, currency) */
readonly Units: 0;
/** Contracts */
readonly Contracts: 1;
/** Unit of Measure per Time Unit */
readonly UnitsOfMeasurePerTimeUnit: 2;
}>;
export type QtyType = (typeof QtyType)[keyof typeof QtyType];