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

alert_script_pine

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

A Pine Script v5 indicator that creates two `alertcondition` definitions — one for when price crosses a user-defined support level and one for a resistance level. Both levels are exposed as `input.float` parameters so they can be configured directly in TradingView's indicator settings panel without editing code.

Alert conditions defined via Pine Script integrate fully with TradingView's alert system: once the indicator is applied to a chart, you can create alerts from the Alerts dialog that fire via popup, email, or webhook. Webhook alerts can trigger downstream automation — for example, posting to a Telegram channel or calling a serverless function that updates the Supabase database.

[ USAGE EXAMPLE ]
example.py
// Set support/resistance via input fields
// Then Alerts dialog > This Script
// Fires on: popup + email when price crosses
[ FULL CODE ]
alert_script_pine.py
// @version=5 indicator("Claude Alerts", overlay=true) support = input.float(92000, "Support Level") resist = input.float(98000, "Resistance Level") alertcondition(ta.cross(close,support), "Support Touch", "Price hit support") alertcondition(ta.cross(close,resist), "Resistance Touch", "Price hit resistance")
[ METADATA ]
CategoryPine Script
ComplexityAdvanced
LanguagePython 3.10+
TagsPine, Alerts
[ ASK CLAUDE ]

Ask AI about this skill before installing it.

[ RELATED SKILLS ]