# market.memoryapi.org Technical Analysis Indicators

> market.memoryapi.org Technical Analysis Indicators is a paid API for AI agents from market.memoryapi.org, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Retrieves technical analysis indicators (RSI, MACD, Bollinger Bands, EMA) for a given stock symbol via Alpha Vantage

## Facts

- Endpoint: GET https://market.memoryapi.org/x402/market/technical
- 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/market-memoryapi-org-d725bc0b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3yWBpGVT7mY1CcphJ-1eF

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 market-memoryapi-org-d725bc0b
```

Example prompt: Can you pull the RSI, MACD, and Bollinger Bands for NVDA right now so I can see if it's overbought or showing a momentum signal?

## When to prefer this

Choose this endpoint when you need classic technical analysis indicators (RSI, MACD, Bollinger Bands, EMA) for equities, especially when integrating with trading strategies, momentum analysis, or overbought/oversold detection. Prefer this over raw price endpoints when you need pre-computed signals rather than raw OHLCV data.

## Known failure modes

- Rate limit exceeded (25 req/day cap) — returns 429 or quota error
- Invalid or unrecognized ticker symbol — returns empty or error response
- Alpha Vantage upstream outage — returns 503 or timeout
- Unsupported indicator type requested — returns error
- Missing required parameters (symbol) — returns 400 bad request

## How this service works

Technical analysis indicators (RSI, MACD, Bollinger Bands, EMA) from Alpha Vantage. Limited to 25 req/day.

## Output

Returns computed technical indicator values (RSI, MACD, Bollinger Bands, EMA) for the requested stock symbol, sourced from Alpha Vantage, enabling traders and agents to assess momentum, trend direction, and volatility.

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "required": [
    "method"
   ],
   "properties": {
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/market-memoryapi-org-d725bc0b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from market.memoryapi.org](https://www.zero.xyz/host/market.memoryapi.org/llms.txt)
