bounce_scanner
Screen one or more US tickers for a mean-reversion 'bounce' setup on daily bars: price near support (recent pivot low) or the moving average, RSI oversold and turning up, a bullish latest candle, and volume at/above its recent average. Returns per-symbol {isBounce, score 0-100, reasons, price, rsi, distanceToSupportPct, supportLevel}. ALL thresholds are tunable inputs (rsi_threshold, ma_period, proximity_pct, lookback_days) so calibration is a parameter change. HEURISTIC signal for research, not investment advice.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | No | A single ticker (e.g. 'AAPL'). Use this or `symbols`. | |
| symbols | No | Multiple tickers to scan (max 15). | |
| ma_period | No | Simple moving-average period used as a dynamic support reference (default 50). | |
| lookback_days | No | Trailing daily bars to analyze (default 180). | |
| proximity_pct | No | How close (percent) price must be to support/MA to count as 'near' (default 3). | |
| rsi_threshold | No | RSI(14) must be at or below this to qualify as oversold (default 35). |