# AlphaPulse MQL5 Expert Advisor Discovery & Vetting

> AlphaPulse MQL5 Expert Advisor Discovery & Vetting is a paid API for AI agents from alphapulse.theaslangroupllc.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Discovers and ranks Expert Advisors (EAs) on the MQL5 marketplace with live-account performance data, martingale detection, and a structured vetting framework.

## Facts

- Endpoint: GET https://alphapulse.theaslangroupllc.com/api/alpha/ea
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/alphapulse-mql5-expert-advisor-discovery-vetting-5417a7ea
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_m5KqM3-ndYQqeAthYxvTm

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability alphapulse-mql5-expert-advisor-discovery-vetting-5417a7ea
```

Example prompt: Can you pull the top-ranked Expert Advisors on the MQL5 marketplace that have live-account performance data and flag any that use martingale strategies — I only want ones that pass the vetting framework?

## When to prefer this

Use this endpoint when an agent needs to discover, rank, or vet MQL5-specific Expert Advisors with live-account performance verification and martingale detection. Prefer this over generic EA discovery when MQL5 marketplace focus and martingale screening are specifically required.

## Known failure modes

- MQL5 marketplace data unavailable or rate-limited — returns empty or partial results
- No EAs match the specified filter criteria — returns empty list
- Invalid query parameters — returns 400 error
- Payment not confirmed — returns 402 payment required
- Upstream data latency causes stale performance rankings

## How this service works

Expert Advisor discovery on the MQL5 marketplace — live-account performance ranking, martingale detection and a vetting framework. For algorithmic trading agents.

## Output

A ranked list of MQL5 Expert Advisors with live-account performance metrics, martingale detection flags indicating whether each EA uses martingale-style money management, and vetting scores or framework assessments to help evaluate suitability for live deployment.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "lang": {
       "type": "string",
       "description": "en | de | fr | es | zh | ar | ru"
      },
      "platform": {
       "type": "string",
       "description": "MT4 | MT5 | cTrader"
      },
      "strategy": {
       "type": "string",
       "description": "scalping | grid | martingale | trend | mean-reversion"
      },
      "instrument": {
       "type": "string",
       "description": "forex | gold | indices"
      },
      "max_drawdown": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "top_eas": [
   {
    "name": "FX Trend Master v3",
    "platform": "MT5",
    "broker_id": "ic_markets",
    "evidence_type": "live_account",
    "reported_stats": {
     "reported_return_pct": "42.1%",
     "reported_max_drawdown_pct": "18.4%"
    },
    "martingale_risk": false
   }
  ],
  "instrument": "forex"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/alphapulse-mql5-expert-advisor-discovery-vetting-5417a7ea/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from alphapulse.theaslangroupllc.com](https://www.zero.xyz/host/alphapulse.theaslangroupllc.com/llms.txt)
