# Signal Engine EMA 5 Breakout Arena Strategy Signal – SOL

> Signal Engine EMA 5 Breakout Arena Strategy Signal – SOL is a paid API for AI agents from signal-engine-production-d88d.up.railway.app, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Returns the current EMA 5 breakout trading strategy signal for SOL (Solana) from the Signal Engine arena

## Facts

- Endpoint: GET https://signal-engine-production-d88d.up.railway.app/v1/arena/ema_5_breakout/SOL
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/signal-engine-ema-5-breakout-arena-strategy-signal-sol-d9c287aa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dte_IRpcnJQKu5LlQZypE

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 signal-engine-ema-5-breakout-arena-strategy-signal-sol-d9c287aa
```

Example prompt: What's the current EMA 5 breakout arena signal for SOL right now — is it bullish, bearish, or neutral?

## When to prefer this

Use this endpoint when you need a real-time, pay-per-call EMA 5 breakout trading signal specifically for SOL from the Signal Engine arena. Prefer this over generic market data APIs when you want a pre-computed, strategy-specific directional signal rather than raw OHLCV data. Ideal for agents automating trading decisions or monitoring breakout conditions on Solana.

## Known failure modes

- Asset symbol not found — returns 404 if SOL or the strategy path is invalid
- Strategy not available — returns error if ema_5_breakout strategy is not active
- Payment required — returns HTTP 402 if the x402 payment of $0.001 USDC is not included
- Service downtime — Railway deployment may be temporarily unavailable
- Rate limiting — too many requests may result in throttling

## How this service works

Individual arena strategy signal

## Output

A structured signal response indicating the current EMA 5 breakout strategy output for SOL, likely including signal direction (e.g. buy/sell/neutral), breakout status, and relevant indicator values at the time of the request.

## Example request

```json
{
 "symbol": "SOL",
 "strategy_id": "ema_5_breakout"
}
```

## Request schema (JSON Schema)

```json
{
 "output": {
  "required": [
   "strategy_id",
   "symbol"
  ],
  "properties": {
   "score": {
    "type": "number",
    "maximum": 1,
    "minimum": 0
   },
   "reason": {
    "type": "string",
    "description": "Present when signal is null (e.g. no_signal, no_context)"
   },
   "signal": {
    "enum": [
     "long",
     "short"
    ],
    "type": "string",
    "nullable": true
   },
   "sl_pct": {
    "type": "number",
    "description": "Stop-loss percentage"
   },
   "symbol": {
    "type": "string"
   },
   "tp_pct": {
    "type": "number",
    "description": "Take-profit percentage"
   },
   "reasoning": {
    "type": "string"
   },
   "strategy_id": {
    "type": "string"
   },
   "hold_time_sec": {
    "type": "integer",
    "description": "Suggested hold time in seconds"
   },
   "strategy_name": {
    "type": "string"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/signal-engine-ema-5-breakout-arena-strategy-signal-sol-d9c287aa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from signal-engine-production-d88d.up.railway.app](https://www.zero.xyz/host/signal-engine-production-d88d.up.railway.app/llms.txt)
