# hyper-ta
Technical analysis indicators for trading -- RSI, MACD, Bollinger Bands, EMA, and multi-timeframe analysis.
## Install
```toml
[dependencies]
hyper-ta = "0.1.0"
```
## Features
- Pure-math indicator calculations (no I/O dependencies)
- RSI, MACD, Bollinger Bands, EMA, SMA
- Multi-timeframe analysis across different intervals
- Dynamic indicator configuration at runtime
- Built on `motosan-ta-math` and `motosan-ta-stream`
## Quick Start
```rust
use hyper_ta::technical_analysis::TechnicalAnalysis;
let ta = TechnicalAnalysis::new();
let result = ta.analyze(&candles)?;
// result contains RSI, MACD, Bollinger Bands, etc.
```
## License
MIT