Cryptrade Desk — JavaScript Plugin

Live market ticker with BUY, SELL, HOLD, LONG, SHORT, trades, skips, whale flow, and intel — fed by the cryptrade bot.

1. One-line install (recommended)

Add a container and the plugin script anywhere on your page:

<div id="cryptrade-desk-top"></div>
<script src="https://canadapaywall.com/plugin/cryptrade-desk.js?v=1.1" data-cryptrade-desk
  data-feed-url="https://canadapaywall.com"
  data-token="YOUR_SUBSCRIBER_TOKEN"
  data-theme="dark"></script>

2. Programmatic install

<script src="https://canadapaywall.com/plugin/cryptrade-desk.js?v=1.1"></script>
<script>
  var desk = CryptradeDesk.mount({
    feedUrl: "https://canadapaywall.com",
    token: "YOUR_SUBSCRIBER_TOKEN",
    target: "#cryptrade-desk-top",
    theme: "dark"
  });

  // Emit any desk signal locally (updates ticker + fires listeners)
  desk.emitSignal("BUY", { text: "RSI dip", symbol: "ETH", usd: 1840 });

  // Subscribe to all signal changes
  desk.onSignal(function (state) {
    console.log(state.primary, state.active);
  });
</script>

3. Available signals

4. API reference

5. Get a token

Subscribe for a subscriber token, or use the site token for canadapaywall.com homepage.

6. Legacy widget

<script src="https://canadapaywall.com/public/widget.js" data-token="TOKEN"></script>

Loads the same plugin automatically.