fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 528 B
TypeScript
/**
* Reason for trade aggregation request being rejected.
* - Tag: 2791
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const TradeAggregationRejectReason: Readonly<{
/** Unknown order(s) */
readonly UnknownOrders: 0;
/** Unknown execution/fill(s) */
readonly UnknownExecutionFills: 1;
/** Other */
readonly Other: 99;
}>;
export type TradeAggregationRejectReason = (typeof TradeAggregationRejectReason)[keyof typeof TradeAggregationRejectReason];