# SignalFuse RSI Reversion Swing Signal for DOGE

> SignalFuse RSI Reversion Swing Signal for DOGE 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-13).

Returns a directional trading signal (long/short/null) with score, stop-loss, take-profit, and hold time for DOGE using the RSI Reversion Swing strategy

## Facts

- Endpoint: GET https://api.signalfuse.co/v1/arena/rsi_reversion_swing/DOGE
- 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/signalfuse-rsi-reversion-swing-signal-for-doge-1abb2654
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xyAzDr1kK_gm5A6SCtsFF

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-doge-1abb2654
```

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

## When to prefer this

Use this endpoint when you need a fast, pre-computed, strategy-specific RSI reversion swing signal specifically for DOGE with built-in risk parameters (stop-loss, take-profit, hold time). Prefer this over generic price feeds when you need an actionable directional recommendation with a confidence score ready for automated decision-making. It is ideal for AI agents executing or evaluating swing trades on DOGE without needing to compute RSI logic themselves.

## Known failure modes

- No signal generated — returns signal: null with a reason field explaining the absence (e.g. insufficient data or no clear momentum)
- Symbol mismatch — endpoint is hardcoded to DOGE; passing a different symbol may return unexpected results
- Payment failure — x402 micropayment not fulfilled, resulting in 402 Payment Required error
- Rate limiting or service unavailability — upstream data provider outage causes delayed or empty response
- Stale data — if market data feed is lagging, signal may not reflect current price action

## How this service works

Individual arena strategy signal

## Output

A JSON object containing: signal direction ('long', 'short', or null), a confidence score from 0 to 1, stop-loss percentage (sl_pct), take-profit percentage (tp_pct), suggested hold time in seconds, a human-readable reasoning string, the strategy name, strategy ID, and the symbol. If no signal is generated, a reason string 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-reversion-swing-signal-for-doge-1abb2654/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)
