@rjbernaldo/technical-indicators
v1.0.10
Published
Technical indicators used by coinfu.io
Downloads
15
Readme
technical-indicators
A set of technical indicators used at coinfu.io which heavily relies on bignumber.js.
Installation
npm i -S @rjbernaldo/technical-indicators
import { sma } from '@rjbernaldo/technical-indicators';
const result = sma([1,2,3], 3);
// 2
Indicators
- SMA - Simple Moving Average
- EMA - Exponential Moving Average
- [WIP] SATR - Simple Average True Range (no weighting)
WIP - Work in progress