A webhook signal is a JSON message sent from TradingView (or an Altrady alert) to the Signal Bot. When the bot receives the message, it translates the instruction into an actual trading action on your connected exchange account, opening, increasing, reducing, reversing, or closing a position based on the parameters you define.
Altrady's Webhook Builder lives inside every Signal Bot, a visual interface that generates the correct JSON payload without any code. Select the action (Open, Increase, Reduce, Close, or Reverse), pick your market and side, and the tool produces the exact message TradingView needs to send. Paste that into your TradingView alert, add the Altrady webhook URL, and the bot is connected.
Advanced users can embed signals directly in Pine Script strategies. The same JSON payload works from any source that can POST to a webhook URL, TradingView alerts, Altrady alerts based on price or trendline crossings, or custom scripts via the API.
{
"api_key": "YOUR_ALTRADY_API_KEY",
"api_secret": "YOUR_ALTRADY_API_SECRET",
"action": "open",
"exchange": "BYBI",
"symbol": "BYBI_USDT_SOL",
"side": "long"
}
Minimum required fields to open a long position on SOL/USDT (Bybit). The Webhook Builder generates this automatically.