Describe your trading strategy. Get production-ready MQL5 code. Monitor performance in real-time.
Learning MQL5, debugging indicator handles, fighting compilation errors.
Describe your strategy. AI generates, compiles, and debugs the code for you.
Long turnaround, miscommunication, paying for every single revision.
Monthly subscription. Unlimited revisions via AI chat. No freelancer needed.
Running an EA blind with no analytics, no trade history, no performance insights.
Live dashboard with 9 KPIs, charts, calendar heatmap, and trade history.
Have a conversation about your trading idea. The AI asks smart questions, looks up indicators, and generates clean multi-file MQL5.
// London Breakout EA v1.0
#include "indicators.mqh"
input int AtrPeriod = 14;
input double RiskReward = 2.0;
input int StartHour = 8;
int OnInit() {
atrHandle = iATR(_Symbol, PERIOD_H1, AtrPeriod);
return INIT_SUCCEEDED;
}
void OnTick() {
if(!IsSessionOpen(StartHour)) return;
double atr = GetATR();
double high = iHigh(_Symbol, PERIOD_H1, 1);
double ask = SymbolInfoDouble(_Symbol, SYMBOL_ASK);
if(ask > high + atr * 0.5) {
double sl = high - atr;
double tp = ask + (ask - sl) * RiskReward;
Trade.Buy(0.1, _Symbol, ask, sl, tp);
}
}Multi-file projects with proper structure. Syntax highlighted, downloadable as .mq5 or compiled .ex5.
Export your trade history from MetaTrader. Get instant analysis with TS Score, KPIs, calendar heatmap, and symbol breakdown — all in your browser.
5-dimension performance radar.
The only platform where you go from idea to live trading without leaving the browser.
Describe strategy, AI generates production-ready MQL5 code
One-click compile — no MetaEditor or local setup needed
TS Score, KPIs, calendar heatmap & full trade history
Pick a plan that fits your trading. Upgrade or cancel anytime.
Yes. The AI uses a 4-stage pipeline with 27 indicators and 10 proven code patterns. Code compiles in MetaEditor with proper error handling and risk management.
No. Describe your strategy in plain language. The AI handles all coding. Compilation errors are auto-fixed.
Any broker with MetaTrader 5. Generated EAs are standard .mq5/.ex5 files compatible with all MT5 platforms.
Your EAs and analytics keep working. You just can't generate new EAs until you have credits again. Your credits are automatically replenished every month with your subscription. If you need more, you can purchase additional credits at any time. Analytics are always free.
Yes. Upload .mq5 or .mqh files. The AI analyzes them and lets you refine or debug through chat.
All data encrypted in transit and at rest. Multi-tenant architecture with organization-level isolation.