@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.
23 lines • 1.46 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PosTransType = void 0;
var PosTransType;
(function (PosTransType) {
PosTransType[PosTransType["Exercise"] = 1] = "Exercise";
PosTransType[PosTransType["DoNotExercise"] = 2] = "DoNotExercise";
PosTransType[PosTransType["PositionAdjustment"] = 3] = "PositionAdjustment";
PosTransType[PosTransType["PositionChangeSubmission"] = 4] = "PositionChangeSubmission";
PosTransType[PosTransType["Pledge"] = 5] = "Pledge";
PosTransType[PosTransType["LargeTraderSubmission"] = 6] = "LargeTraderSubmission";
PosTransType[PosTransType["LargePositionsReportingSubmission"] = 7] = "LargePositionsReportingSubmission";
PosTransType[PosTransType["LongHoldings"] = 8] = "LongHoldings";
PosTransType[PosTransType["InternalTransfer"] = 9] = "InternalTransfer";
PosTransType[PosTransType["TransferOfFirm"] = 10] = "TransferOfFirm";
PosTransType[PosTransType["ExternalTransfer"] = 11] = "ExternalTransfer";
PosTransType[PosTransType["CorporateAction"] = 12] = "CorporateAction";
PosTransType[PosTransType["Notification"] = 13] = "Notification";
PosTransType[PosTransType["PositionCreation"] = 14] = "PositionCreation";
PosTransType[PosTransType["Closeout"] = 15] = "Closeout";
PosTransType[PosTransType["Reopen"] = 16] = "Reopen";
})(PosTransType || (exports.PosTransType = PosTransType = {}));
//# sourceMappingURL=PosTransType.js.map