UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

27 lines (26 loc) 895 B
/** * Status of the trade give-up relative to the group identified in AllocGroupID(1730). * - Tag: 2767 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const AllocGroupStatus: Readonly<{ /** Added This trade has been associated with the group for the first time. */ readonly Added: 0; /** Canceled This trade has been removed from the group. */ readonly Canceled: 1; /** Replaced This trade already in the group has been updated. */ readonly Replaced: 2; /** Changed An allocated trade or give-up has moved from one allocation group to another. */ readonly Changed: 3; /** Pending A request to assign or change an allocation group is pending. */ readonly Pending: 4; }>; export type AllocGroupStatus = (typeof AllocGroupStatus)[keyof typeof AllocGroupStatus];