@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.
31 lines • 2.19 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.QuotePriceType = void 0;
var QuotePriceType;
(function (QuotePriceType) {
QuotePriceType[QuotePriceType["Percent"] = 1] = "Percent";
QuotePriceType[QuotePriceType["PerShare"] = 2] = "PerShare";
QuotePriceType[QuotePriceType["FixedAmount"] = 3] = "FixedAmount";
QuotePriceType[QuotePriceType["Discount"] = 4] = "Discount";
QuotePriceType[QuotePriceType["Premium"] = 5] = "Premium";
QuotePriceType[QuotePriceType["Spread"] = 6] = "Spread";
QuotePriceType[QuotePriceType["TEDPrice"] = 7] = "TEDPrice";
QuotePriceType[QuotePriceType["TEDYield"] = 8] = "TEDYield";
QuotePriceType[QuotePriceType["YieldSpread"] = 9] = "YieldSpread";
QuotePriceType[QuotePriceType["Yield"] = 10] = "Yield";
QuotePriceType[QuotePriceType["PriceSpread"] = 12] = "PriceSpread";
QuotePriceType[QuotePriceType["ProductTicksInHalves"] = 13] = "ProductTicksInHalves";
QuotePriceType[QuotePriceType["ProductTicksInFourths"] = 14] = "ProductTicksInFourths";
QuotePriceType[QuotePriceType["ProductTicksInEighths"] = 15] = "ProductTicksInEighths";
QuotePriceType[QuotePriceType["ProductTicksInSixteenths"] = 16] = "ProductTicksInSixteenths";
QuotePriceType[QuotePriceType["ProductTicksInThirtySeconds"] = 17] = "ProductTicksInThirtySeconds";
QuotePriceType[QuotePriceType["ProductTicksInSixtyFourths"] = 18] = "ProductTicksInSixtyFourths";
QuotePriceType[QuotePriceType["ProductTicksInOneTwentyEighths"] = 19] = "ProductTicksInOneTwentyEighths";
QuotePriceType[QuotePriceType["NormalRateRepresentation"] = 20] = "NormalRateRepresentation";
QuotePriceType[QuotePriceType["InverseRateRepresentation"] = 21] = "InverseRateRepresentation";
QuotePriceType[QuotePriceType["BasisPoints"] = 22] = "BasisPoints";
QuotePriceType[QuotePriceType["UpFrontPoints"] = 23] = "UpFrontPoints";
QuotePriceType[QuotePriceType["InterestRate"] = 24] = "InterestRate";
QuotePriceType[QuotePriceType["PercentageOfNotional"] = 25] = "PercentageOfNotional";
})(QuotePriceType || (exports.QuotePriceType = QuotePriceType = {}));
//# sourceMappingURL=QuotePriceType.js.map