
The Start Bots Signal category contains descriptions of signals that can start a trading bot. Two of them are related to TradingView: a personal start link and a strategy webhook.
When creating or editing any bot, there is a Start signal builder block at the bottom of settings. You can choose different start signals there. For TradingView integration, use one of the two options below.
TradingView Signal or Manual Start Link
The bot starts only manually or when its personal start URL is called (for example from TradingView). You must configure the TradingView indicator or strategy yourself.
After creating a bot with this signal, you receive a dedicated link. When it is called - from a TradingView indicator, automation tools (n8n), an AI agent, or any other external service - the bot starts.
Example link:
https://elixoai.com/dexbots/start.php?token=fadc03627.......98b9&action=start
In TradingView, you can set this link as the webhook URL in an Alert. You can also open it manually in a browser or pass it to any system that can send HTTP requests.
TradingView Strategy
The bot starts from a TradingView strategy alert webhook. Copy the webhook URL and Message and paste them when creating an Alert on TradingView. You must configure the indicator or strategy yourself.
After creating a bot with this signal, you receive:
- Webhook URL:
https://elixoai.com/dexbots/start.php?token=611719d....c1b0dbd&action=strategy - Message:
{{strategy.order.action}}/{{strategy.market_position}}
The message is the same for all bots using this signal type. Enter these values in the Webhook URL and Message fields when creating a TradingView Alert.
Once configured, your bots will start automatically when TradingView indicators or strategies send a start signal.
Important
Configuring the TradingView indicator or strategy is the user’s responsibility. ELIXOAI provides the link and webhook; you define the signal logic in TradingView.