indicator_math 0.6.1

A technical analysis indicator library for Rust: SMA, EMA, WMA, HMA, EHMA, MACD and more.
Documentation

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]); "# insicator_math"

indicator_math