UNPKG

jesse-indicators

Version:

A Technical indicator library for TypeScript.

27 lines 973 B
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; result["default"] = mod; return result; }; Object.defineProperty(exports, "__esModule", { value: true }); const SMA_1 = __importDefault(require("./SMA")); const EMA_1 = __importStar(require("./EMA")); const RSI_1 = __importStar(require("./RSI")); const StochRSI_1 = require("./StochRSI"); const Indicators = { SMA: SMA_1.default, EMA: EMA_1.default, quickEMA: EMA_1.quickEMA, RSI: RSI_1.default, quickRSI: RSI_1.quickRSI, stoch: StochRSI_1.stoch, smoothedStoch: StochRSI_1.smoothedStoch }; exports.default = Indicators; //# sourceMappingURL=index.js.map