v1

latestOpenAPI 3.0.32026-08-04850206.9 KB
Indicators

ADX (Average Directional Index)

Daily ADX with +DI/−DI — measures trend strength (adx) and direction (the plus_di/minus_di directional indicators). ADX above 25 signals a strong trend regardless of direction; the DI crossover signals which way. Single series, no window parameter.

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

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",
      "adx": 27.3,
      "plus_di": 22.1,
      "minus_di": 15.8
    }
  ],
  "meta": {
    "coin": "bitcoin",
    "indicator": "adx",
    "period": null,
    "count": 1
  }
}