@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 • 817 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.StrikePriceBoundaryMethod = void 0;
var StrikePriceBoundaryMethod;
(function (StrikePriceBoundaryMethod) {
StrikePriceBoundaryMethod[StrikePriceBoundaryMethod["LessThan"] = 1] = "LessThan";
StrikePriceBoundaryMethod[StrikePriceBoundaryMethod["LessThanOrEqual"] = 2] = "LessThanOrEqual";
StrikePriceBoundaryMethod[StrikePriceBoundaryMethod["Equal"] = 3] = "Equal";
StrikePriceBoundaryMethod[StrikePriceBoundaryMethod["GreaterThanOrEqual"] = 4] = "GreaterThanOrEqual";
StrikePriceBoundaryMethod[StrikePriceBoundaryMethod["GreaterThan"] = 5] = "GreaterThan";
})(StrikePriceBoundaryMethod || (exports.StrikePriceBoundaryMethod = StrikePriceBoundaryMethod = {}));
//# sourceMappingURL=StrikePriceBoundaryMethod.js.map