UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 451 B
/** * Method by which short positions are assigned to an exercise notice during exercise and assignment processing * - Tag: 744 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const AssignmentMethod: Readonly<{ /** Pro rata */ readonly ProRata: "P"; /** Random */ readonly Random: "R"; }>; export type AssignmentMethod = (typeof AssignmentMethod)[keyof typeof AssignmentMethod];