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

signal_indicator_pine

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

A Pine Script v5 overlay indicator that fires buy signals when EMA 20 crosses above EMA 50 and RSI is below 65. Signals are visualized as upward-pointing green triangles plotted below the bars using TradingView's `plotshape` function. The indicator logic matches the Python `scan_buy_signals` function exactly, enabling visual back-verification.

Deploying this indicator alongside the MCPTrade dashboard allows traders to visually confirm on the chart that the signals being shown in the web application correspond to valid technical setups. The RSI threshold is intentionally softened from 65 in the default configuration — adjust it as an input parameter to match your preferred entry conditions.

[ USAGE EXAMPLE ]
example.py
// Paste into TradingView Pine Editor
// Buy arrows appear below bars when:
//   EMA20 crosses above EMA50 AND RSI < 65
// Matches Python scan_buy_signals() logic exactly
[ FULL CODE ]
signal_indicator_pine.py
// @version=5 indicator("Claude Signal", overlay=true) ema20 = ta.ema(close, 20) ema50 = ta.ema(close, 50) rsi = ta.rsi(close, 14) buy = ta.crossover(ema20,ema50) and rsi < 65 plotshape(buy, "Buy", shape.triangleup, location.belowbar, color.green)
[ METADATA ]
CategoryPine Script
ComplexityAdvanced
LanguagePython 3.10+
TagsPine, Signals
[ ASK CLAUDE ]

Ask AI about this skill before installing it.

[ RELATED SKILLS ]