UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

17 lines (16 loc) 763 B
/** * Used to indicate that a ClOrdID(11) value is an intentional duplicate of a previously sent value. Allows to avoid the rejection of an order with OrdRejReason(103) = 6 (Duplicate Order). In the context of US CAT this can be used when the recipient of a previously routed order requires the same identifier to be re-used for a new route. * - Tag: 2829 * - FIX Specification type: Boolean * - Mapped type: string * @readonly * @public */ export declare const DuplicateClOrdIDIndicator: Readonly<{ /** Unique ClOrdID(11) */ readonly UniqueClOrdID: "N"; /** Duplicate ClOrdID(11) */ readonly DuplicateClOrdID: "Y"; }>; export type DuplicateClOrdIDIndicator = (typeof DuplicateClOrdIDIndicator)[keyof typeof DuplicateClOrdIDIndicator];