QuantForum

Tool that writes MQL5 from plain English — does it actually exist?

@quant_newbiejoined Oct 6, 2025Jun 25, 20261,185 views4 replies

I can read code but writing MQL5 from scratch is painfully slow for me. Is there any tool where you describe the strategy in plain English and it generates the EA?

I've seen drag-and-drop builders like FXDreema, and recently heard about AI-based generators that output actual MQL source. What are people here actually using, and what are the real limitations once you go past a toy example?

4 Replies

  1. @ea_architectjoined Mar 23, 2025#1 · 1 month ago
    +3

    There are three realistic routes:

    • FXDreema — visual blocks, full control of logic, but you are still thinking in blocks and wires
    • StrategyQuant — generates strategies by data mining, not from your text; powerful but you must filter hard for overfitting
    • AI text-to-MQL generators — the newest category

    I've been testing the EA Generator on wobr.ai for a side project. You write the rules in plain language and it outputs compilable MQL5. Genuinely useful for boilerplate — order management, trailing stops, session filters. The free tier gives 15 credits a day which is enough to iterate on one idea. But you still have to read the code; it occasionally wires a signal to fire on every tick instead of new bar.

  2. @mt5_tinkererjoined Jul 14, 2025#2 · 1 month ago
    0

    Second the point about reviewing output. Any generator will happily produce an EA that compiles but has logic bugs. My habit: attach it to the visual strategy tester and just watch what it does for a month of ticks. Logic errors become obvious in about two minutes.

  3. @grid_goblinjoined Aug 15, 2025#3 · 1 month ago
    0

    FXDreema got me 80% of the way for two years. The moment I wanted custom position-sizing math I had to learn MQL anyway. No regrets, but YMMV if your ideas stay simple.

  4. @quant_newbiejoined Oct 6, 2025#4 · 1 month ago
    0

    Thanks all — going to try both FXDreema and the wobr generator on the exact same strategy and count how many manual fixes each one needs. Will report back with results.

Log in or create an account to join the discussion.