# OpenClaw Control Signal

> OpenClaw Control Signal is a paid API for AI agents from dev.gavedu.com, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-14).

Returns a deterministic crypto trading signal (RSI, regime classification, go/no-go gate, and expected return) for a given product like ETH-USD, paid per call via x402 micropayment

## Facts

- Endpoint: GET https://dev.gavedu.com/x402/signal
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/openclaw-control-signal-36969d26
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HtN2V_GdaWCK3iLu-gQAD

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 openclaw-control-signal-36969d26
```

Example prompt: What's the current OpenClaw trading signal for ETH-USD — is it a GO or NO-GO, and what regime and expected return are we looking at right now?

## When to prefer this

Use this endpoint when you need a deterministic, quantitative trading signal for a crypto pair (especially ETH-USD) that combines on-chain data with model-based regime and RSI analysis, and you want a clear binary gate decision without building your own signal pipeline. It is especially suited for agents that need to gate trade execution on a trusted signal and can pay per call without a subscription.

## Known failure modes

- Payment not attached or insufficient USDC — returns HTTP 402 Payment Required
- Invalid or missing product symbol — may return empty or error response
- Network timeout on on-chain data fetch — returns 5xx error
- Malformed query properties parameter — schema validation failure

## How this service works

Deterministic on-chain + model data, paid per call via x402 (USDC on Base, eip155:8453). No signup. Pay-to: 0x01B34D04B658990fd1F22cC4DddEabA10349B1C4.

## Output

A JSON object containing: RSI value (float), gate string ('GO' or 'NO-GO'), regime string (e.g. 'CHOP', 'TREND'), product symbol, expected return percentage (float), and provenance object breaking down strategy lanes (e.g. meanrev) with closes count and win rate.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "rsi": 48.2,
  "gate": "NO-GO",
  "regime": "CHOP",
  "product": "ETH-USD",
  "provenance": {
   "lanes": {
    "meanrev": {
     "closes": 40,
     "winRate": 55
    }
   }
  },
  "expectedReturnPct": -0.12
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/openclaw-control-signal-36969d26/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from dev.gavedu.com](https://www.zero.xyz/host/dev.gavedu.com/llms.txt)
