Home  ›  block algo flex  ›  Documentation  ›  Altrady Setup

Altrady Setup

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

  1. Log in to Altrady
  2. Navigate to Bots and create a new Signal Bot
  3. Select Webhook as the signal source
  4. Configure your bot settings (exchange, pair, order size, take profit, stop loss, etc.)
  5. Save the bot

Step 2: Set Up the TradingView Alert

  1. Create an alert on block algo flex (see How to set up alerts)
  2. Enter the Altrady webhook URL:
https://api.altrady.com/v2/signal_bot_positions
  1. 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"
}
  1. Replace the placeholder values with your actual Altrady API credentials, exchange, and symbol
  2. 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.

This is a static view of a single section. For full search and interactivity visit the docs app. Open interactive docs →