fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
31 lines (30 loc) • 1.06 kB
TypeScript
/**
* Reason Trade Capture Request was rejected.
100+ Reserved and available for bi-laterally agreed upon user-defined values.
* - Tag: 751
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const TradeReportRejectReason: Readonly<{
/** Successful (default) */
readonly Successful: 0;
/** Invalid party information */
readonly InvalidPartyInformation: 1;
/** Unknown instrument */
readonly UnknownInstrument: 2;
/** Unauthorized to report trades */
readonly UnauthorizedToReportTrades: 3;
/** Invalid trade type */
readonly InvalidTradeType: 4;
/** Price exceeds current price band */
readonly PriceExceedsCurrentPriceBand: 5;
/** Reference price not available */
readonly ReferencePriceNotAvailable: 6;
/** Notional value exceeds threshold */
readonly NotionalValueExceedsThreshold: 7;
/** Other */
readonly Other: 99;
}>;
export type TradeReportRejectReason = (typeof TradeReportRejectReason)[keyof typeof TradeReportRejectReason];