UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

20 lines (19 loc) 493 B
/** * Specifies the method under which a trade quantity was allocated. * - Tag: 1002 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const AllocMethod: Readonly<{ /** Automatic */ readonly Automatic: 1; /** Guarantor */ readonly Guarantor: 2; /** Manual */ readonly Manual: 3; /** Broker assigned */ readonly BrokerAssigned: 4; }>; export type AllocMethod = (typeof AllocMethod)[keyof typeof AllocMethod];