UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

17 lines (16 loc) 452 B
/** * This trade is to be treated as an odd lot If this field is not specified, the default will be "N" * - Tag: 575 * - FIX Specification type: Boolean * - Mapped type: string * @readonly * @public */ export declare const OddLot: Readonly<{ /** Treat as round lot (default) */ readonly TreatAsRoundLot: "N"; /** Treat as odd lot */ readonly TreatAsOddLot: "Y"; }>; export type OddLot = (typeof OddLot)[keyof typeof OddLot];