fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 491 B
TypeScript
/**
* Defines the lot type assigned to the order.
* - Tag: 1093
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const LotType: Readonly<{
/** Odd Lot */
readonly OddLot: "1";
/** Round Lot */
readonly RoundLot: "2";
/** Block Lot */
readonly BlockLot: "3";
/** Round lot based upon UnitOfMeasure(996) */
readonly RoundLotBasedUpon: "4";
}>;
export type LotType = (typeof LotType)[keyof typeof LotType];