TradeAon · Guides

Guides

Practical, no-nonsense guides on automating your trading — from wiring a TradingView webhook into MetaTrader to copying trades across brokers. Written for real traders, no fluff.

These guides are not FX-only. The symbol resolver ships with 34 canonical instruments mapped across 106 broker spellings — currency pairs, metals (XAUUSD, XAGUSD), energy (WTI, USOIL), index CFDs (NAS100, US30, SP500), crypto (BTCUSD) and agricultural contracts (wheat, corn, soybean) — because the same instrument is named differently at almost every broker. How that resolution works →

Every guide here is free to read and none of them need an account. They describe how this system actually behaves rather than automation in the abstract — the error strings, HTTP status codes and rejection reasons quoted in them are the ones you see yourself when a signal fails, and the timings and limits are taken from the running system, not from a vendor datasheet. When the behaviour changes, the guide that documents it changes with it.

Getting started

If you have never wired an alert into a broker before, start here. The first explains what a webhook actually is in plain terms; the second walks the whole pipeline end to end; the third covers what the Expert Advisor is doing on your own machine once it is running. Between them they cover the vocabulary the rest of these guides assume — payload, secret, license key, magic comment.

Webhooks

Almost every support email we get about "the signal did not arrive" turns out to be one of a handful of causes: a field name that does not match, a volume below the broker's minimum step, or algo trading switched off in the terminal. These guides cover the exact payload TradeAon accepts, the checklist we work through ourselves when a signal goes missing, the full catalogue of rejection messages the endpoint can return, and the two instructions that need more than an action and a volume — pending orders and partial closes.

Copy trading

Copying between two accounts at the same broker is easy. Copying across brokers is where it gets interesting, because the two sides disagree about what an instrument is called and about how much a "lot" is worth. These guides deal with that: the architecture, the volume maths, and the symbol naming — including how a name is resolved against a broker's list step by step.

Platforms

MT4, MT5 and cTrader automate in genuinely different ways — MetaTrader runs your code inside a terminal you have to keep online, while cTrader is authorised over OAuth and executed server-side. That difference changes what infrastructure you need, so it is worth understanding before you commit to a platform.

Infrastructure & risk

Automation is only as reliable as the machine it runs on and the risk rules you gave it. A fast bridge will execute a bad strategy just as reliably as a good one, so these cover keeping the terminal alive, sizing positions sanely, reviewing the results honestly afterwards — and what the delay between a signal and a fill is actually made of.

TradeAon is a technical automation tool, not financial advice. Trading involves substantial risk of loss. You are responsible for your own strategy, risk and capital.