@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.
19 lines • 642 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SettlType = void 0;
var SettlType;
(function (SettlType) {
SettlType["Regular"] = "0";
SettlType["Cash"] = "1";
SettlType["NextDay"] = "2";
SettlType["TPlus2"] = "3";
SettlType["TPlus3"] = "4";
SettlType["TPlus4"] = "5";
SettlType["Future"] = "6";
SettlType["WhenAndIfIssued"] = "7";
SettlType["SellersOption"] = "8";
SettlType["TPlus5"] = "9";
SettlType["BrokenDate"] = "B";
SettlType["FXSpotNextSettlement"] = "C";
})(SettlType || (exports.SettlType = SettlType = {}));
//# sourceMappingURL=SettlType.js.map