Setup guide

1. Create an account

Sign up to get a license key and a unique webhook URL.

2. Install the Expert Advisor

  1. Download TV2MT5Bridge.ex5 from the dashboard.
  2. Copy it into MQL5/Experts. No compile step — drop the EX5 in and refresh Navigator.
  3. In MT5: Tools → Options → Expert Advisors → allow WebRequest for your PineConnector domain (the same URL as the app).
  4. Attach the EA to any chart. Paste the dashboard license key into InpLicenseKey and set InpApiBaseUrl.

3. TradingView alert

Create an alert, enable Webhook URL, paste yours from the dashboard, and put this in the message:

{
  "symbol": "{{ticker}}",
  "action": "buy",
  "qty": 0.1,
  "sl": 50,
  "tp": 100,
  "strategy_id": "my_strategy_1"
}

action accepts buy, sell, close, closelong, closeshort. sl / tp are distances in pips. Use sl_price / tp_price for absolute prices.

4. Confirm symbol mapping

After the EA uploads Market Watch, open Symbol mapping and confirm auto-matches. Export/import CSV if you run several accounts.