Configure TradingView webhook alerts for Kraken

Complete the webhook step for tradingview webhook automation and route structured alerts from TradingView to Kraken through TradeAdapter.

Step 1

Use Kraken symbols on TradingView

Confirm your chart uses a Kraken symbol so alerts can route correctly from TradingView to Kraken.

Step 2

Add your strategy and create an alert

Attach your Pine strategy, verify backtest activity, then create a TradingView alert for your buy/sell logic.

Strategy setup
Add TradingView strategy
Alert setup
Create TradingView alert
Step 3

Set webhook URL and alert message

Use your TradeAdapter webhook URL and structured message payload for consistent real-time trade execution.

Message
TradingView alert message JSON
Webhook URL
TradingView webhook URL setup
Step 4

Recreate alerts after strategy changes

Recreate TradingView alerts whenever strategy parameters change so routing stays aligned with your latest logic.

JSON

TradingView alert message template

{
  "kraken_api_key": "PUT YOUR KRAKEN API KEY HERE",
  "kraken_private_key": "PUT YOUR KRAKEN PRIVATE KEY HERE",
  "real_order": "Yes / No",
  "order_market": "Spot / Futures",
  "order_type": "Market / Limit",
  "exchange": "kraken",
  "ticker": "{{ticker}}",
  "time": "{{timenow}}",
  "order_contracts": "{{strategy.order.contracts}}",
  "order_action": "{{strategy.order.action}}",
  "order_price": "{{strategy.order.price}}"
}