Main clusters and core pages.
If you are comparing TradingView webhook pricing, webhook trading bot costs, or the monthly price of connecting TradingView alerts to MT5, TradeLocker, cTrader, Binance, OKX, Bybit, MEXC, BitMEX or another execution platform, the most important detail is how the service prices automation.
AlgoWay uses a route-based pricing model. A route means one signal source connected to one trading destination: Source (from) → Platform (to). For example, a TradingView alert can send a webhook message to AlgoWay, and AlgoWay can route that signal to MetaTrader 5, TradeLocker, Match-Trader, DxTrade, cTrader, Tradovate, ProjectX, Binance, OKX, Bybit, MEXC, BitMEX and other supported destinations.
Many traders confuse four different things: a TradingView alert, a webhook URL, a trading bot and an execution route. In AlgoWay, the paid object is the route. The TradingView alert is only the message that enters that route.
| Object | Meaning | How AlgoWay treats it |
|---|---|---|
| TradingView alert | A rule inside TradingView that fires when your condition is met. | Not billed per alert. |
| Webhook message | The JSON or supported signal text sent by TradingView. | Not billed per message. |
| Webhook URL | The endpoint that receives the TradingView alert. | Belongs to a route. |
| Route | The configured path from source to destination. | This is the subscription object. |
This matters for SEO and for real trading costs. If you run ten TradingView alerts that all send instructions to the same destination account through the same configured route, you are not paying for ten separate alert messages. You pay for the active route.
AlgoWay currently separates the main webhook plans by route type. The price activates the selected automation route and allows AlgoWay to process supported trading messages for that route.
| Plan | Monthly | Yearly | Typical use | Payment methods |
|---|---|---|---|---|
| MT5 plan | 7 USD or 10 USDT | 72 USD or 80 USDT | MetaTrader 5 routes, MT5-based automation and MT5 discount route cases. | PayPal / Crypto |
| TW plan | 9 USD or 10 USDT | 90 USD or 90 USDT | TradingView webhook automation routes to supported platforms. | PayPal / Crypto / Credit Card when available |
Monthly billing is useful when you are still testing a TradingView strategy, broker connection, crypto exchange route or signal format. Yearly billing is useful when the route is stable and you want a lower long-term cost.
In most cases, plan selection starts from the Source (from) side of the route. A TradingView-source route normally uses the TW plan. A MetaTrader-source route normally uses the MT5 plan. MT5-related routes may also have a lower MT5 plan option when the dashboard marks the route that way.
| Route example | Typical plan | Why |
|---|---|---|
| TradingView → TradeLocker | TW plan | The signal starts from TradingView and is routed to TradeLocker. |
| TradingView → cTrader | TW plan | The TradingView webhook is the source of the automation. |
| TradingView → Binance / OKX / Bybit / MEXC / BitMEX | TW plan | The route receives TradingView alert messages and forwards them to a crypto exchange. |
| TradingView → MetaTrader 5 | MT5 plan when offered by the route | MT5 execution uses a terminal-side route, so AlgoWay may price it through the MT5 plan. |
| MetaTrader → ProjectX / Tradovate / crypto exchange | MT5 plan | The source side is MetaTrader. |
| Telegram → trading platform | Shown by dashboard route | Telegram-source automation has its own route logic and should be checked inside the dashboard. |
The practical rule is simple: create the webhook route first, verify the Source and Platform, then activate the matching plan shown for that route. Do not buy a generic “bot” subscription if all you need is one TradingView alert route to one execution destination.
A webhook route is not just a naked URL. It contains the settings that tell AlgoWay how to receive a signal, how to validate it, and where to send the final trading instruction.
This is why AlgoWay can be cheaper than many all-in-one trading automation platforms. It does not force every user into a large monthly package when the user only needs a specific route from a signal source to an execution venue.
Traders often compare AlgoWay with PineConnector, TradersPost, PickMyTrade and other webhook trading automation products. Those platforms may be useful for their own target users, but their pricing model is usually much heavier than a small route-based connector.
| Service type | Typical public entry price | Best fit | AlgoWay angle |
|---|---|---|---|
| PineConnector-style MT4/MT5 connector | Often around $39/month for the entry plan | TradingView to MetaTrader only. | AlgoWay starts much lower and supports more destinations than MT5 only. |
| Large automation hub | Often $40–$80+ per month for live auto-submit tiers | Users who need a broad account-management platform. | AlgoWay is route-based, so a simple webhook route does not need a large platform subscription. |
| Broker-specific TradingView bridge | Often around $50/month | Specific futures, prop-firm or broker workflows. | AlgoWay focuses on many platform routes from one automation system. |
| AlgoWay route | From 7 USD/month for MT5 plan and 9 USD/month for TW plan | Traders who need affordable TradingView webhook execution across multiple platforms. | Lower entry cost, multi-platform routing and optional Clone mode. |
You run a TradingView strategy and want the orders executed in MetaTrader 5. You create one TradingView-to-MT5 route, install or connect the MT5 side, and activate the matching MT5 route plan if the dashboard offers that route pricing. You do not pay per alert firing and you do not pay separately for every symbol sent through the same route.
You create one TradingView-to-TradeLocker webhook. TradingView sends JSON to AlgoWay. AlgoWay logs into the configured TradeLocker route and sends the order. This is a TW plan route because the source is TradingView and the destination is TradeLocker.
You send TradingView alerts to a Binance route. The JSON can include market, limit or stop order logic, size, symbol, side and risk fields supported by the route. The cost is the active route, not the number of alert messages that arrive during the month.
You want the same TradingView signal to reach MT5, TradeLocker and a crypto exchange. Instead of creating unrelated automation stacks, you can configure multiple AlgoWay routes and use Clone mode when your setup allows it. This is the main cost advantage for multi-platform trading automation.
AlgoWay pricing is route-based, but the execution quality still depends on the message. A TradingView alert should send a clear JSON payload that identifies the platform, ticker, action and size.
Basic market order:
{
"platform_name": "metatrader5",
"ticker": "{{ticker}}",
"order_action": "{{strategy.order.action}}",
"order_contracts": "{{strategy.order.contracts}}"
}
TradeLocker route with SL/TP:
{
"platform_name": "tradelocker",
"ticker": "XAUUSD",
"order_action": "buy",
"order_contracts": 1,
"stop_loss": 50,
"take_profit": 120
}
Crypto exchange route:
{
"platform_name": "binance",
"ticker": "BTCUSDT",
"order_action": "buy",
"order_contracts": 0.01,
"order_type": "market"
}
Flat / close command:
{
"platform_name": "metatrader5",
"ticker": "EURUSD",
"order_action": "flat",
"order_contracts": 999999
}
More advanced messages can include order_type, price, sl_price, tp_price,
tv_order_id, margin mode, leverage, trailing stop values and destination-specific parameters.
MT5 Private VPS is separate from webhook subscriptions. A VPS is useful only when your automation needs a running MetaTrader terminal. Crypto exchange routes and some broker-platform routes may not need a MetaTrader terminal at all.
| Service | Monthly | Yearly | Includes |
|---|---|---|---|
| MT5 Private VPS Basic | 12 USD | 110 USD | Dedicated RDP environment, preinstalled MT5, one user account. |
| MT5 Private VPS Pro | 20 USDT | 220 USDT | Higher-tier MT5 hosting setup for users who need more runtime capacity. |
The practical question is simple: if the selected route needs MT5 running all the time, use a VPS. If the destination is API-based and does not require MetaTrader, a VPS may not be necessary.
Clone mode is designed for traders who want to send the same signal into several configured webhooks. One route can act as the primary signal receiver, while other configured routes mirror the same instruction into different platforms, brokers or accounts.
Clone mode is one of the strongest reasons to use AlgoWay instead of a single-platform connector. A trader may start with one route, then later expand the same signal to MT5, TradeLocker, cTrader or a crypto exchange without changing the TradingView strategy itself.
AlgoWay lets traders create and test webhook routes before committing to long-term automation. Route status in the dashboard shows whether the webhook is ready, pending, active or cancelled.
AlgoWay is priced for practical webhook automation: create a route, send a signal, execute it on the selected destination, and expand only when your trading workflow needs more destinations. For a single TradingView webhook route, the cost is much lower than many trading automation platforms. For multi-platform trading, Clone mode and route-based pricing make the structure easier to scale.
No. AlgoWay pricing is based on the active route, not on how many TradingView alerts fire during the month.
No. A webhook route can process different tickers when the JSON message includes the correct symbol and the destination supports it.
For many TradingView-to-MT5 users, yes. AlgoWay’s MT5 route pricing starts lower than the public entry pricing of PineConnector-style MT5 connectors.
For a simple webhook route, yes. TradersPost is a larger automation platform, while AlgoWay lets users activate a smaller route-based setup.
Only if your route needs a running MetaTrader terminal. API-based exchange or platform routes may not need a VPS.
Yes, when the routes are configured correctly and Clone mode is used for supported setups.
Yes. Use the trial or monthly plan while testing the route, then switch to yearly billing when the setup is stable.
No. AlgoWay is the automation and execution route. The strategy can come from TradingView, Telegram, MetaTrader or another supported signal source.