tars 0.1.3

A Rust library providing useful technical indicators.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! TARS is a Rust library providing useful technical indicators such as Simple Moving
//! Average or Exponential Moving Average. This library is written in pure Rust and heavily
//! tested against the reference library in the field, TA-Lib.
//!
//! Implemented indicators :
//! - [x] Simple Moving Average
//! - [x] Exponential Moving Average
//! - [x] Parabolic SAR
//! - [x] RSI

pub mod overlap_studies;
pub mod momentum_indicators;
pub mod error;
pub mod helpers;