volas-compute 1.1.0

Numeric kernels and technical indicators for volas (pure functions over slices)
Documentation
1
2
3
4
5
6
7
8
9
10
//! volas-compute: numeric `kernels` (rolling windows, EWMA, diff) and the
//! technical `indicators`, as pure functions over `f64` / `bool` slices.
//!
//! Depends on `volas-core` only for the shared error type; it does not touch the
//! DataFrame data model.

mod buf;
pub mod indicators;
pub mod kernels;
pub mod window;