@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.
12 lines • 817 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CustOrderCapacity = void 0;
var CustOrderCapacity;
(function (CustOrderCapacity) {
CustOrderCapacity[CustOrderCapacity["MemberTradingForTheirOwnAccount"] = 1] = "MemberTradingForTheirOwnAccount";
CustOrderCapacity[CustOrderCapacity["ClearingFirmTradingForItsProprietaryAccount"] = 2] = "ClearingFirmTradingForItsProprietaryAccount";
CustOrderCapacity[CustOrderCapacity["MemberTradingForAnotherMember"] = 3] = "MemberTradingForAnotherMember";
CustOrderCapacity[CustOrderCapacity["AllOther"] = 4] = "AllOther";
CustOrderCapacity[CustOrderCapacity["RetailCustomer"] = 5] = "RetailCustomer";
})(CustOrderCapacity || (exports.CustOrderCapacity = CustOrderCapacity = {}));
//# sourceMappingURL=CustOrderCapacity.js.map