Bitcoin 200 Week Moving Average (200WMA) 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
[
  [
    1782864000000,
    62496.44238461357
  ],
  [
    1782950400000,
    62525.99482646792
  ],
  [
    1783036800000,
    62556.40913950916
  ]
]
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": 1777507200000,
    "y": 76322.09,
    "z": 1.737195513441409
  },
  {
    "x": 1780185600000,
    "y": 73537.83,
    "z": 1.999136235275127
  },
  {
    "x": 1782777600000,
    "y": 58545.95,
    "z": 1.354540793888894
  }
]