# SignalFuse RSI Reversion Swing Signal for SOL

> SignalFuse RSI Reversion Swing Signal for SOL 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 a long/short trading signal for Solana (SOL) based on the RSI Reversion Swing strategy, including confidence score, stop-loss, take-profit, and suggested hold time.

## Facts

- Endpoint: GET https://api.signalfuse.co/v1/arena/rsi_reversion_swing/SOL
- 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/signalfuse-rsi-reversion-swing-signal-for-sol-73528793
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gydlVw2Se6XM9NLz9JUsu

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-rsi-reversion-swing-signal-for-sol-73528793
```

Example prompt: What's the current RSI reversion swing signal for SOL — is it long or short, what's the confidence score, and what stop-loss and take-profit percentages should I use?

## When to prefer this

Use this endpoint when you need a focused, single-strategy RSI reversion swing signal specifically for SOL with actionable position parameters (stop-loss, take-profit, hold time). Prefer this over a fused signal endpoint when you want to isolate RSI reversion logic rather than a blended multi-strategy view, or when building a strategy comparison pipeline.

## Known failure modes

- Signal is null when RSI conditions are not met — reason field will explain (e.g. 'no_signal')
- Missing or invalid symbol path parameter returns an error
- Stale or insufficient market data may return no_context reason
- Payment (x402) not provided or insufficient results in 402 Payment Required
- Network or upstream data feed outage causes 5xx error

## How this service works

Individual arena strategy signal

## Output

A JSON object containing the directional signal ('long', 'short', or null), a confidence score between 0 and 1, stop-loss percentage (sl_pct), take-profit percentage (tp_pct), suggested hold time in seconds, the strategy name and ID, the symbol (SOL), and a human-readable reasoning string. If no signal is generated, a 'reason' field explains why (e.g. 'no_signal', 'no_context').

## 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-rsi-reversion-swing-signal-for-sol-73528793/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)
