Main clusters and core pages.
This guide explains how to connect Bybit to AlgoWay, create a system-generated Bybit API key, configure a Bybit webhook inside AlgoWay, and send TradingView alerts using the correct JSON format.
The setup has three main parts: create Bybit API credentials, add the Bybit webhook in AlgoWay, and configure your TradingView alert with the AlgoWay webhook URL and message body.
Start from the Bybit API management page and create a new API key. When Bybit asks for the API key type, select System-generated API Keys.
Important: do not select Self-generated API Keys for this setup. AlgoWay uses the standard Bybit API Key and API Secret.
On the API key creation page, create a dedicated API key for AlgoWay.
algoway.Enable the trading permissions required for your setup:
After selecting the required permissions, click Submit.
Bybit will ask you to complete security verification. Enter the email verification code and your Google 2FA code, then continue.
After the key is created, Bybit will show the API Key and API Secret. Copy both values immediately.
Important: Bybit shows the API Secret only once during key creation. Save it before closing the window.
After the API key is ready, log in to AlgoWay and create a Bybit webhook. This webhook is the bridge between TradingView alerts and Bybit execution.
The main fields are:
Then click Add Trial Webhook or Add Main Webhook.
If you are using a TradingView Strategy, paste the following JSON into the TradingView alert message:
{
"platform_name": "bybit",
"ticker": "{{ticker}}",
"order_contracts": "{{strategy.order.contracts}}",
"order_action": "{{strategy.market_position}}",
"price": "{{close}}"
}
TradingView will automatically replace the placeholders with real strategy values when the alert is triggered:
{{ticker}} — chart ticker{{strategy.order.contracts}} — strategy order size{{strategy.market_position}} — current strategy position{{close}} — current close price
If you are using an indicator alert instead of a TradingView Strategy alert, you do not have to write the JSON manually.
For indicator-based alerts, use one of the tools available in the AlgoWay Dashboard menu:
This is useful when your indicator sends a custom text alert instead of strategy placeholders such as {{strategy.order.contracts}}.
In the TradingView alert window, open the Notifications tab, enable Webhook URL, and paste your AlgoWay webhook link.
Your webhook URL will look like this:
https://algoway.co/your-webhook-uuid
Click Apply or Create to save the alert.
To automate Bybit through AlgoWay, you need a system-generated Bybit API key, the correct trading permissions, a properly configured Bybit webhook in AlgoWay, and a correct TradingView JSON alert. Once these parts are set correctly, TradingView alerts can be routed directly to Bybit through AlgoWay.
Need help? Contact support via your AlgoWay dashboard.