# SignalFuse VWAP Reversion Strategy Signal for ETH

> SignalFuse VWAP Reversion 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-14).

Returns a VWAP reversion trading signal (long/short/neutral) with take-profit, stop-loss percentages, confidence score, and reasoning for ETH

## Facts

- Endpoint: GET https://api.signalfuse.co/v1/arena/vwap_reversion/ETH
- 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/api-signalfuse-co-b85be029
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4GPpDPZAoss9yyHumoCDE

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-b85be029
```

Example prompt: What's the current VWAP reversion signal for ETH — give me the direction, confidence score, take-profit and stop-loss percentages, and how long I should hold the trade.

## When to prefer this

Use this endpoint when you need a fast, pre-computed VWAP reversion signal specifically for ETH, including directional bias, risk parameters (TP/SL), and a hold time — ideal for algo trading agents that need a ready-to-act signal with interpretable reasoning rather than raw price data.

## Known failure modes

- Symbol not supported — endpoint is ETH-specific, other symbols may return 404 or error
- Stale signal if underlying market data feed is delayed
- Service unavailable if provider infrastructure is down (5xx)
- Payment required error (402) if x402 micropayment is not included
- Low confidence score during low-volatility or ambiguous market regimes

## How this service works

Individual arena strategy signal

## Output

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

## Example request

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

## 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-b85be029/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)
