# SuVerse MACD Technical Indicator

> SuVerse MACD Technical Indicator is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Computes MACD (12/26/9) with signal line, histogram, crossover detection, and trend strength for any Binance spot trading pair and timeframe

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-ta-macd
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/proxy-suverse-io-8a225d4c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8Lss3aEnR1XIv5va0eMmY

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 proxy-suverse-io-8a225d4c -d '<json body>'
```

Example prompt: Run a MACD 12/26/9 analysis on the BTC/USDT pair using the 1-hour timeframe and tell me if there's been a bullish or bearish crossover in the last 5 candles and what the current trend strength looks like.

## When to prefer this

Use this endpoint when an AI trading agent needs real-time MACD momentum and crossover signals for any Binance spot pair. Prefer this over general-purpose charting APIs when you specifically need MACD 12/26/9 with crossover detection and trend strength already computed, avoiding the need to calculate the indicator yourself from raw OHLCV data.

## Known failure modes

- Invalid or unsupported Binance spot pair symbol returns error
- Unsupported or malformed timeframe value returns error
- Binance data source unavailable causes fetch failure
- Insufficient historical data for the pair/timeframe combination
- Payment failure via x402 protocol blocks request

## How this service works

MACD 12-26-9 with signal line and histogram on any Binance spot pair and timeframe. Current MACD value, signal, histogram, bullish/bearish crossover within last 5 periods, trend strength. AI agent trend reversal detector, momentum confirmation, divergence finder, TA API.

## Output

Returns the current MACD line value, signal line value, histogram value, a bullish or bearish crossover flag (if one occurred within the last 5 periods), and a trend strength indicator for the requested Binance spot pair and timeframe.

## Example request

```json
{
 "symbol": "BTCUSDT",
 "timeframe": "1h",
 "lookback_candles": 5
}
```

## 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": {
     "properties": {}
    },
    "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"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/proxy-suverse-io-8a225d4c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
