fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
27 lines (26 loc) • 711 B
TypeScript
/**
* 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';
}>;