Use Kraken symbols on TradingView
Confirm your chart uses a Kraken symbol so alerts can route correctly from TradingView to Kraken.
Add your strategy and create an alert
Attach your Pine strategy, verify backtest activity, then create a TradingView alert for your buy/sell logic.
Set webhook URL and alert message
Use your TradeAdapter webhook URL and structured message payload for consistent real-time trade execution.
Recreate alerts after strategy changes
Recreate TradingView alerts whenever strategy parameters change so routing stays aligned with your latest logic.
TradingView alert message template
Credentials live on the broker you saved under My Brokers; market, ticker, order type, and quantity are configured once on that broker's Strategy — never in the TradingView alert. If your strategy uses Limit order type, or has Stop Loss / Take Profit enabled, also include "order_price": "{{close}}" in the alert. If your strategy has "Sync with TradingView position" enabled, also include market_position and prev_market_position from your strategy.
{
"strategy_name": "kraken-momentum",
"order_action": "{{strategy.order.action}}",
"order_contracts": "{{strategy.order.contracts}}"
}