Skip to content
Companion page · last checked 23 September 2026

Book resources: the bridge list, the Python listener, the templates

Everything the book could not print because it changes: which bridges exist right now, the free webhook-to-MT5 listener from Chapter 10, and every template from Appendix D. For readers of From Manual Trader to Automated Trader.

Chapter 10, kept current

Bridge options right now

Four ways to turn a TradingView alert into an MT5 order. The book's rule still applies: a bridge that cannot check a secret, size by risk percentage, enforce a daily loss limit and write a log is not for real money. No affiliate links on this page.

Hosted service + EA

PineConnector

Good for: First build. Most-used hosted bridge; secret (licence ID) in every message, risk % sizing, daily loss limit, multi-symbol from one chart.

Watch out: Monthly fee. Message format is its own: change the labels in the EDIT HERE block of the book script (Chapter 10, Part E).

Visit

Hosted service + EA

TradingView-to-MT5 EA bridges (search "tradingview mt5 webhook EA")

Good for: Several smaller services offer the same shape as above, sometimes cheaper. Apply the Chapter 10 checklist: secret, % risk, daily loss fence, logs, a trial.

Watch out: If a service cannot do the secret, the % sizing and a daily loss limit, do not use it for real money.

Runs on your own VPS

Python listener (free, this page)

Good for: Full control, no middleman, no monthly fee. Exactly what the book describes as the Python route. Needs Python installed on the Windows VPS and ten minutes of setup.

Watch out: You maintain it. Use plain http only on demo; put a certificate in front (Caddy) before real money.

Download

Someone runs option 3 for you

Done-for-you (QuantNova or any provider)

Good for: You want the result, not the project. Ask the eight questions from Chapter 16 first, every time.

Watch out: A flat fee, your own broker account, visible fences and readable logs, or walk away.

Ask us
The Python route, in one file

tv-mt5-listener.py

A single Python file that runs on your Windows VPS next to MetaTrader 5. It does the nine jobs listed at the end of Chapter 8: receives the alert, checks the secret, reads the message, maps the symbol, checks the fences from your risk sheet against the live account, sizes the trade from the live balance (rounded down, skip if zero), closes an opposite position on a reverse, sends the order with stop and target, and logs every decision. Optional Telegram messages and a maximum message age so a late alert is dropped, not placed.

  • · Setup steps are at the top of the file. About ten minutes on a VPS that already has MT5.
  • · Edit one block: secret, symbol map, the five fences, magic number.
  • · Run it on demo and put it through all 22 tests in Chapter 11 before real money.
  • · MIT licence. Read it, change it, keep a copy.

Get told when this page changes

Bridges come and go and the script will get fixes. One email per change, nothing else.

Appendix D

The templates, ready to print

All eight are in the book's Appendix D and in the free sample. Fill them in for your own strategy; the example values are the running example from Chapter 4.

Rule sheet (Chapter 4)

Twelve headings. If a line is blank, the strategy is not finished.

Risk sheet (Chapter 6)

Risk per trade, the five fences, the kill switch, who may change it and when.

Alert message templates (Chapter 7)

The one-line strategy alert, plus indicator-alert templates for long, short and close.

Book strategy script (Appendix D)

20/50 EMA cross, 1.5 × ATR stop, 2:1 target, session filter, alert message builder. Pine Script v6.

Demo test plan (Chapter 11)

All 22 tests: normal operation, fences, deliberate failures.

Go-live checklist (Chapter 11)

Thirteen yes/no items. Every one is a yes, or you are not live yet.

Daily check and weekly review (Chapter 13)

Five questions, five minutes. Six questions, fifteen minutes.

Troubleshooting quick reference (Chapter 14)

I see… / look at… / usually… for the nine common faults.

Questions

Because products change faster than print. The book teaches the sequence and the settings every bridge has; this page keeps the current names. Check the date at the top before relying on it.