TradingView Integration
Bridge TradingView → TradeClaw
Route Pine Script alerts to Telegram, Discord, and more. Works with any TradingView plan — even free accounts.
Your Webhook URL
https://your-domain.com/api/tradingview/webhook0
Total Alerts
0
Last 24h
—
Most Active
Live Alert Log
Loading alerts...
Setup Guide
Pine Script Templates
RSI Oversold Alert
//@version=5
indicator("TradeClaw RSI Alert", overlay=true)
rsiLen = input.int(14, "RSI Length")
rsiOversold = input.int(30, "Oversold Level")
rsi = ta.rsi(close, rsiLen)
alertcondition(ta.crossover(rsi, rsiOversold), title="RSI Oversold Buy")
// Alert Message (paste in TradingView alert):
// {"symbol":"{{ticker}}","exchange":"{{exchange}}","interval":"{{interval}}","action":"buy","close":{{close}},"message":"RSI crossed above oversold"}EMA Crossover Alert
//@version=5
indicator("TradeClaw EMA Cross", overlay=true)
ema9 = ta.ema(close, 9)
ema21 = ta.ema(close, 21)
plot(ema9, color=color.green)
plot(ema21, color=color.red)
alertcondition(ta.crossover(ema9, ema21), title="EMA Bullish Cross")
alertcondition(ta.crossunder(ema9, ema21), title="EMA Bearish Cross")
// Alert Message: {"symbol":"{{ticker}}","action":"buy","close":{{close}},"message":"EMA 9/21 bullish crossover"}MACD Signal Alert
//@version=5
indicator("TradeClaw MACD Alert", overlay=false)
[macdLine, signalLine, hist] = ta.macd(close, 12, 26, 9)
plot(macdLine, "MACD", color.blue)
plot(signalLine, "Signal", color.orange)
alertcondition(ta.crossover(macdLine, signalLine), title="MACD Bullish")
alertcondition(ta.crossunder(macdLine, signalLine), title="MACD Bearish")
// Alert Message: {"symbol":"{{ticker}}","action":"buy","close":{{close}},"message":"MACD bullish crossover"}Open Source & Free Forever
TradeClaw is MIT-licensed. Self-host it, fork it, build on it.
Star on GitHub