TradingView Webhook Receiver

Receive TradingView webhook alerts and execute trades via exchange APIs.

5|1|Updated Feb 9, 2026
One-click install
npx skills add https://github.com/kayzaa/k.i.t.-bot --skill tradingview-webhook-receiver
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: TradingView Webhook Receiver
Source: https://github.com/kayzaa/k.i.t.-bot/tree/main/skills/tradingview-webhook
Command: npx skills add https://github.com/kayzaa/k.i.t.-bot --skill tradingview-webhook-receiver

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires aiohttp, pyyaml, and includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill bridges the gap between TradingView alerts and automated trade execution on cryptocurrency exchanges, removing the need for manual intervention.

Core Features & Use Cases

  • Real-time Alert Processing: Receives alerts via HTTP webhook.
  • Flexible Format Support: Parses both JSON and plain text alert messages.
  • Automated Trade Execution: Connects to exchanges to place buy/sell/close orders based on alert parameters.
  • Use Case: Configure a TradingView strategy to send an alert when a specific technical condition is met. This Skill will automatically execute the corresponding trade on your connected exchange, capturing market opportunities instantly.

Quick Start

Start the webhook server by running python webhook_server.py in your terminal.

Frequently Asked Questions about TradingView Webhook Receiver

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate trade execution from TradingView webhook alerts?

This Skill receives TradingView webhook alerts via HTTP and interfaces with exchange APIs to execute trades automatically. It parses dynamic order parameters like action, symbol, quantity, take profit, and stop loss from alert messages.

What alert message formats are supported for TradingView webhook automation?

The webhook receiver supports both JSON and plain text message formats, including TradingView placeholders for dynamic order parameters like action, symbol, quantity, take profit, and stop loss.

Can I route TradingView alerts to different exchange APIs based on strategy?

Yes, the Skill includes strategy routing capabilities, allowing you to direct incoming TradingView alerts to different exchange API endpoints based on the specific trading strategy triggered.

How do I secure my webhook server for crypto trading automation?

You can secure your webhook receiver using optional secret-based authentication. This ensures that only authorized TradingView alerts trigger automated trade execution on your connected exchange APIs.

How do I start the webhook server to receive TradingView alerts?

To start receiving TradingView alerts, run `python webhook_server.py` in your terminal. This launches the webhook server that listens for incoming HTTP alerts and routes them to your configured exchange APIs.

Does the webhook receiver log TradingView alert execution data?

Yes, the Skill includes logging functionality to record incoming TradingView alerts and their execution details. This provides an audit trail for monitoring automated trades and troubleshooting strategy routing.