Documentation

Everything you need to get started with Signal To Exchange.

Quick Start

  1. Create an account and start your free trial.
  2. Add your exchange API keys (trade-only permissions, no withdrawals).
  3. Create a bot — select your exchange, trading pair, and order size.
  4. Copy your unique webhook URL into TradingView (or any webhook source).
  5. Format your alert payload and start relaying.

Webhook Payload

Send a JSON payload to your bot's webhook URL. The minimum required fields are:

{
  "action": "buy",
  "symbol": "BTC/USDT",
  "price": "{{close}}"
}

actionbuy or sell

symbol — Trading pair (e.g. BTC/USDT, ETH/USDT)

price — Reference price (used for logging, market orders execute at market)

Supported Exchanges

We currently support spot trading on:

  • Binance
  • Coinbase
  • Kraken
  • Bybit
  • OKX

Need another exchange? Let us know.

Security

  • API keys are encrypted at rest using AES-256.
  • We only request trade-only permissions — never withdrawal access.
  • Optional IP allowlisting for an extra layer of protection.
  • You can rotate or revoke keys at any time from the dashboard.

Webhook Sources

Any system that can send an HTTP POST with a JSON body can trigger trades:

  • TradingView — Pine Script strategies, indicators, or manual alerts
  • n8n / Make / Zapier — Workflow automation tools
  • Custom backends — Your own server or strategy engine

Need help getting set up?

Contact support