Get coin MACD

Professional This endpoint requires the professional plan or higher

Get the Moving Average Convergence Divergence (MACD) for a coin throughout time: the MACD line, its signal line, and the histogram between them. MACD tracks the gap between a fast and a slow exponential moving average of the price, and reads that gap against an average of itself — crossings between the two lines, and the histogram's changes of sign, are read as shifts in momentum.

The lengths are the conventional 12, 26 and 9, and a length counts candles of the interval you request — so interval=day gives the familiar 12/26/9-day MACD, while interval=hour gives an hourly one.

The signal line is an exponential average of the MACD line, not of the price. That is what makes the crossings meaningful: both lines are then in the same units, and macdHistogram is exactly their difference. Because two exponential averages are chained, we read a long run of earlier candles before the first one we return so that both have converged by the time you see them.

https://api.coinranking.com/v2/indicators/:uuid/macd

Path parameters

ParameterDescription
uuid StringUUID of the coin you want to request the MACD for.

Query parameters

Parameter Description
timePeriod (optional) String

The time period for which the MACD data is returned. The number of data points and the default interval are determined by the time period.

Default value: 24h
Allowed values:
1h 3h 12h 24h 7d 30d 3m 1y 3y 5y 10y all

Example:
https://api.coinranking.com/v2/indicators/Qwsogvtv82FCd/macd?timePeriod=7d
interval (optional) String

The interval determines the granularity of each data point, and therefore what one MACD length means. If not provided, a default interval is used based on the selected timePeriod. Only certain intervals are available per timePeriod — see the table below.


timePeriod Available intervals (default in bold)
1hminute, 5minutes
3hminute, 5minutes, hour
12hminute, 5minutes, hour
24hminute, 5minutes, hour, 8hours
7dhour, 8hours, day
30dhour, 8hours, day, week
3mhour, 8hours, day, week, month
1yday, week, month
3yday, week, month
5yday, week, month
10yday, week, month
allday, week, month

Example:
https://api.coinranking.com/v2/indicators/Qwsogvtv82FCd/macd?timePeriod=7d&interval=day
referenceCurrencyUuid (optional) String

UUID of coin (either fiat or crypto), in whose terms the price is measured before the MACD is calculated. Defaults to US Dollar, but you can use any coin. You can find UUIDs for reference currencies in any coin endpoint, including a convenient dedicated reference currency endpoint

All three values are expressed in the reference currency, and the conversion happens before the calculation rather than after — so a MACD priced in Bitcoin is a genuinely different series from one priced in US Dollars, not the same numbers rescaled.

Default value: yhjMzLPhuIDl

Example:
https://api.coinranking.com/v2/indicators/Qwsogvtv82FCd/macd?referenceCurrencyUuid=5k-_VTxqtCEI

Code examples

Response

json
HTTP/1.1 200 OK { "status": "success", "data": [ { "startingAt": 1774936800, "macd": "412.7719284471", "macdSignal": "355.1042938810", "macdHistogram": "57.6676345661" }, { "startingAt": 1774933200, "macd": "398.2214005593", "macdSignal": "340.7873602395", "macdHistogram": "57.4340403198" } ] }

Response fields

PropertyDescription
status String

Status of the request

Allowed values:
success
data Object[]

List of MACD data points, newest first

data.startingAt Number

An Epoch startingAt in seconds marking the start of the time period.

data.macd String

The MACD line in the reference currency: the 12-candle exponential moving average minus the 26-candle one, over candles of the requested interval. Positive means the fast average is above the slow one.

data.macdSignal String/null

The signal line: a 9-candle exponential moving average of macd itself, not of the price. null for candles where that window has not filled, which is the case for a short stretch at the oldest end of the returned range.

data.macdHistogram String/null

macd minus macdSignal. Crosses zero at exactly the candle where the two lines cross, which is what makes it a momentum reading rather than a second copy of the line. null alongside macdSignal and never on its own.

Error response

json
HTTP/1.1 404 Not Found { "status": "fail", "type": "COIN_NOT_FOUND", "message": "Coin not found" }

Error responses