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