TradeLab-MCP
Quantitative research MCP server that lets AI define strategies and uses MetaTrader 5's official Strategy Tester to execute backtests, managing experiments and results via tools like run_backtest, get_run, and compare_runs.
README
TradeLab-MCP
Servidor MCP de pesquisa quantitativa. A IA define a estratégia. O Strategy Tester do MetaTrader 5 executa o backtest.
IA (Codex / GPT / Grok / Gemini / Claude)
│ MCP
▼
Trading Research MCP
│
▼
terminal64.exe → Strategy Tester oficial → runs/<run_id>/
Fork de PHUICMT/mcp-mt5 (MIT). Não reimplementa o tester em Python.
Princípio
O MT5 é a autoridade para ordens, fills, ticks, spread, SL/TP, margem, comissões e P&L.
Python só organiza experimentos (run_id, manifest, hashes, parser, estatísticas derivadas).
Cada backtest gera um identificador único. Nada é recuperado pelo “arquivo mais recente”.
runs/20260817_073412_a8f231/
tester.ini
strategy.mq5
strategy.ex5
report.htm
tester.log
trades.csv
metrics.json
manifest.json
Ferramentas MCP (V1)
| Ferramenta | Função |
|---|---|
health |
MT5, MetaEditor, terminal, data dir, Experts, Tester, build |
compile |
Compila .mq5 e devolve hashes |
run_backtest |
Tester oficial → run_id + métricas + artifacts |
run_batch |
Mesma estratégia, vários ativos, sequencial |
get_run |
Recupera um experimento pelo run_id |
get_trades |
Trades normalizados daquele run_id |
compare_runs |
Diff de métricas entre runs |
walk_forward |
Janelas IS/OOS, cada uma um backtest oficial |
smoke_test |
Compile + tester curto (símbolo/período/modelo/data configuráveis) |
ea_capabilities |
Menu compacto de capacidades e defaults para EAs |
ea_registry |
Consulta estratégia equivalente/semelhante sem carregar todos os fontes |
plan_ea_creation |
Fluxo obrigatório de decisões antes de gerar ou alterar EA |
validate_ea_standard |
Validação estrutural do padrão TradeLab |
refresh_ea_registry |
Atualiza catálogo estruturado, hashes e resumo humano |
Instalação
Windows + MetaTrader 5 + Python 3.10+.
cd C:\Users\caioa\TradeLab-MCP
python -m pip install -e ".[dev]"
Cliente MCP:
{
"mcpServers": {
"tradelab": {
"command": "tradelab-mcp",
"env": {
"MT5_INSTALL": "C:\\Program Files\\MetaTrader 5",
"TRADE_LAB_ROOT": "C:\\Users\\caioa\\TradeLab-MCP\\research"
}
}
}
}
Variáveis: MT5_INSTALL, MT5_DATA, MT5_TERMINAL_HASH, TRADE_LAB_ROOT.
Exemplo
Compile este EA e faça um backtest de PETR4 D1,
entre 2015 e 2025, usando real ticks.
O agente chama run_backtest(strategy="experts/RSI2.mq5", symbol="PETR4", timeframe="D1", from_date="2015.01.01", to_date="2025.08.01", model=4) e recebe:
{
"run_id": "20260817_073412_a8f231",
"status": "completed",
"symbol": "PETR4",
"period": "D1",
"model": "real_ticks",
"metrics": {
"total_trades": 134,
"net_profit": 18342.21,
"profit_factor": 1.48
}
}
get_run("20260817_073412_a8f231") devolve exatamente aquele experimento.
Onde os EAs vivem no MT5
O terminal fica aberto entre testes. O MCP não usa mais ShutdownTerminal=1: cada run espera o report.htm daquele run_id. Só feche o MT5 se o /config for ignorado (instância travada).
Todo EA de teste automático é publicado em:
<MQL5>\Experts\TradeLab MCP\
Neste PC isso resolve para:
C:\Users\caioa\AppData\Roaming\MetaQuotes\Terminal\D0E8209F77C8CF37AD8BF550E51FF075\MQL5\Experts\TradeLab MCP
No Strategy Tester o expert aparece como TradeLab MCP\RSI2. A pasta é sempre relativa ao terminal ativo (layout.experts_dir), não a um hash fixo.
O fonte no git continua em experts/. O MCP copia fonte + .ex5 + includes locais para a pasta do terminal.
O padrão para novos EAs está formalizado no include e no template compartilhados:
- TradeLab EA Standard — documentação completa e migração
- Contexto compacto para agentes — regras essenciais de geração
EA de aceitação
experts/RSI2.mq5
- RSI(2)
- compra se RSI < 10
- sai se RSI > 70
- uma posição
- sem otimização
O teste de aceitação nº 1 é: o mesmo EA / ativo / datas / inputs / capital / model no Strategy Tester manual e via MCP devem produzir as mesmas métricas e os mesmos trades.
Testes
pytest
Testes de integração (Windows + MT5 real):
$env:TRADE_LAB_INTEGRATION = "1"
$env:TRADE_LAB_SYMBOL = "EURUSD"
pytest tests/test_integration_mt5.py -v
Prioridade
reprodutibilidade > confiabilidade > simplicidade > velocidade > funcionalidades
V1 é sequencial (lock mt5.lock na data directory). Sem backtester Python paralelo. Sem parser .opt como fonte oficial.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.