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.
When it’s handy
Section titled “When it’s handy”- 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.
How it works
Section titled “How it works”- On the Cryptorg side, open the webhook configurator and copy the URL.
- 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/STOPparameters — as in a regular Crazy bot.
- You don’t pass
botId— that’s Ghost mode. - 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.
- Subsequent signals (modify, average, close) also come without
botId— the system matches them to the already open Ghost deal by direction and pair.
What’s shown in the UI
Section titled “What’s shown in the UI”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.
Comparison with a regular Crazy bot
Section titled “Comparison with a regular Crazy bot”| Regular Crazy | Ghost | |
|---|---|---|
| Need to create the bot in advance | yes | no |
| Deal parameters defined | in the bot UI | in the webhook JSON |
botId in the request | required | absent |
| Where deals are seen | in the bot card and active deals | in active deals |
| Who starts the deal | the bot / external signal | only external signal |
Related
Section titled “Related”- Webhooks — JSON request format, parameters, deal modify and close.
- Bot creation — the regular path if Ghost isn’t right for you.