BACK TO CLAUDE SKILLS
◈
scan_oversold
Market ScannerScannerRSI
INSTALLATION
$python -c "exec(open('scan_oversold.py').read())"
#or paste directly into your Claude Code terminal
[ ABOUT ]
Returns all coins from the input list where the current RSI is below the configurable threshold (default 30), along with the exact RSI value for ranking purposes. The walrus operator (`:=`) computes RSI once per coin and reuses the value in the filter condition, avoiding redundant calculations in large watchlists.
Oversold readings alone are not buy signals — they indicate that selling pressure has been extreme, but a coin can remain oversold for extended periods during sustained downtrends. Use this scanner as a candidate filter, then apply `identify_trend_direction` and `detect_divergence` on each result to separate genuine reversal candidates from falling knives.
[ USAGE EXAMPLE ]
[ FULL CODE ]
[ METADATA ]
CategoryMarket Scanner
ComplexityIntermediate
LanguagePython 3.10+
TagsScanner, RSI
[ ASK CLAUDE ]
Ask AI about this skill before installing it.