Signal Integration

Receive trading signals from external sources and execute them automatically.

How Signals Work

Signals in Algrow represent external trading triggers. When a signal is received, Algrow validates it against your risk rules, maps it to a configured strategy, and executes the corresponding trade through your connected broker.

Signal Source → Webhook → Algrow Validates → Risk Check → Broker API → Order Placed

Supported Sources

Your Webhook URL

Each Algrow account gets a unique webhook URL. You can find it in the Signals page of your dashboard.

POST https://api.algrow.biz/api/signals/webhook?token=YOUR_TOKEN
Keep your webhook token secret. Anyone with the token can send signals to your account. Regenerate it from Settings if compromised.

Signal Payload Format

All signal sources should send a JSON payload with this structure:

{
  "symbol": "NIFTY",
  "action": "buy",
  "quantity": 50,
  "price": 0,
  "order_type": "market",
  "strategy_id": "optional-strategy-uuid"
}