@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.
15 lines • 668 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ExecPriceType = void 0;
var ExecPriceType;
(function (ExecPriceType) {
ExecPriceType["BidPrice"] = "B";
ExecPriceType["CreationPrice"] = "C";
ExecPriceType["CreationPricePlusAdjustmentPercent"] = "D";
ExecPriceType["CreationPricePlusAdjustmentAmount"] = "E";
ExecPriceType["OfferPrice"] = "O";
ExecPriceType["OfferPriceMinusAdjustmentPercent"] = "P";
ExecPriceType["OfferPriceMinusAdjustmentAmount"] = "Q";
ExecPriceType["SinglePrice"] = "S";
})(ExecPriceType || (exports.ExecPriceType = ExecPriceType = {}));
//# sourceMappingURL=ExecPriceType.js.map