@stoqey/ib
Version:
Interactive Brokers TWS/IB Gateway API client library for Node.js (TS)
15 lines • 447 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.OrderAction = void 0;
/**
* Order action.
*/
var OrderAction;
(function (OrderAction) {
OrderAction["BUY"] = "BUY";
OrderAction["SELL"] = "SELL";
OrderAction["SSHORT"] = "SSHORT";
OrderAction["SLONG"] = "SLONG";
})(OrderAction || (exports.OrderAction = OrderAction = {}));
exports.default = OrderAction;
//# sourceMappingURL=order-action.js.map