@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 • 557 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.QuoteType = void 0;
var QuoteType;
(function (QuoteType) {
QuoteType[QuoteType["Indicative"] = 0] = "Indicative";
QuoteType[QuoteType["Tradeable"] = 1] = "Tradeable";
QuoteType[QuoteType["RestrictedTradeable"] = 2] = "RestrictedTradeable";
QuoteType[QuoteType["Counter"] = 3] = "Counter";
QuoteType[QuoteType["InitiallyTradeable"] = 4] = "InitiallyTradeable";
})(QuoteType || (exports.QuoteType = QuoteType = {}));
//# sourceMappingURL=QuoteType.js.map