UNPKG

jesse-indicators

Version:

A Technical indicator library for TypeScript.

15 lines (14 loc) 403 B
import SMA from './SMA'; import EMA, { quickEMA } from './EMA'; import RSI, { quickRSI } from './RSI'; import { stoch, smoothedStoch } from './StochRSI'; declare const Indicators: { SMA: typeof SMA; EMA: typeof EMA; quickEMA: typeof quickEMA; RSI: typeof RSI; quickRSI: typeof quickRSI; stoch: typeof stoch; smoothedStoch: typeof smoothedStoch; }; export default Indicators;