fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 478 B
TypeScript
/**
* Quantity (e.g. number of shares) in numeric form or relative size.
* - Tag: 27
* - FIX Specification type: String
* - Mapped type: string
* @readonly
* @public
*/
export declare const IOIQty: Readonly<{
/** Small */
readonly Small: "S";
/** Medium */
readonly Medium: "M";
/** Large */
readonly Large: "L";
/** Undisclosed Quantity */
readonly UndisclosedQuantity: "U";
}>;
export type IOIQty = (typeof IOIQty)[keyof typeof IOIQty];