@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 • 1.04 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TradeQtyType = void 0;
var TradeQtyType;
(function (TradeQtyType) {
TradeQtyType[TradeQtyType["ClearedQuantity"] = 0] = "ClearedQuantity";
TradeQtyType[TradeQtyType["LongSideClaimedQuantity"] = 1] = "LongSideClaimedQuantity";
TradeQtyType[TradeQtyType["ShortSideClaimedQuantity"] = 2] = "ShortSideClaimedQuantity";
TradeQtyType[TradeQtyType["LongSideRejectedQuantity"] = 3] = "LongSideRejectedQuantity";
TradeQtyType[TradeQtyType["ShortSideRejectedQuantity"] = 4] = "ShortSideRejectedQuantity";
TradeQtyType[TradeQtyType["PendingQuantity"] = 5] = "PendingQuantity";
TradeQtyType[TradeQtyType["TransactionQuantity"] = 6] = "TransactionQuantity";
TradeQtyType[TradeQtyType["RemainingQuantity"] = 7] = "RemainingQuantity";
TradeQtyType[TradeQtyType["PreviousRemainingQuantity"] = 8] = "PreviousRemainingQuantity";
})(TradeQtyType || (exports.TradeQtyType = TradeQtyType = {}));
//# sourceMappingURL=TradeQtyType.js.map