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

multi_indicator_dashboard

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

Creates a fixed table in the top-right corner of the chart that displays RSI value with conditional text coloring: red when above 70 (overbought), green when at or below 70 (neutral/oversold). The table uses Pine Script v5's `table.new` and `table.cell` functions to create a persistent overlay element.

Extend the dashboard by adding rows for MACD state (positive/negative), EMA cross condition (golden/death), and ADX strength. A four-row table displaying all these values simultaneously gives the trader a complete technical summary without cluttering the chart with multiple sub-panels — particularly useful on small screens or when analyzing many charts quickly.

[ USAGE EXAMPLE ]
example.py
// Table appears top-right on chart
// RSI cell: red if > 70, green if <= 70
// Extend rows for MACD, EMA cross, ADX
[ FULL CODE ]
multi_indicator_dashboard.py
// @version=5 indicator("Claude Dashboard", overlay=true) var tbl = table.new(position.top_right,2,4) rsi = ta.rsi(close,14) table.cell(tbl,0,0,"RSI") table.cell(tbl,1,0,str.tostring(math.round(rsi,1)), text_color=rsi>70?color.red:color.green)
[ METADATA ]
CategoryPine Script
ComplexityAdvanced
LanguagePython 3.10+
TagsPine, Dashboard
[ ASK CLAUDE ]

Ask AI about this skill before installing it.

[ RELATED SKILLS ]