Technical Analysis for Rust (ta)

Build Status License Documentation

Technical analysis library for Rust.

Getting started

Add to you Cargo.toml: [dependencies] ta = "0.4.0"

Example:

```rust use ta::indicators::ExponentialMovingAverage; use ta::Next;

// it can return an error, when an invalid length is passed (e.g. 0) let mut ema = ExponentialMovingAverage::new(3).unwrap();

asserteq!(ema.next(2.0), 2.0); asserteq!(ema.next(5.0), 3.5); asserteq!(ema.next(1.0), 2.25); asserteq!(ema.next(6.25), 4.25); ```

See more in the examples here. Check also the documentation.

Basic ideas

A data item which represent a stock quote may implement the following traits:

It's not necessary to implement all of them, but it must be enough to fulfill requirements for a particular indicator. You probably should prefer using DataItem unless you have reasons to implement your own structure.

Indicators typically implement the following traits:

List of indicators

So far there are the following indicators available.

Features

Running benchmarks

cargo bench

License

MIT © Sergey Potapov

Contributors