tradingview-webhook-json-validator avatar

tradingview-webhook-json-validator

Pricing

Pay per usage

Go to Apify Store
tradingview-webhook-json-validator

tradingview-webhook-json-validator

AlgoWay TradingView Webhook JSON Validator

Pricing

Pay per usage

Rating

0.0

(0)

Developer

AlgoWay

AlgoWay

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

AlgoWay TradingView Webhook JSON Validator

This Apify Actor validates TradingView webhook JSON payloads for AlgoWay-style trade automation.

It is a public technical Actor for traders, developers, automation builders and API users who work with:

  • TradingView webhook alerts
  • Telegram trading signals
  • AI-parsed trading signals
  • MT5 automation
  • broker API routing
  • crypto exchange execution
  • multi-platform trade execution

AlgoWay website: https://algoway.trade
AlgoWay docs: https://docs.algoway.trade
TradersPost alternative page: https://algoway.trade/traderspost-alternative

What this Actor does

This Actor accepts a webhook-style trading payload and checks the basic structure before the payload is sent to a trading execution layer.

It validates:

  • symbol
  • order_action
  • order_type
  • price for limit and stop orders
  • volume
  • trade_type
  • sl_price
  • tp_price

The Actor writes the validation result to the default dataset and to the key-value store under OUTPUT.

Example input

{
"symbol": "EURUSD",
"order_action": "buy",
"order_type": "market",
"volume": 0.1,
"trade_type": "hedge",
"sl_price": 1.08,
"tp_price": 1.095,
"comment": "TradingView alert via AlgoWay"
}

Example input with payload wrapper

{
"payload": {
"symbol": "XAUUSD",
"order_action": "buy",
"order_type": "limit",
"price": 2320.5,
"volume": 0.1,
"trade_type": "netting",
"sl_price": 2308,
"tp_price": 2345,
"comment": "Limit order from webhook payload"
}
}

Example input as JSON string

{
"payload": "{\"symbol\":\"EURUSD\",\"order_action\":\"buy\",\"order_type\":\"market\",\"volume\":0.1,\"trade_type\":\"hedge\"}"
}

Supported order actions

buy
sell
close
flat
closeall

Supported order types

market
limit
stop

For limit and stop orders, the payload should include price as the entry price.

Supported trade types

hedge
netting
opposite
inverse

In AlgoWay logic, netting can be mapped internally to reverse-style handling.

The inverse mode reverses buy and sell logic for the specific payload.

Example output

{
"title": "AlgoWay TradingView Webhook JSON Validator",
"description": "Public Apify Actor for validating TradingView webhook JSON payloads for AlgoWay, MT5 automation, Telegram signals and multi-platform trade execution.",
"payload": {
"symbol": "EURUSD",
"order_action": "buy",
"order_type": "market",
"volume": 0.1,
"trade_type": "hedge",
"sl_price": 1.08,
"tp_price": 1.095,
"comment": "TradingView alert via AlgoWay"
},
"validation": {
"valid": true,
"errors": [],
"warnings": [],
"messages": [
"symbol accepted: EURUSD",
"order_action accepted: buy",
"order_type accepted: market",
"trade_type accepted: hedge"
]
},
"links": {
"website": "https://algoway.trade",
"docs": "https://docs.algoway.trade",
"tradersPostAlternative": "https://algoway.trade/traderspost-alternative"
}
}

Supported signal sources

AlgoWay is designed to work with multiple signal inputs:

  • TradingView webhook alerts
  • Telegram trading signals
  • AI Telegram signal copier workflows
  • TrendSpider webhooks and Strategy Bots
  • MT5 Copier source
  • cTrader Copier source
  • Manual webhook JSON
  • Custom JSON and API-style webhook payloads

Supported execution destinations

AlgoWay can route validated trade instructions to multiple execution destinations:

  • MetaTrader 5 / MT5
  • TradeLocker
  • Match-Trader
  • DXtrade
  • cTrader
  • cTrader Open API
  • FIX API / FIX-based execution
  • Forex.com
  • OANDA
  • Capital.com
  • Alpaca
  • Tradovate
  • ProjectX
  • Binance
  • Bybit
  • OKX
  • BingX
  • MEXC
  • BitMEX
  • BitMart
  • Bitget
  • Coinbase
  • Gate.io

AlgoWay as a TradersPost alternative

AlgoWay can be used as a TradersPost alternative when the goal is to route TradingView webhook alerts beyond a single broker connection.

Instead of only receiving a webhook alert, AlgoWay focuses on:

  • webhook validation
  • JSON payload control
  • trade routing
  • execution logs
  • Telegram signal automation
  • MT5 automation
  • crypto exchange routing
  • multi-platform trade execution

AlgoWay website: https://algoway.trade
AlgoWay docs: https://docs.algoway.trade
TradersPost alternative: https://algoway.trade/traderspost-alternative

Notes

This Actor is a public validation demo.

Real trade execution requires account settings, broker rules, symbol mapping, risk settings, destination-specific validation and an active execution route.