Governmental Trader
EA Builder · MT4 / MT5
No code · MT4 + MT5 · Prop-safe

Build Expert Advisors
without writing MQL.

Governmental Trader is the visual EA workshop for retail and prop-firm traders. Pick a strategy, dial in your rules, generate clean MQL4 / MQL5 source — and compile it in MetaEditor with one click.

Visual config
Zero MQL
Prop safe
FTMO / MFF
Templates
8 presets
Strategies
6 engines
Export
.mq4 / .mq5
Source
Readable
SovereignTrend.mq5
#property copyright "Governmental Trader"
#property strict

input double InpRiskPercent    = 0.5;
input int    InpStopLossPips   = 35;
input int    InpTakeProfitPips = 70;
input double InpMaxDailyLossPct= 4.0;

void OnTick() {
  if(!CanTrade()) return;
  double fast = iMA(NULL,0,21,0,MODE_EMA,PRICE_CLOSE,1);
  double slow = iMA(NULL,0,55,0,MODE_EMA,PRICE_CLOSE,1);
  if(Cross(fast, slow, UP))
     OpenTrade(OP_BUY, CalcLotSize());
}
How it works

From strategy to live EA in three steps

01

Pick a strategy

Trend, scalping, breakout, grid, martingale or mean reversion — or start from a template.

02

Dial in your rules

Lot size, SL/TP, sessions, daily caps, prop-firm safeguards. Visual, with sane defaults.

03

Download & compile

Export .mq4/.mq5, drop into MetaEditor, press F7, attach to chart. Done.

Ready to deploy your first EA?

Free tier includes the core strategy engine and two starter templates.