// the find
fabston/TradingView-Webhook-Bot
📊 Send TradingView alerts to Telegram, Discord, Slack, Twitter and Email.
A Flask webhook receiver that forwards TradingView alerts to Telegram, Discord, Slack, Twitter, and email. You run it on a VPS, point your TradingView alert webhook at it, and it fans out notifications. Aimed at retail traders who want their strategy alerts in chat apps without building their own glue code.
The per-alert channel routing is genuinely useful — you can specify different Telegram chat IDs or Discord channels in the alert payload itself rather than having one global destination. Docker support is there and straightforward. The shared-secret key in the payload is a reasonable lightweight auth mechanism for a public webhook endpoint. TradingView variable passthrough ({{close}}, {{ticker}}, etc.) works as expected.
The badge still says Python 3.8, which hit EOL in October 2024 — no indication the project has moved forward. Security model is a plaintext secret in every alert payload, which means it's visible in TradingView's alert log and any network capture; no HMAC, no timestamp validation, trivially replayable. Twitter/X support via tweepy is likely broken given API changes since 2022. No tests at all — a single handler.py with no coverage means you find out about breakage when your alert silently drops.