v1

latestOpenAPI 3.0.32026-08-04850206.9 KB
Indicators

MACD

Daily MACD (Moving Average Convergence Divergence) — the 12/26 EMA spread with a 9-period signal line and histogram, a staple trend-and-momentum indicator read for signal-line crossovers and zero-line shifts. Returns macd, signal and histogram as decimal strings. No window parameter.

get/api/v1/coins/{slug}/indicators/macd

Query parameters

startstring

ISO date lower bound.

Example:2026-06-01

ISO date lower bound.

endstring

ISO date upper bound.

Example:2026-06-30

ISO date upper bound.

limitinteger

Max rows (1–1000, default 365).

Example:30

Max rows (1–1000, default 365).

Response

Example response

{
  "data": [
    {
      "date": "2026-06-14",
      "macd": "-2811.87686067",
      "signal": "-3364.35539147",
      "histogram": "552.47853080"
    }
  ],
  "meta": {
    "coin": "bitcoin",
    "indicator": "macd",
    "period": null,
    "count": 1
  }
}