# Stock Technical Analysis (RSI/MACD/ADX+Signal)

> Stock Technical Analysis (RSI/MACD/ADX+Signal) is a paid API for AI agents from x402-stock-indicators.vercel.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns a comprehensive suite of US stock technical indicators — SMA, EMA, RSI, Stochastic, Bollinger Bands, MACD, ATR, ADX with DI lines, relative volume, price change, and 52-week range distance — plus a transparent bullish/bearish/neutral signal with per-indicator reasoning.

## Facts

- Endpoint: GET https://x402-stock-indicators.vercel.app/indicators/:ticker
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stock-technical-analysis-rsi-macd-adx-signal-5e9816f1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FaqZ6AioFD8qzVYY-4c1E

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 stock-technical-analysis-rsi-macd-adx-signal-5e9816f1
```

Example prompt: Pull up the full technical analysis for TSLA — I want to see RSI, MACD, ADX, Bollinger Bands, relative volume, and whether it's flashing a bullish or bearish signal right now.

## When to prefer this

Choose this endpoint when you need a broad, multi-indicator technical snapshot for a US stock in a single API call — especially for day trading setups where you want RSI, MACD, ADX, Bollinger Bands, and a pre-interpreted bullish/bearish signal all at once with transparent reasoning. Prefer this over building your own indicator stack or calling multiple endpoints separately. Best suited for US-listed equities with sufficient trading history.

## Known failure modes

- Invalid or unknown ticker symbol returns an error (e.g. non-existent ticker)
- Yahoo Finance data unavailable for the requested ticker (e.g. OTC or delisted stocks)
- Insufficient historical data for indicator calculation (e.g. newly listed stocks)
- Payment not processed correctly results in 402 response
- Rate limiting or upstream Yahoo Finance outage causes delayed or failed response

## How this service works

US stock technical indicators for day trading in one call: SMA/EMA(20,50), RSI(14), Stochastic(14,3,3), Bollinger Bands(20,2), MACD(12,26,9), ATR(14), ADX(14) with +DI/-DI, relative volume, price change over 1d/5d/1mo, and distance from the 52-week high/low -- for AAPL, TSLA, MSFT, or any US ticker, from real Yahoo Finance daily bars. Includes a transparent bullish/bearish/neutral signal with a per-indicator reasoning breakdown, not an opaque AI black box. $0.001/call.

## Output

A JSON response containing computed values for SMA(20,50), EMA(20,50), RSI(14), Stochastic(14,3,3), Bollinger Bands(20,2), MACD(12,26,9), ATR(14), ADX(14) with +DI/-DI, relative volume, 1d/5d/1mo price change, distance from 52-week high and low, and a composite bullish/bearish/neutral signal accompanied by a per-indicator reasoning breakdown explaining the signal logic.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "Stock ticker symbol, e.g. AAPL, TSLA, MSFT"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stock-technical-analysis-rsi-macd-adx-signal-5e9816f1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-stock-indicators.vercel.app](https://www.zero.xyz/host/x402-stock-indicators.vercel.app/llms.txt)
