# SignalFuse EMA-5 Breakout Strategy Signal

> SignalFuse EMA-5 Breakout Strategy Signal is a paid API for AI agents from api.signalfuse.co, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns a real-time long/short trading signal for a given symbol using the EMA-5 breakout strategy, with score, stop-loss, take-profit, and suggested hold time.

## Facts

- Endpoint: GET https://api.signalfuse.co/v1/arena/ema_5_breakout/BTC
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/signalfuse-ema-5-breakout-strategy-signal-123075c5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8_Pgww_8blHGQaonnYSxp

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 signalfuse-ema-5-breakout-strategy-signal-123075c5
```

Example prompt: What's the current EMA-5 breakout signal for BTC? Give me the direction, confidence score, stop-loss, take-profit, and how long I should hold the position.

## When to prefer this

Use this endpoint when you need a focused, single-strategy signal (EMA-5 breakout specifically) for a given crypto symbol, including actionable trade parameters like SL/TP and hold time. Prefer this over the fused signal endpoint when you want to isolate a specific strategy's view rather than a blended consensus signal. Ideal for systematic trading bots that use EMA-5 breakout as a core strategy component.

## Known failure modes

- No active signal — returns null signal with a reason field such as 'no_signal' or 'no_context'
- Invalid or unsupported symbol — may return an error or null signal
- Strategy unavailable or market data stale — signal may be absent
- Payment failure via x402 — request rejected if 0.001 USDC not provided
- Rate limiting — too many calls in a short window may be rejected

## How this service works

Individual arena strategy signal

## Output

Returns a JSON object containing: the signal direction ('long' or 'short', nullable if no signal), a confidence score (0–1), stop-loss percentage (sl_pct), take-profit percentage (tp_pct), suggested hold time in seconds (hold_time_sec), a reasoning string explaining the signal, and the strategy name and ID. If no signal is active, returns a 'reason' field explaining why (e.g. 'no_signal').

## 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"
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "score": 0.82,
  "signal": "long",
  "sl_pct": 0.008,
  "symbol": "BTC",
  "tp_pct": 0.015,
  "reasoning": "Bollinger band squeeze with volume expansion",
  "strategy_id": "vwap_reversion",
  "hold_time_sec": 300,
  "strategy_name": "VWAP Reversion"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/signalfuse-ema-5-breakout-strategy-signal-123075c5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.signalfuse.co](https://www.zero.xyz/host/api.signalfuse.co/llms.txt)
