# X402 Quantitative Technical Indicators

> X402 Quantitative Technical Indicators is a paid API for AI agents from x402.feld-feder.at, paid per call via x402, $0.005/call, status down (last checked 2026-09-15).

Computes quantitative technical indicators (RSI, momentum, moving averages, volatility, max drawdown) for a price series, pay-per-request via x402 micropayment.

## Facts

- Endpoint: POST https://x402.feld-feder.at/v1/quant/indicators
- Price: $0.005/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-quantitative-technical-indicators-e2c7fc70
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1ugJyhFjnVRE75rQ5gP-u

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 x402-quantitative-technical-indicators-e2c7fc70 -d '<json body>'
```

Example prompt: Compute technical indicators — RSI, momentum, simple moving averages, max drawdown, and annualized volatility — for these closing prices: [100, 102, 101, 104, 106, 106].

## When to prefer this

Choose this endpoint when you need lightweight, pay-per-use quantitative technical indicator computation without subscribing to a heavyweight financial data platform. It is ideal for AI agents that need on-demand RSI, momentum, SMA, volatility, and drawdown metrics from a user-supplied or agent-gathered price series, and when micropayment via x402/USDC is acceptable. Prefer this over broker APIs or Bloomberg-style feeds when you already have the price data and simply need the derived indicators computed.

## Known failure modes

- Insufficient data points in price series — RSI and moving averages require a minimum number of observations
- Invalid or malformed price array — non-numeric values cause computation failure
- Payment failure or insufficient USDC balance — x402 micropayment rejected, request not processed
- Empty price series submitted — endpoint returns error with no indicators computed
- Network timeout or service unavailability at x402.feld-feder.at

## How this service works

Pay-per-request data tools for AI agents.

## Output

Returns a JSON object containing: RSI value, latest close price, momentum percentage for multiple lookback windows, simple moving averages for multiple windows, annualized volatility percentage, max drawdown percentage, number of observations, and a research disclaimer. All values are deterministic calculations based on the submitted price series.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "title": "QuantIndicatorsRequest",
     "required": [
      "closes"
     ],
     "properties": {
      "closes": {
       "type": "array",
       "items": {
        "type": "number",
        "maximum": 1000000000000,
        "exclusiveMinimum": 0
       },
       "title": "Closes",
       "maxItems": 2000,
       "minItems": 3
      },
      "rsi_period": {
       "type": "integer",
       "title": "Rsi Period",
       "default": 14,
       "maximum": 200,
       "minimum": 2
      },
      "sma_periods": {
       "type": "array",
       "items": {
        "type": "integer"
       },
       "title": "Sma Periods",
       "default": [
        20,
        50
       ],
       "maxItems": 8,
       "minItems": 1
      },
      "momentum_periods": {
       "type": "array",
       "items": {
        "type": "integer"
       },
       "title": "Momentum Periods",
       "default": [
        20,
        60
       ],
       "maxItems": 8,
       "minItems": 1
      }
     },
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "title": "ResponseEnvelope[QuantIndicatorsResult]",
     "required": [
      "data"
     ],
     "properties": {
      "ok": {
       "type": "boolean",
       "const": true,
       "title": "Ok",
       "default": true
      },
      "data": {
       "type": "object",
       "title": "QuantIndicatorsResult",
       "required": [
        "observations",
        "latest_close",
        "simple_moving_averages",
        "rsi",
        "momentum_pct",
        "annualized_volatility_pct",
        "max_drawdown_pct",
        "disclaimer"
       ],
       "properties": {
        "rsi": {
         "type": "number",
         "title": "Rsi"
        },
        "disclaime
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "data": {
   "rsi": 80,
   "disclaimer": "Deterministic research output only; not financial advice or an order signal.",
   "latest_close": 106,
   "momentum_pct": {
    "3": 3.921569,
    "5": 6
   },
   "observations": 6,
   "max_drawdown_pct": 0.980392,
   "simple_moving_averages": {
    "3": 103.666667,
    "5": 102.8
   },
   "annualized_volatility_pct": 31.5
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-quantitative-technical-indicators-e2c7fc70/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.feld-feder.at](https://www.zero.xyz/host/x402.feld-feder.at/llms.txt)
