Bitcoin 200 Week Moving Average Heatmap

Color heatmap showing percent change of Bitcoin's 200 week moving average

How to call

Request format

GET
curl -X GET "https://newhedge.io/api/v2/metrics/200-week-moving-average-heatmap/METRIC_NAME?api_token=YOUR_TOKEN"
Query params

api_token (required) — 24 character token.

Path params

:metric_name — one of the metric names listed below.

Responses

200 with JSON payload, 401 for missing/invalid token, 404 for missing resources.

Metrics

Each metric is fetched independently. Responses are trimmed samples to show structure.

2 metrics
Metric

Wma 200 Btc

Data used by the Bitcoin 200WMA Heatmap chart.

Endpoint
https://newhedge.io/api/v2/metrics/200-week-moving-average-heatmap/wma_200_btc?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your API token.

Sample response
200 Successful response
[
  [
    1778976000000,
    61070.82565463232
  ],
  [
    1779062400000,
    61109.79270475411
  ],
  [
    1779148800000,
    61147.90941509821
  ]
]
Metric

Wma 200 Btc Monthly Percentage

Data used by the Bitcoin 200WMA Heatmap chart.

Endpoint
https://newhedge.io/api/v2/metrics/200-week-moving-average-heatmap/wma_200_btc_monthly_percentage?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your API token.

Sample response
200 Successful response
[
  {
    "x": 1772236800000,
    "y": 66983.95,
    "z": 0.9189202702160771
  },
  {
    "x": 1774915200000,
    "y": 68166.61,
    "z": 1.396633342946267
  },
  {
    "x": 1777507200000,
    "y": 76322.09,
    "z": 1.737195513441409
  }
]