← Back to Indicators

2Y MA Multiplier API

Compares Bitcoin's current price to its 2-year moving average and 5× multiple — highlights macro accumulation and overheated expansion phases.

Webhook URL
https://api.hunchmachine.com/webhook/indicators?indicator=2y_ma_multiplier&api_key=YOUR_API_KEY

Description

The 2-Year Moving Average Multiplier compares Bitcoin's current price to its long-term 2-year moving average and a 5× multiple of that average. This classic model highlights macro accumulation and overheated expansion phases within Bitcoin's price cycles — offering a clean visual framework for identifying cycle bottoms and tops.

What this endpoint provides

A valuation-based view of Bitcoin's long-term cycle structure. It calculates the 2-year MA (fair-value baseline) and its 5× multiple (historical top threshold), helping automations and dashboards determine whether Bitcoin is trading in undervalued, fair, or overheated territory.

Response fields

value

Ratio between Bitcoin's current price and its 2-year moving average.

ma2y_usd

Current value of the 2-year moving average (USD). Represents the fair-value baseline.

ma2y_x5_usd

Value of the 2-year MA multiplied by 5 — the historical upper bound associated with cycle tops.

price_usd

Latest Bitcoin price (USD).

zone

Simplified categorical label (bottom, neutral, overheat) based on value thresholds.

phase

Descriptive market phase (Bottom, Fair Value / Expansion, Overheat, etc.).

scale

Legend describing the mapping between multiplier values and their respective zones.

summary

Preformatted line summarizing all main data points.

Output example

[
  {
    "indicator": "2y_ma_multiplier",
    "value": 1.29,
    "ma2y_usd": 79820.67,
    "ma2y_x5_usd": 399103.33,
    "price_usd": 102943.99,
    "zone": "neutral",
    "phase": "Fair Value / Expansion",
    "scale": "Bottom <0.8 | Fair 0.8–1.8 | Overheat >1.8",
    "summary": "Price: $102944 | 2Y MA: $79821 | 2Y MA×5: $399103 → Fair Value / Expansion"
  }
]

Interpretation & Use

The 2-Year MA Multiplier is one of Bitcoin's most enduring cycle models: • **< 0.8× MA2Y** → Deep undervaluation — historical accumulation zones. • **0.8–1.8× MA2Y** → Fair value range — sustainable bull expansion. • **> 1.8× MA2Y** → Overheated region — historically near macro tops. Use the ratio, zone, and summary fields to describe where the market sits relative to long-term fair value, or to trigger automation rules (e.g., "reduce exposure when multiplier > 1.8").