Bitcoin MACD

Moving Average Convergence Divergence momentum indicator for Bitcoin

How to call

Request format

GET
curl -X GET "https://newhedge.io/api/v2/metrics/bitcoin-macd/METRIC_NAME?api_token=YOUR_TOKEN"
Query params

api_token (required) — 24 character token.

resolution (optional) — day1 (default), hour12, hour4, hour1, 30mn, 10mn. Finer buckets are served to Advanced and Enterprise accounts; see Resolutions.

before (optional) — exclusive cursor, returns observations older than this timestamp_ms. Finer resolutions only.

limit (optional) — page size for finer resolutions. Default 2500, maximum 5000. Ignored for day1.

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.

3 metrics
Metric

MACD Line

Data used by the Bitcoin MACD chart.

Endpoint
https://newhedge.io/api/v2/metrics/bitcoin-macd/macd_line?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your API token.

Sample response
200 Successful response
[
  [
    1788825600000,
    2907.1016
  ],
  [
    1788912000000,
    2703.2266
  ],
  [
    1788998400000,
    2455.0
  ]
]
Metric

MACD Signal

Data used by the Bitcoin MACD chart.

Endpoint
https://newhedge.io/api/v2/metrics/bitcoin-macd/macd_signal?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your API token.

Sample response
200 Successful response
[
  [
    1788825600000,
    3323.4277
  ],
  [
    1788912000000,
    3211.7725
  ],
  [
    1788998400000,
    3096.7915
  ]
]
Metric

MACD Histogram

Data used by the Bitcoin MACD chart.

Endpoint
https://newhedge.io/api/v2/metrics/bitcoin-macd/macd_histogram?api_token=YOUR_TOKEN

Replace `YOUR_TOKEN` with your API token.

Sample response
200 Successful response
[
  [
    1788825600000,
    -416.32617
  ],
  [
    1788912000000,
    -508.5459
  ],
  [
    1788998400000,
    -641.7915
  ]
]