#technical-analysis #indicator #ema #trading #finance

ta

Technical analysis library. Implements number of indicators: EMA, SMA, RSI, MACD, Stochastic, etc.

13 unstable releases (5 breaking)

0.5.0 Jun 26, 2021
0.4.0 Nov 3, 2020
0.3.1 Oct 20, 2020
0.1.5 Dec 16, 2019
0.0.1-beta Nov 27, 2017

#44 in Science

Download history 747/week @ 2023-12-13 336/week @ 2023-12-20 555/week @ 2023-12-27 468/week @ 2024-01-03 576/week @ 2024-01-10 468/week @ 2024-01-17 323/week @ 2024-01-24 371/week @ 2024-01-31 391/week @ 2024-02-07 412/week @ 2024-02-14 463/week @ 2024-02-21 391/week @ 2024-02-28 481/week @ 2024-03-06 656/week @ 2024-03-13 772/week @ 2024-03-20 413/week @ 2024-03-27

2,378 downloads per month
Used in 7 crates (6 directly)

MIT license

125KB
3K SLoC

Technical Analysis for Rust (ta)

Build Status Crates.io Docs.rs License

Technical analysis library for Rust.

Getting started

Add to you Cargo.toml:

[dependencies]
ta = "0.4.0"

Example:

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();

assert_eq!(ema.next(2.0), 2.0);
assert_eq!(ema.next(5.0), 3.5);
assert_eq!(ema.next(1.0), 2.25);
assert_eq!(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:

  • Open
  • High
  • Low
  • Close
  • Volume

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:

  • Next<T> (often Next<f64> and Next<&DataItem>) - to feed and get the next value
  • Reset - to reset an indicator
  • Debug
  • Display
  • Default
  • Clone

List of indicators

So far there are the following indicators available.

  • Trend
    • Exponential Moving Average (EMA)
    • Simple Moving Average (SMA)
  • Oscillators
    • Relative Strength Index (RSI)
    • Fast Stochastic
    • Slow Stochastic
    • Moving Average Convergence Divergence (MACD)
    • Percentage Price Oscillator (PPO)
    • Commodity Channel Index (CCI)
    • Money Flow Index (MFI)
  • Other
    • Minimum
    • Maximum
    • True Range
    • Standard Deviation (SD)
    • Mean Absolute Deviation (MAD)
    • Average True Range (AR)
    • Efficiency Ratio (ER)
    • Bollinger Bands (BB)
    • Chandelier Exit (CE)
    • Keltner Channel (KC)
    • Rate of Change (ROC)
    • On Balance Volume (OBV)

Features

  • serde - allows to serialize and deserialize indicators. NOTE: the backward compatibility of serialized data with the future versions of ta is not guaranteed because internal implementation of the indicators is a subject to change.

Running benchmarks

cargo bench

License

MIT © Sergey Potapov

Contributors

Dependencies

~180KB