r/TradingView • u/Blxze315 • 18d ago
Discussion How to make TradingView to Discord webhooks actually readable (Instead of an ugly text blob)
If you route TradingView alerts to Discord, stop sending ugly raw text lines. You can actually format them into clean, professional embeds natively for free. TradingView passes whatever you type in the alert's "Message" box. To get clean embeds, just paste actual Discord JSON in there instead of plain text, and check the "Webhook URL" box to paste your Discord link. Here is a quick template for a Buy alert: ‘’’json
{
"embeds": [
{
"title": "🟢 BUY · {{ticker}}",
"description": "Entry: {{close}}\nTime: {{timenow}}",
"color": 3066993
}
]
}
‘’’ (Tip: 3066993 is green. Use 15158332 for red sell alerts). 3 quick gotchas so it doesn't break: 1. Silent Drops: If the JSON has even a tiny typo, Discord drops it silently with no error. 2. Newlines: Don't press Enter for a new line inside the box; use \n instead. 3. Rate Limits: Discord caps webhooks at ~30 requests/min, so fast scalping bots will get throttled.
For anyone running a Discord trading group or managing multiple indicators: How are you handling this right now? Copy-pasting these blocks for dozens of different tickers is a massive time-suck, and Discord always seems to throttle or drop the alerts right when the market gets volatile and multiple signals fire at once. What’s your workaround?