@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 • 678 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AdjustmentType = void 0;
var AdjustmentType;
(function (AdjustmentType) {
AdjustmentType[AdjustmentType["ProcessRequestAsMarginDisposition"] = 0] = "ProcessRequestAsMarginDisposition";
AdjustmentType[AdjustmentType["DeltaPlus"] = 1] = "DeltaPlus";
AdjustmentType[AdjustmentType["DeltaMinus"] = 2] = "DeltaMinus";
AdjustmentType[AdjustmentType["Final"] = 3] = "Final";
AdjustmentType[AdjustmentType["CustomerSpecificPosition"] = 4] = "CustomerSpecificPosition";
})(AdjustmentType || (exports.AdjustmentType = AdjustmentType = {}));
//# sourceMappingURL=AdjustmentType.js.map