rsta 0.1.0

Technical analysis indicators, streaming signals, and a single-asset backtesting engine for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Volatility indicators
//!
//! This module contains volatility indicators like ATR, Bollinger Bands,
//! Keltner Channels, Donchian Channels, and Standard Deviation.

pub mod atr;
pub mod bb;
pub mod donchian;
pub mod keltner_channels;
pub mod std;

pub use self::atr::Atr;
pub use self::bb::{BollingerBands, BollingerBandsResult};
pub use self::donchian::{Donchian, DonchianResult};
pub use self::keltner_channels::{KeltnerChannels, KeltnerChannelsResult};
pub use self::std::Std;