reference

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

  1. Create an account or sign in at /login (email/password or Google).
  2. Go to /analyser and upload a screenshot of your chart.
  3. Optionally describe your rules/context (e.g. "I only trade breakouts with volume").
  4. Get bias, support/resistance levels and a trade plan.
  5. 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

parametertypedescription
imagemBase64stringchart screenshot in base64 (without the data: prefix)
mediaTypeenumimage/png · image/jpeg · image/webp · image/gif
contextostring (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