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

custom_strategy_pine

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

A Pine Script v5 strategy template that tests a simple EMA-and-RSI momentum approach: enter long when price closes above EMA 20 and RSI is below 65; exit when price closes below EMA 20 and RSI is above 35. The strategy block enables TradingView's built-in backtesting engine with an initial capital of $10,000.

This template is a starting point, not a production system. Use TradingView's Strategy Tester to evaluate performance across different market conditions before trading real capital. Key metrics to examine: net profit, max drawdown, win rate, and profit factor. Modify the entry/exit conditions by adding MACD confirmation or volume filters to improve robustness.

[ USAGE EXAMPLE ]
example.py
// TradingView Strategy Tester shows:
// Entry: close > EMA20 and RSI < 65
// Exit:  close < EMA20 and RSI > 35
// Backtest on BTCUSDT Daily for reference
[ FULL CODE ]
custom_strategy_pine.py
// @version=5 strategy("Claude Strategy", overlay=true, initial_capital=10000) ema20 = ta.ema(close,20) rsi = ta.rsi(close,14) if ta.crossover(close,ema20) and rsi<65 strategy.entry("Long", strategy.long) if ta.crossunder(close,ema20) and rsi>35 strategy.close("Long")
[ METADATA ]
CategoryPine Script
ComplexityAdvanced
LanguagePython 3.10+
TagsPine, Strategy
[ ASK CLAUDE ]

Ask AI about this skill before installing it.

[ RELATED SKILLS ]