# RSI Reversion Swing Signal for BTC

> RSI Reversion Swing Signal for BTC is a paid API for AI agents from signal-engine-production-d88d.up.railway.app, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15, last successful call 2026-06-02).

Returns a trading signal (long/short/neutral) with score, take-profit, stop-loss, and reasoning for the RSI Reversion Swing strategy on BTC

## Facts

- Endpoint: GET https://signal-engine-production-d88d.up.railway.app/v1/arena/rsi_reversion_swing/BTC
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Last successful call: 2026-06-02
- Success rate: 100% of calls made through Zero
- Activations on Zero: 2
- Tags: x402
- Canonical page: https://www.zero.xyz/c/rsi-reversion-swing-signal-for-btc-84d3a097
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XOF-iwt6GqZw8SpRO-XQX

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 rsi-reversion-swing-signal-for-btc-84d3a097
```

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

## When to prefer this

Use this endpoint when you need a pre-packaged, scored trading signal for BTC specifically using the RSI Reversion Swing strategy, complete with risk management parameters (TP/SL) and hold time. Prefer this over raw market data APIs when you want an actionable directional recommendation with reasoning rather than raw price or indicator values.

## Known failure modes

- Symbol not supported — returns 404 or error if a non-BTC or unsupported symbol is used
- Strategy not found — if the strategy path is invalid, returns an error
- Service unavailable — Railway deployment may be cold-started, causing timeout on first call
- Stale data — signal may reflect slightly delayed market data depending on upstream feed latency
- Rate limit or payment failure — x402 payment not processed correctly returns 402 or auth error

## How this service works

Individual arena strategy signal

## Output

A JSON object containing: signal direction ('long' or 'short'), a confidence score (0–1), take-profit percentage, stop-loss percentage, estimated hold time in seconds, strategy ID and name, the ticker symbol, and a plain-English reasoning string explaining the signal (e.g. 'Bollinger band squeeze with volume expansion').

## Example request

```json
{}
```

## 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/rsi-reversion-swing-signal-for-btc-84d3a097/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from signal-engine-production-d88d.up.railway.app](https://www.zero.xyz/host/signal-engine-production-d88d.up.railway.app/llms.txt)
