tars 0.1.3

A Rust library providing useful technical indicators.
Documentation
1
2
3
4
5
6
7
8
//! This module contains the following indicators :
//! - SMA (Simple Moving Average)
//! - EMA (Exponential Moving Average)
//! - PSAR (Parabolic SAR)

pub mod sma;
pub mod ema;
pub mod psar;