fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
21 lines (20 loc) • 774 B
TypeScript
/**
* The status of this trade with respect to matching or comparison.
* - Tag: 573
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const MatchStatus: Readonly<{
/** Compared, matched or affirmed */
readonly Compared: "0";
/** Uncompared, unmatched, or unaffirmed */
readonly Uncompared: "1";
/** Advisory or alert */
readonly AdvisoryOrAlert: "2";
/** Mismatched
Indicates that data points from the AllocationInstruction(35=J) and Confirmation(35=AK) are matched but there are variances. MatchExceptionGrp component may be used to detail on the mis-matched data fields. */
readonly Mismatched: "3";
}>;
export type MatchStatus = (typeof MatchStatus)[keyof typeof MatchStatus];