# SignalFuse RSI Reversion Swing Strategy Signal for ETH

> SignalFuse RSI Reversion Swing Strategy Signal for ETH 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-15).

Returns an individual RSI reversion swing trading signal for Ethereum, including directional bias, confidence score, take-profit and stop-loss percentages, and hold time.

## Facts

- Endpoint: GET https://api.signalfuse.co/v1/arena/rsi_reversion_swing/ETH
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-signalfuse-co-c2df0796
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_f4EDVZEeztb_SUtpPqQbe

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 api-signalfuse-co-c2df0796
```

Example prompt: What's the current RSI reversion swing signal for ETH — should I go long or short, and what are the take-profit, stop-loss percentages and recommended hold time?

## When to prefer this

Use this endpoint when you need a focused, single-strategy RSI reversion swing signal specifically for ETH, with structured TP/SL guidance and a hold time recommendation. Prefer this over the fused directional signal endpoint when you want to evaluate a specific strategy in isolation rather than an ensemble signal.

## Known failure modes

- Symbol not supported — returns error if a non-supported asset is requested
- Strategy not available — returns error if the strategy ID does not exist
- Stale market data — signal may be based on slightly delayed data during low-liquidity periods
- Payment failure — x402 micropayment not processed, returns 402 status
- Rate limit exceeded — too many requests in a short window

## How this service works

Individual arena strategy signal

## Output

A JSON object containing: signal direction (e.g. 'long' or 'short'), a confidence score (0–1), take-profit percentage, stop-loss percentage, hold time in seconds, a natural language reasoning string explaining the signal, and the strategy name and ID.

## Example request

```json
{
 "symbol": "ETH",
 "strategy_id": "rsi_reversion_swing"
}
```

## 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/api-signalfuse-co-c2df0796/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)
