fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 461 B
TypeScript
/**
* Indicates how the minimum quantity should be applied when executing the order.
* - Tag: 1822
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const MinQtyMethod: Readonly<{
/** Once (applies only to first execution) */
readonly Once: 1;
/** Multiple (applies to every execution) */
readonly Multiple: 2;
}>;
export type MinQtyMethod = (typeof MinQtyMethod)[keyof typeof MinQtyMethod];