@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.
13 lines • 859 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TriggerScope = void 0;
var TriggerScope;
(function (TriggerScope) {
TriggerScope[TriggerScope["ThisOrder"] = 0] = "ThisOrder";
TriggerScope[TriggerScope["OtherOrder"] = 1] = "OtherOrder";
TriggerScope[TriggerScope["AllOtherOrdersForGivenSecurity"] = 2] = "AllOtherOrdersForGivenSecurity";
TriggerScope[TriggerScope["AllOtherOrdersForGivenSecurityAndPrice"] = 3] = "AllOtherOrdersForGivenSecurityAndPrice";
TriggerScope[TriggerScope["AllOtherOrdersForGivenSecurityAndSide"] = 4] = "AllOtherOrdersForGivenSecurityAndSide";
TriggerScope[TriggerScope["AllOtherOrdersForGivenSecurityPriceAndSide"] = 5] = "AllOtherOrdersForGivenSecurityPriceAndSide";
})(TriggerScope || (exports.TriggerScope = TriggerScope = {}));
//# sourceMappingURL=TriggerScope.js.map