docs
How to use e-trade.ai on the web and how to connect it via MCP to Claude, Claude Code or Codex.
1. on the web
- Create an account or sign in at /login (email/password or Google).
- Go to /analyser and upload a screenshot of your chart.
- Optionally describe your rules/context (e.g. "I only trade breakouts with volume").
- Get bias, support/resistance levels and a trade plan.
- Track your progress at /dashboard.
2. via MCP (Claude, Claude Code, Codex)
e-trade.ai exposes a remote MCP server. Any compatible agent can call the analisar_grafico tool and use the same analysis engine as the site, right inside the conversation.
step 1 — generate your API key
At /settings, click "Generate new API key". Save the value — it's shown only once.
step 2 — configure your MCP client
In the Claude app (claude.ai / desktop) — Settings → Connectors → Add custom connector. That form only has a URL field, so the key goes embedded in the URL:
https://etradeai.eullerlolato.com/api/mcp?key=YOUR_API_KEY_HERE
In Claude Code / Codex, which support custom headers in the config, prefer this form (the key stays out of the URL):
{
"mcpServers": {
"e-trade-ai": {
"url": "https://etradeai.eullerlolato.com/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}step 3 — use it
In the conversation, attach your chart screenshot and ask something like: "Analyze this chart with e-trade.ai". The agent calls the analisar_grafico tool automatically.
tool reference
| parameter | type | description |
|---|---|---|
imagemBase64 | string | chart screenshot in base64 (without the data: prefix) |
mediaType | enum | image/png · image/jpeg · image/webp · image/gif |
contexto | string (optional) | trader rules/context |
Returns: JSON with vies (bias), confianca (confidence), niveis (support/resistance levels), plano (entry zone/stop/targets), justificativa (reasoning) and riscos (risks).
3. security
- Never share your API key — it grants analysis access on your behalf.
- If you suspect a leak, revoke the key at
/settingsand generate a new one. - The key only allows calling the analysis tool — it gives no access to your account or personal data.
- This is not financial advice — it's automated technical analysis.