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

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

Programmatically adds a technical indicator to the active TradingView chart using the `add_study` MCP command. Oscillator-type indicators (RSI, MACD) are routed to a new sub-panel automatically; overlay indicators (EMA, Bollinger Bands) are placed on the main price panel.

The `params` argument accepts any indicator-specific settings as a dictionary, matching TradingView's study parameter schema. This allows fully configurable indicator setups to be reproduced deterministically — useful for screenshot-based visual analysis pipelines where consistent chart state is required.

[ USAGE EXAMPLE ]
example.py
add_indicator(client, "RSI", {"length": 14})
add_indicator(client, "EMA", {"length": 20})
# → indicators appear on active chart
[ FULL CODE ]
mcp_add_indicator.py
def add_indicator(client, name, params=None): client.call("add_study", {"name": name, "params": params or {}, "panel": "new" if name in ["RSI", "MACD"] else "same"}) return f"Added {name} to chart"
[ METADATA ]
CategoryMCP Integration
ComplexityIntermediate
LanguagePython 3.10+
TagsMCP, Indicator
[ ASK CLAUDE ]

Ask AI about this skill before installing it.

[ RELATED SKILLS ]