★ ★ ★LIVE97 COINS ANALYZED BY CLAUDE MCP·VIEW SKILLS →★ ★ ★
MCP
claude.analyze("BTCUSDT")→ [buy] signal detectedmcp.draw_levels(resistance=98000)→ [drawn] on chartclaude.scan_watchlist(coins=100)→ [42] buy signals foundmcp.connect("tradingview")→ [connected] daily TFclaude.detect_sr("SOLUSDT")→ [S: $165] [R: $185]claude.analyze("ETHUSDT")→ [neutral] consolidatingmcp.screenshot_chart("BNBUSDT")→ [captured] analyzing...claude.score_quality("XRPUSDT")→ score: 78/100mcp.set_timeframe("1D")→ [ok] chart updatedclaude.analyze("BTCUSDT")→ [buy] signal detectedmcp.draw_levels(resistance=98000)→ [drawn] on chartclaude.scan_watchlist(coins=100)→ [42] buy signals foundmcp.connect("tradingview")→ [connected] daily TFclaude.detect_sr("SOLUSDT")→ [S: $165] [R: $185]claude.analyze("ETHUSDT")→ [neutral] consolidatingmcp.screenshot_chart("BNBUSDT")→ [captured] analyzing...claude.score_quality("XRPUSDT")→ score: 78/100mcp.set_timeframe("1D")→ [ok] chart updated
BACK TO CLAUDE SKILLS

scan_overbought

Market ScannerScannerRSI
INSTALLATION
$python -c "exec(open('scan_overbought.py').read())"
#or paste directly into your Claude Code terminal
[ ABOUT ]

Returns coins where RSI exceeds the configurable threshold (default 70), along with the RSI value and an `action` label set to `watch_short`. The `action` field makes the output directly parseable by prompt templates that need structured context without additional processing.

Overbought conditions in a strong bull market can persist for weeks — RSI > 70 in an uptrending market often signals continuation rather than reversal. The scanner is most effective in ranging markets or when combined with bearish divergence detection, where overbought + divergence creates a high-probability reversal setup.

[ USAGE EXAMPLE ]
example.py
hot = scan_overbought(coin_list, threshold=70)
# → [{"coin": "BTC", "rsi": 74.3, "action": "watch_short"}]
[ FULL CODE ]
scan_overbought.py
def scan_overbought(coins, threshold=70): return [{"coin": c, "rsi": round(r, 1), "action": "watch_short"} for c in coins if (r := get_rsi(c)) > threshold]
[ METADATA ]
CategoryMarket Scanner
ComplexityIntermediate
LanguagePython 3.10+
TagsScanner, RSI
[ ASK CLAUDE ]

Ask AI about this skill before installing it.

[ RELATED SKILLS ]