ferro_ta_core
ferro_ta_core is the pure Rust indicator engine behind ferro-ta.
It provides allocation-friendly indicator functions over &[f64] slices without any
PyO3, NumPy, or Python runtime dependency, which makes it a good fit for:
- Rust-native technical analysis workloads
- custom services and backtesting engines
- future non-Python bindings such as WASM and other FFI layers
Installation
[]
= "1.0.6"
Design
- Pure functions over Rust slices
- No Python or NumPy dependency
- Shared core for the Python package and WASM bindings
- Output shape matches TA-Lib-style full-length series with
NaNwarm-up values where applicable
Modules
overlap- moving averages, MACD, Bollinger Bandsmomentum- RSI, MOMvolatility- ATR, TRANGEvolume- OBVstatistic- STDDEVmath- rolling SUM/MAX/MIN helpers
Example
use overlap;
Relationship To ferro-ta
The published Python package:
- crate:
ferro_ta - PyPI package:
ferro-ta
wraps this crate with PyO3 bindings and adds:
- NumPy conversion
- pandas/polars wrappers
- streaming classes
- batch helpers
- higher-level Python tooling
If you only need Rust indicator functions, use ferro_ta_core directly.
Development
From the repository root:
License
MIT