Technical notes about using AlgoWay MT5 VPS for MetaTrader 5, RDP access, remote execution and continuous trading automation.
Sade Olutola
tumblr dot com
Noah Kahan
No title available
Not today Justin

if i look back, i am lost

oozey mess
No title available

tannertan36
Keni
No title available

titsay
Show & Tell
Aqua Utopia|海の底で記憶を紡ぐ
Misplaced Lens Cap

izzy's playlists!
Mike Driver
macklin celebrini has autism
todays bird
2025 on Tumblr: Trends That Defined the Year

seen from Chile
seen from Venezuela

seen from Malaysia
seen from South Africa
seen from Germany
seen from United States
seen from Türkiye

seen from United States
seen from United States

seen from France

seen from United States
seen from Japan

seen from Thailand
seen from Malaysia
seen from United States

seen from Spain
seen from Spain
seen from Malaysia

seen from China

seen from Malaysia
@algoway
Technical notes about using AlgoWay MT5 VPS for MetaTrader 5, RDP access, remote execution and continuous trading automation.
TradingView to TradeLocker Webhook Automation with AlgoWay
TradingView to TradeLocker Webhook Automation with AlgoWay
TradeLocker includes TradingView charts inside its platform, but that is not the same as sending a webhook alert from a separate TradingView account into TradeLocker execution.
For automated execution, the route is:
TradingView strategy or alert → AlgoWay webhook → TradeLocker connection → TradeLocker order execution
AlgoWay receives the TradingView webhook message, validates the JSON payload, applies the route settings and sends the order command to the connected TradeLocker account.
A basic TradingView strategy alert JSON for TradeLocker can look like this:{ "platform_name": "tradelocker", "ticker": "{{ticker}}", "order_action": "{{strategy.market_position}}", "order_contracts": "{{strategy.order.contracts}}", "price": "{{close}}" }
For a manual buy alert, the payload can be simpler:{ "platform_name": "tradelocker", "ticker": "EURUSD", "order_action": "buy", "order_contracts": "0.01", "stop_loss": "50", "take_profit": "100" }
For an exit signal, a flat command can be used:{ "platform_name": "tradelocker", "ticker": "EURUSD", "order_action": "flat", "order_contracts": "0.01" }
The important setup details are the TradeLocker platform URL, email, password, server name and numeric Account ID. The TradingView webhook URL goes into the alert Notifications tab, while the JSON command goes into the alert Message field.
Official AlgoWay website: https://algoway.trade/
Full TradeLocker setup guide: https://docs.algoway.trade/docs/broker-platforms/tradelocker-setup/