Install in 5 minutes

Trading Smarter is a two-part system: Indicator = visuals + structure + signals Trader EA (Elite) = execution + risk + exits (reads the indicator via iCustom)

Quick links:

Quick Start

Choose your trading style

Manual Trading

Use this for manual trading and seeing the system on-chart. You'll get full HUD, visuals, and signal buttons.

Requires Elite license — automated trading with full risk management

Elite Automation

Full automation with the Expert Advisor. The EA reads signals from the indicator and executes trades automatically.

Requires Elite license — automated trading with full risk management

Download your files (Member Portal)

01

  • Go to Member Portal → Downloads and download what your plan includes:

    • Indicator: PASTE _YOUR_FILENAME  (compiled .ex5 for users; .mq5 for dev)
    • EA (Elite): Trader_#24_7_vNext_08
    • Optional (recommended): presets / .set files (if you provide them).

Install into MT5 (copy files to the right folders)

02

If you have .ex5 files (most users)

1.MT5 → File → Open Data Folder

2.Copy files to:

3. Restart MT5 (or Navigator→right-click→ Refresh.

  • MQL5/Indicators/ → Indicator .ex5
  • MQL5/Experts/ → EA .ex5

If you have .mq5 source (dev / internal)

1.Put the .mq5 files in the same folders:

2.Open MetaEditor and Compile (creates .ex5)

3. Restart MT5

  • MQL5/Indicators/ → Indicator .mq5
  • MQL5/Experts/ → EA .mq5

Attach the Indicator (Frontend / Visual mode)

03

Use this for manual trading and for seeing the system on-chart.

1.  Open a chart (symbol + timeframe you trade)

2.  Drag the indicator onto the chart

3.   In Inputs, confirm:

Key setting

InpBackendMode = 0.0

• 0.0 = full HUD / visuals / buttons

• 1.0 = EA backend (no HUD/buttons)

If you run multiple charts (recommended discipline)

Set these so your charts don’t “cross-talk”:

InpChannelId = "A"

InpInstanceId = "1"

(You can keep defaults for a single-chart setup.)

Attach the EA (Elite only)

04

Use this only if you have Elite and want automation.

Step A — Enable Algo Trading

MT5 toolbar: Algo Trading = ON (green)
MT5 → Tools → Options → Expert Advisors: enable algorithmic trading

Drag the EA onto the chart

In Inputs, set these correctly:

1) Point the EA to the indicator file (MOST IMPORTANT)

PASTE _YOUR_FILENAME 12_TIERS_v4"

2) Match the EA ↔ Indicator channel/instance

Set the same values you used on the indicator:

InpIndicatorName = "PASTE _YOUR_FILENAME"
InpInstanceId = "1"

3) Make sure trading is enabled

AllowTrading = true

The EA also syncs with the indicator HUD’s Allow-Trading toggle via GlobalVariables, so matching InpChannelId matters.

4) Choose which signal types the EA is allowed to trade

Default recommended (safe):

InpAllowEarlyBOS = true
InpAllowRetestHit = true
InpAllowImmediate = true
InpAllowOBConfirm = false

(turn on only if you actively use OB Confirm)

5) Signal timeframe

InpSignalTF = PERIOD_CURRENT

(recommended)

Only change if you intentionally want the EA to read signals from a different timeframe.

Backend mode (critical): how the EA reads signals

05

Your EA reads the indicator using iCustom() and forwards numeric parameters P1..P8.

Default (recommended) — EA runs the indicator in backend mode automatically

Keep these defaults:

InpNumParams = 1

P1 = 1.0

Why:

In your indicator, the first input is:

InpBackendMode (0.0 visual, 1.0 backend)

So by default your EA launches an internal indicator instance with:

InpBackendMode = 1.0

 (no HUD, faster, made for automation)

(But most users will still attach the indicator in frontend mode to see the setups.)

Licensing setup (if enabled): WebRequest + DLL Imports

06

Both your indicator and EA include website licensing inputs. If licensing is ON, do this once:

A) Paste your license key

In Indicator Inputs:

InpUseWebsiteLicensing = true

InpLicServerBaseURL = "https://api.tradingsmarter.online"
InpLicProductId = "tradingsmarter_vNext"
InpLicKey = "PASTE_YOUR_KEY"

In EA Inputs (same idea):

InpUseWebsiteLicensing = true
InpLicServerBaseURL = "https://api.tradingsmarter.online"
InpLicProductId = "tradingsmarter_vNext"
InpLicKey = "PASTE_YOUR_KEY"

B) Allow WebRequest to you API

MT5 → Tools → Options → Expert Advisors:

Add:

https://api.tradingsmarter.online

"Add URL to Tools → Options → Expert Advisors → Allow WebRequest."

C) Enable DLL imports (required for signed-token verification)

Your code can require DLL imports for signed license verification.

When attaching the Indicator/EA, in the Common tab:

"Enable DLL imports to verify license"

Verify your install (60-second checklist)

07

Open MT5 tabs: Experts + Journal and confirm:

Troubleshooting

Common issues and how to fix them. Click each item to expand.

"EA attached but it does nothing"

Most common causes:

"iCustom failed / Indicator not found"

Fix:

"WebRequest failed… Add URL…"

Fix:

"Enable DLL imports to verify license"

Fix:

"Trading disabled (AllowTrading=false)"

Fix:

"I want to run multiple charts safely"

Use unique IDs:

Next steps

You’re all set! Explore these resources to get the most out of your Trading Smarter system.

How it Works

Learn about the Trading Smarter system architecture and trading methodology

Download Presets

Get optimized preset files and setup wizard for quick configuration

Contact Support

Need help? Our support team is ready to assist you