Skip to content

Ghost bot

Ghost bot is a special mode of the Crazy engine where deals are created from external signals without a pre-configured bot. External services (TradingView, your own software, any source of signals) send a webhook to Cryptorg, and the platform itself creates the deal with the required parameters on behalf of Ghost.

  • You already have a TradingView strategy (Pine Script) and want to call alert() with a webhook without duplicating logic inside Cryptorg.
  • Signals come from an external script or service (your own analytics bot, an ML model, a third-party provider).
  • The strategy changes often — editing Pine Script is easier than manually reconfiguring a bot.
  • You want a shared “receiver” for different directions and pairs without creating N bots for each scenario.
  1. On the Cryptorg side, open the webhook configurator and copy the URL.
  2. On the external service side (e.g., TradingView), configure a POST request to that URL with a JSON body, specifying:
    • strategy — direction (LONG / SHORT);
    • pairs — trading pairs (or a single pair);
    • OPEN / DCA / CLOSE / STOP parameters — as in a regular Crazy bot.
  3. You don’t pass botId — that’s Ghost mode.
  4. On receiving the signal, Cryptorg looks for matches by direction and pairs, opens the position, and a bot named «Ghost» appears in the interface with the active deal.
  5. Subsequent signals (modify, average, close) also come without botId — the system matches them to the already open Ghost deal by direction and pair.

In the Cryptorg interface you see:

  • A bot named «Ghost» in the general bot list.
  • Active deals opened via webhooks.
  • History — all Ghost deals in a single log.

You can’t “open editing” of this bot and change parameters — it’s controlled only from outside. You can manually close active deals via the UI if needed.

Regular CrazyGhost
Need to create the bot in advanceyesno
Deal parameters definedin the bot UIin the webhook JSON
botId in the requestrequiredabsent
Where deals are seenin the bot card and active dealsin active deals
Who starts the dealthe bot / external signalonly external signal
  • Webhooks — JSON request format, parameters, deal modify and close.
  • Bot creation — the regular path if Ghost isn’t right for you.