UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

16 lines (15 loc) 540 B
/** * Instruction on how to add a trade to an allocation group when it is being given-up. * - Tag: 1848 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const TradeAllocGroupInstruction: Readonly<{ /** Add to an existing allocation group if one exists. */ readonly Add: 0; /** Do not add the trade to an allocation group. */ readonly DoNotAdd: 1; }>; export type TradeAllocGroupInstruction = (typeof TradeAllocGroupInstruction)[keyof typeof TradeAllocGroupInstruction];