@sotatech/nest-quickfix
Version:
A powerful NestJS implementation of the FIX (Financial Information eXchange) protocol. Provides high-performance, reliable messaging for financial trading applications with built-in session management, message validation, and recovery mechanisms.
12 lines • 810 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TradeRequestType = void 0;
var TradeRequestType;
(function (TradeRequestType) {
TradeRequestType[TradeRequestType["AllTrades"] = 0] = "AllTrades";
TradeRequestType[TradeRequestType["MatchedTradesMatchingCriteria"] = 1] = "MatchedTradesMatchingCriteria";
TradeRequestType[TradeRequestType["UnmatchedTradesThatMatchCriteria"] = 2] = "UnmatchedTradesThatMatchCriteria";
TradeRequestType[TradeRequestType["UnreportedTradesThatMatchCriteria"] = 3] = "UnreportedTradesThatMatchCriteria";
TradeRequestType[TradeRequestType["AdvisoriesThatMatchCriteria"] = 4] = "AdvisoriesThatMatchCriteria";
})(TradeRequestType || (exports.TradeRequestType = TradeRequestType = {}));
//# sourceMappingURL=TradeRequestType.js.map