@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.
16 lines • 875 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PegPriceType = void 0;
var PegPriceType;
(function (PegPriceType) {
PegPriceType[PegPriceType["LastPeg"] = 1] = "LastPeg";
PegPriceType[PegPriceType["MidPricePeg"] = 2] = "MidPricePeg";
PegPriceType[PegPriceType["OpeningPeg"] = 3] = "OpeningPeg";
PegPriceType[PegPriceType["MarketPeg"] = 4] = "MarketPeg";
PegPriceType[PegPriceType["PrimaryPeg"] = 5] = "PrimaryPeg";
PegPriceType[PegPriceType["PegToVWAP"] = 7] = "PegToVWAP";
PegPriceType[PegPriceType["TrailingStopPeg"] = 8] = "TrailingStopPeg";
PegPriceType[PegPriceType["PegToLimitPrice"] = 9] = "PegToLimitPrice";
PegPriceType[PegPriceType["ShortSaleMinPricePeg"] = 10] = "ShortSaleMinPricePeg";
})(PegPriceType || (exports.PegPriceType = PegPriceType = {}));
//# sourceMappingURL=PegPriceType.js.map