indicator_math 0.6.0

A technical analysis indicator library for Rust: SMA, EMA, WMA, HMA, EHMA, MACD and more.
Documentation
1
2
3
4
5
6
7
8
9
# indicator_math


Rust technical analysis library: SMA, EMA, WMA, HMA, EHMA, MACD
let ema_s = ema(&candles, 5);
let ema_l = ema(&candles, 20);

let analysis = analyze_ema(&candles, &ema_s, &ema_l);

println!("{:#?}", analysis[50]);