★ ★ ★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

mcp_alert_manager

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

Creates TradingView price alerts programmatically via MCP's `create_alert` command. Supports standard alert conditions (`crosses`, `crosses_up`, `crosses_down`) and triggers both popup and email notifications by default. Alert creation is idempotent within a TradingView session.

Particularly useful at the end of an automated analysis run — after Claude identifies key support and resistance levels, this function sets alerts at those exact prices so the trader is notified when price approaches them, removing the need to monitor the chart manually.

[ USAGE EXAMPLE ]
example.py
create_alert(client, price=95000, condition="crosses_up")
# → TradingView alert fires on popup + email
[ FULL CODE ]
mcp_alert_manager.py
def create_alert(client, price, condition="crosses"): client.call("create_alert", {"price": price, "condition": condition, "notify": ["popup", "email"]}) return f"Alert set at {price}"
[ METADATA ]
CategoryMCP Integration
ComplexityIntermediate
LanguagePython 3.10+
TagsMCP, Alerts
[ ASK CLAUDE ]

Ask AI about this skill before installing it.

[ RELATED SKILLS ]