UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

28 lines (27 loc) 776 B
/** * Reason for execution rejection. * - Tag: 127 * - FIX Specification type: char * - Mapped type: string * @readonly * @public */ export declare const DKReason: Readonly<{ /** Unknown security */ readonly UnknownSymbol: "A"; /** Wrong side */ readonly WrongSide: "B"; /** Quantity exceeds order */ readonly QuantityExceedsOrder: "C"; /** No matching order */ readonly NoMatchingOrder: "D"; /** Price exceeds limit */ readonly PriceExceedsLimit: "E"; /** Calculation difference */ readonly CalculationDifference: "F"; /** No matching ExecutionReport(35=8) */ readonly NoMatchingExecutionReport: "G"; /** Other */ readonly Other: "Z"; }>; export type DKReason = (typeof DKReason)[keyof typeof DKReason];