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

> Stock Technical Analysis Indicators (RSI/MACD/ADX+Signal) is a paid API for AI agents from www.x402financialdata.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

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

## Facts

- Endpoint: GET https://www.x402financialdata.com/indicators/:ticker
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stock-technical-analysis-indicators-rsi-macd-adx-signal-fd1d6482
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SEuU7G-CO9wnXRX0H0BuI

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-indicators-rsi-macd-adx-signal-fd1d6482
```

Example prompt: Pull up the full technical analysis for TSLA — I want RSI, MACD, ADX, Bollinger Bands, and the overall bullish or bearish signal with the reasoning behind each indicator.

## When to prefer this

Choose this endpoint when you need a comprehensive, pre-computed technical indicator suite for a US equity in a single API call, especially for day trading decision support. It is preferable over building your own calculations when you want RSI, MACD, ADX, Bollinger Bands, Stochastic, ATR, and relative volume all in one response with an interpretive signal and reasoning — sourced from real Yahoo Finance daily bars — rather than assembling them from raw OHLCV data yourself.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error (e.g. non-US or delisted tickers)
- Insufficient historical data for a newly listed stock may result in incomplete indicator values
- Yahoo Finance data unavailability or rate limiting may cause transient failures
- Incorrect ticker format (e.g. spaces, lowercase not normalized) may return no results

## 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.005/call.

## Output

Returns a structured JSON object containing computed values for SMA(20,50), EMA(20,50), RSI(14), Stochastic(14,3,3), Bollinger Bands(20,2), MACD(12,26,9) with signal and histogram, ATR(14), ADX(14) with +DI and -DI, relative volume, 1-day/5-day/1-month price changes, distance from 52-week high and low, and a top-level bullish/bearish/neutral signal with a per-indicator reasoning breakdown explaining each component's contribution.

## 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-indicators-rsi-macd-adx-signal-fd1d6482/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.x402financialdata.com](https://www.zero.xyz/host/www.x402financialdata.com/llms.txt)
