If you want to automate TradingView alerts with AlgoWay but do not want to pay for a TradingView plan just to unlock Webhook URL, there is still a practical workaround.
Instead of sending alerts through a webhook request, you can send them through plain text email. TradingView sends the alert to a dedicated AlgoWay email address, and AlgoWay receives that email as your trading signal.
The workflow is simple:
After that, when the alert fires, TradingView sends an email to AlgoWay, and AlgoWay processes that email as your trading signal.
First, open your AlgoWay Dashboard and create a webhook as usual.
The most important value you need from this step is your webhook’s unique UUID. That UUID becomes your email address for this setup.
Example:
e7a19089-f14d-4cc0-ac2c-5379b974e2c4@algoway.co
In TradingView, go to:
Settings → Alerts delivery
In the Alternative email for alerts section, click Add email.
Now paste your AlgoWay webhook email in this format:
YourWebhookUUID@algoway.co
After you add the email, TradingView sends a verification code to that address. Since this address belongs to your AlgoWay webhook, the message appears inside your AlgoWay dashboard, not in your normal mailbox.
Open the mail icon in the top-right area of the AlgoWay dashboard and check the incoming message. Copy the verification code and enter it back in TradingView.
Open your chart, strategy, or indicator in TradingView and click Create alert.
Fill the standard fields as usual:
This is the key point of the whole setup.
In the Notifications section, enable:
Do not rely on Webhook URL for this method.
Your trading signal must be written in the Message field as JSON.
This JSON is what AlgoWay reads and converts into an action on your chosen platform.
Typical fields may include:
Example:
{
"platform_name": "bitmex",
"ticker": "{{ticker}}",
"order_contracts": "{{strategy.order.contracts}}",
"order_action": "{{strategy.market_position}}",
"price": "{{close}}"
}
For more JSON formats and field examples, see: JSON Schema Guide
The mail section inside AlgoWay is useful for two things:
This makes troubleshooting much easier. If an alert was sent, you can verify that the email arrived. If it did not arrive, you know the problem is on the TradingView side. If it arrived but did not execute as expected, the next thing to check is your JSON.
This method is excellent if your goal is simple: use TradingView for algo trading without paying for a paid subscription just to unlock webhook delivery.
But there is one trade-off:
In practice, that means:
For many traders, that is still a very good deal: you avoid paying for a TradingView plan just for webhook alerts, while still getting a working automated alert flow into AlgoWay.
If you do not want to pay for a TradingView paid subscription only to get access to standard webhook delivery, you can still automate your alerts with AlgoWay.
The workaround is straightforward:
That is enough to start using algo trading alerts from TradingView through AlgoWay without relying on a paid webhook-only setup.
No. This setup uses Send plain text and a dedicated AlgoWay email address instead.
Inside the mail section on your AlgoWay dashboard.
No. In this email-based workflow, you effectively use one platform at a time because TradingView sends to one alternative alert email at a time.
Yes. AlgoWay reads the JSON from the Message field and uses it as the trading instruction.