@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.
17 lines • 1.21 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TradeReportingIndicator = void 0;
var TradeReportingIndicator;
(function (TradeReportingIndicator) {
TradeReportingIndicator[TradeReportingIndicator["NotReported"] = 0] = "NotReported";
TradeReportingIndicator[TradeReportingIndicator["OnBook"] = 1] = "OnBook";
TradeReportingIndicator[TradeReportingIndicator["SISeller"] = 2] = "SISeller";
TradeReportingIndicator[TradeReportingIndicator["SIBuyer"] = 3] = "SIBuyer";
TradeReportingIndicator[TradeReportingIndicator["NonSISeller"] = 4] = "NonSISeller";
TradeReportingIndicator[TradeReportingIndicator["SubDelegationByFirm"] = 5] = "SubDelegationByFirm";
TradeReportingIndicator[TradeReportingIndicator["Reportable"] = 6] = "Reportable";
TradeReportingIndicator[TradeReportingIndicator["NonSIBuyer"] = 7] = "NonSIBuyer";
TradeReportingIndicator[TradeReportingIndicator["OffBook"] = 8] = "OffBook";
TradeReportingIndicator[TradeReportingIndicator["NotReportable"] = 9] = "NotReportable";
})(TradeReportingIndicator || (exports.TradeReportingIndicator = TradeReportingIndicator = {}));
//# sourceMappingURL=TradeReportingIndicator.js.map