AlgoWay Webhook JSON Validator for TradingView, Telegram Signals and MT5 Automation
This static demo checks webhook-style trading payloads before they are sent to an execution platform. It is built for developers and traders working with TradingView webhook alerts, Telegram trading signals, AI-parsed signal workflows, MT5 automation, broker APIs, crypto exchanges and multi-platform trade routing.
Webhook JSON validator
Paste a webhook payload below and validate the basic structure used by AlgoWay-style trade automation. The demo checks required fields, order action, order type, price rules for pending orders, and trade mode.
Example TradingView webhook JSON
{
"symbol": "EURUSD",
"order_action": "buy",
"order_type": "market",
"volume": 0.10,
"trade_type": "hedge",
"sl_price": 1.0800,
"tp_price": 1.0950,
"comment": "TradingView alert via AlgoWay"
}
Limit and stop order payload
For order_type values limit and stop, the payload should include
price as the entry price.
{
"symbol": "XAUUSD",
"order_action": "buy",
"order_type": "limit",
"price": 2320.50,
"volume": 0.10,
"trade_type": "netting",
"sl_price": 2308.00,
"tp_price": 2345.00,
"comment": "Limit order from webhook payload"
}
AlgoWay as a TradersPost alternative
AlgoWay can be used as a TradersPost alternative when the task is not only receiving a TradingView alert, but also validating the JSON payload, routing the trade instruction, keeping execution logs, and sending orders to multiple destinations.
The focus is webhook automation, Telegram signal automation, MT5 automation, broker API routing, crypto exchange execution, and API-style trade payload control.
Website: https://algoway.trade
Docs: https://docs.algoway.trade