@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.
24 lines • 687 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Side = void 0;
var Side;
(function (Side) {
Side["Buy"] = "1";
Side["Sell"] = "2";
Side["BuyMinus"] = "3";
Side["SellPlus"] = "4";
Side["SellShort"] = "5";
Side["SellShortExempt"] = "6";
Side["Undisclosed"] = "7";
Side["Cross"] = "8";
Side["CrossShort"] = "9";
Side["CrossShortExempt"] = "A";
Side["AsDefined"] = "B";
Side["Opposite"] = "C";
Side["Subscribe"] = "D";
Side["Redeem"] = "E";
Side["Lend"] = "F";
Side["Borrow"] = "G";
Side["SellUndisclosed"] = "H";
})(Side || (exports.Side = Side = {}));
//# sourceMappingURL=Side.js.map