I built the same strategy in FXDreema, StrategyQuant, and an AI generator — manual fix counts inside
Same strategy, three tools, one weekend: EMA 50/200 cross on EURUSD H1, ATR(14) trailing stop, no trades during red-folder news, 0.5% risk per trade.
I counted every manual intervention needed to get from "generated" to "compiles and behaves correctly in the visual tester":
- FXDreema: 0 compile fixes, 6 logic adjustments. The news filter block alone took 40 minutes to wire correctly.
- StrategyQuant: it is a generator-miner, not a builder — it produced 214 strategies and I rejected 211 as obvious overfits. The 3 survivors needed spread-stress retests. Different tool, different skill.
- AI text-to-MQL (wobr.ai EA Generator): 2 compile fixes, 3 logic fixes. Fastest to a first draft by far, but it wired the entry signal to fire on every tick instead of new bar — the classic bug — and invented a nonexistent MQL5 constant.
Takeaway: none of them remove the need to understand what the EA does. They shift the work from writing code to reviewing it.