Sending Alerts to Altrady Signal Bots
Altrady is a trading platform that supports signal bots triggered by webhooks.
Step 1: Create a Signal Bot in Altrady
- Log in to Altrady
- Navigate to Bots and create a new Signal Bot
- Select Webhook as the signal source
- Configure your bot settings (exchange, pair, order size, take profit, stop loss, etc.)
- Save the bot
Step 2: Set Up the TradingView Alert
- Create an alert on block algo flex (see How to set up alerts)
- Enter the Altrady webhook URL:
https://api.altrady.com/v2/signal_bot_positions
- In the Message field, enter the Altrady webhook payload:
{
"api_key": "YOUR_ALTRADY_API_KEY",
"api_secret": "YOUR_ALTRADY_API_SECRET",
"side": "long",
"exchange": "binance",
"symbol": "BINA_USDT_BTC"
}
- Replace the placeholder values with your actual Altrady API credentials, exchange, and symbol
- Click Create
Step 3: Test With a Dry Run
You can test your setup before going live by adding "test": true to the message payload:
{
"test": true,
"api_key": "YOUR_ALTRADY_API_KEY",
"api_secret": "YOUR_ALTRADY_API_SECRET",
"side": "long",
"exchange": "binance",
"symbol": "BINA_USDT_BTC"
}
This sends a test request without placing a real trade. Check your Altrady dashboard to confirm the signal was received.
Note: Refer to the Altrady webhook documentation for the full list of supported parameters and symbol formatting for different exchanges.