# SignalFuse RSI-7 Extremes Arena Signal for SOL

> SignalFuse RSI-7 Extremes Arena 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-14).

Returns a directional trading signal (long/short/null) for Solana (SOL) using the RSI-7 Extremes strategy, with confidence score, stop-loss, take-profit, and suggested hold time.

## Facts

- Endpoint: GET https://api.signalfuse.co/v1/arena/rsi_7_extremes/SOL
- 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-rsi-7-extremes-arena-signal-for-sol-a3e2a2f1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mcoafAwHjEE0OtX6-IXUT

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-7-extremes-arena-signal-for-sol-a3e2a2f1
```

Example prompt: What's the current RSI-7 extremes signal for SOL right now — should I go long or short, and what stop-loss and take-profit percentages does it suggest?

## When to prefer this

Choose this endpoint when you specifically want the RSI-7 Extremes strategy signal for SOL, as opposed to a fused multi-strategy signal. It is ideal for agents that want to compare individual strategy outputs, back-test specific strategy performance, or trade a single well-defined mean-reversion/momentum signal with explicit risk parameters (stop-loss, take-profit, hold time) baked in. Prefer the fused signal endpoint if you want a consensus view across multiple strategies.

## Known failure modes

- No signal generated — signal field is null with a 'reason' field explaining the absence (e.g. 'no_signal' when RSI is not at an extreme)
- Symbol not supported — may return an error if a non-supported ticker is used
- Stale or missing market data — could result in null signal with 'no_context' reason
- Rate limiting or payment failure — x402 payment of $0.001 USDC not processed correctly
- Network timeout — real-time data dependency may cause occasional latency spikes

## How this service works

Individual arena strategy signal

## Output

A JSON object containing: the signal direction ('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 (hold_time_sec), a human-readable reasoning string, the strategy_id ('rsi_7_extremes'), strategy_name, and the symbol ('SOL'). If no signal is generated, a 'reason' field explains why (e.g. 'no_signal', 'no_context').

## Request schema (JSON Schema)

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

## 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-7-extremes-arena-signal-for-sol-a3e2a2f1/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)
