UNPKG

jesse-indicators

Version:

A Technical indicator library for TypeScript.

17 lines (14 loc) 285 B
import SMA from './SMA' import EMA, { quickEMA } from './EMA' import RSI, { quickRSI } from './RSI' import { stoch, smoothedStoch } from './StochRSI' const Indicators = { SMA, EMA, quickEMA, RSI, quickRSI, stoch, smoothedStoch } export default Indicators