Payload Examples
Pulse Mini does not generate or modify payloads. It only triggers your TradingView alert when structural conditions align. You choose the JSON message to send based on the automation platform you use.
Different tools require different payload structures. This chapter provides clear examples for the two most common environments: 3Commas Bots and 3Commas SmartTrades.
3Commas Bots (Official TradingView “Custom Signal” Format)
3Commas bots accept two extremely simple payloads.
Buy Signal:
{"signal": "buy"}Sell Signal:
{"signal": "sell"}Bots parse these payloads automatically. No additional fields are required. This is the cleanest and most common automation workflow.
SmartTrade Webhooks
SmartTrade automations allow more flexibility. Unlike bots, they do not enforce a strict JSON structure. You can send any keyword — the action depends entirely on your SmartTrade configuration.
Buy Example:
{"action": "buy"}Sell Example:
{"action": "sell"}Close Example:
{"action": "close"}The SmartTrade you configure determines what these actions do.
Custom Bots and Frameworks
If you use:
Python
Node.js
Go
Rust
API-based systems
Telegram/Discord bots
cloud execution engines
…you can attach any JSON format your system expects.
TradingView will send this exactly as written when the alert fires.
How TradingView Sends Payloads
TradingView replaces template variables like:
{{ticker}}{{close}}{{timenow}}
…with real-time values before sending the payload.
Pulse Mini does not modify this process. It only triggers the alert.
Testing Your Payload
To ensure everything works correctly:
Create a test alert
Attach a simple JSON payload
Trigger the alert manually
Check the automation platform’s logs
Validate the JSON structure
TradingView will report formatting errors (JSON invalid) or delivery issues (webhook failed).
Summary
Pulse Mini does not create payloads
You define the message
3Commas Bots require
"signal": "buy"/"sell" \SmartTrades accepts custom
"action"keywordsCustom systems accept any JSON format
TradingView handles variable substitution
Pulse Mini simply triggers the alert when the structure is aligned
Pulse Mini provides the structural condition. Your automation tool interprets the payload.
Last updated