@stoqey/ibkr
Version:
NodeJS Interactive Brokers wrapper & utilities using @stoqey/ib
46 lines • 1.83 kB
JavaScript
;
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
if (typeof b !== "function" && b !== null)
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
exports.IBKREvents = exports.IBKREVENTS = void 0;
var events_1 = require("events");
var IBKREVENTS;
(function (IBKREVENTS) {
/**
* Historical Data Update
*/
IBKREVENTS["IBKR_BAR"] = "IBKR_BAR";
IBKREVENTS["IBKR_CONNECTED"] = "IBKR_CONNECTED";
IBKREVENTS["IBKR_SAVE_TRADE"] = "IBKR_SAVE_TRADE";
})(IBKREVENTS || (exports.IBKREVENTS = IBKREVENTS = {}));
var IBKREvents = /** @class */ (function (_super) {
__extends(IBKREvents, _super);
function IBKREvents() {
var _this = _super.call(this) || this;
_this.setMaxListeners(0); // set a maximum of 50 event listners
return _this;
}
Object.defineProperty(IBKREvents, "Instance", {
get: function () {
return this._instance || (this._instance = new this());
},
enumerable: false,
configurable: true
});
return IBKREvents;
}(events_1.EventEmitter.EventEmitter));
exports.IBKREvents = IBKREvents;
//# sourceMappingURL=IbkrEvents.js.map