@4ex/indicators
Version:
Technical indicators for ohlc charts written in TypeScript
11 lines (10 loc) • 325 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.OHLCEnum = void 0;
var OHLCEnum;
(function (OHLCEnum) {
OHLCEnum["OPEN"] = "open";
OHLCEnum["HIGH"] = "high";
OHLCEnum["LOW"] = "low";
OHLCEnum["CLOSE"] = "close";
})(OHLCEnum = exports.OHLCEnum || (exports.OHLCEnum = {}));