fast-ta 0.2.1

High-performance technical analysis indicators with batch, prepared, and streaming APIs
1
2
3
4
5
6
7
8
9
10
11
12
//! Volume Indicators.
//!
//! These functions derive cumulative price-volume measures from market data.
//! Batch APIs use separate TA-Lib-style input slices and compact output buffers.

mod ad;
mod adosc;
mod obv;

pub use ad::{ADBatchRunner, ADConfig, ADInput, ADStream, ADTick, AD};
pub use adosc::{ADOSCBatchRunner, ADOSCConfig, ADOSCInput, ADOSCStream, ADOSCTick, ADOSC};
pub use obv::{OBVBatchRunner, OBVConfig, OBVInput, OBVStream, OBVTick, OBV};