Technical Features
Classic technical analysis indicators reimplemented as formula-based FeatureTypes.
| Feature | Category | Description |
|---|---|---|
| bollinger_bands | technical | Bollinger Band %B: (price - lower) / (upper - lower) - normalized price posit... |
| ma_crossover | technical | MA crossover signal: fast_ma > slow_ma - binary trend signal when faster m... |
| macd | technical | MACD: (ema(fast) - ema(slow)) - trend-following momentum indicator capturing ... |
| rsi | technical | Relative Strength Index: 100 - 100 / (1 + avg_gain/avg_loss) measures speed a... |
| support_resistance | technical | Support and resistance levels: rolling_min(price) and rolling_max(price) with... |