← Back to Indicators

50W Moving Average API

Bitcoin's position relative to 50-week moving average — key medium-term trend baseline for regime classification.

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

Description

Tracks Bitcoin's position relative to its 50-week moving average (50W MA) — a key medium-term trend baseline used to assess ongoing market momentum and structural health. Historically, sustained price action above this level has marked strong bull markets, while prolonged periods below have indicated major bear phases or consolidation periods.

What this endpoint provides

A detailed technical breakdown of Bitcoin's trend state relative to its 50-week MA, including price position, slope behavior, and confirmation flags. The endpoint delivers a pre-interpreted summary that automations or AI agents can directly use to assess regime and momentum strength.

Response fields

value

Current value of the 50-week moving average.

latest_price

Most recent BTC market price.

regime

Whether price is above or below the 50W MA.

weeks_in_regime

Number of consecutive weeks price has stayed in that regime.

slope_state

Qualitative descriptor of the MA slope (rising_fast, flat, falling).

slope_3w_pct

Rate of change of the 50W MA over the last 3 weeks (in %).

trend

General directional classification (bullish, bearish, or neutral).

momentum_state

Qualitative measure of whether the slope is accelerating or decelerating.

is_confirmed_bull / is_confirmed_bear

Boolean flags that indicate a confirmed trend regime, defined as at least two consecutive weekly closes above (bull) or below (bear) the 50W MA.

summary

Natural-language interpretation combining levels, slope, and regime status.

timestamp

UTC time when data was last updated.

Output example

[
  {
    "indicator": "ma50w",
    "timestamp": "2025-11-01T02:09:21.910Z",
    "value": 102631.96,
    "latest_price": 111587.1,
    "regime": "above",
    "weeks_in_regime": 107,
    "slope_state": "rising_fast",
    "slope_3w_pct": 1.24,
    "trend": "bullish",
    "momentum_state": "accelerating",
    "is_confirmed_bull": true,
    "is_confirmed_bear": false,
    "summary": "BTC is above the 50-Week MA for 107 weeks. 50W MA: $102632, Price: $111587. 50W MA rising strongly — bull momentum increasing. 🟢 Trend structure supportive of bull markets."
  }
]

Interpretation & Use

The 50W MA is a cornerstone mid-cycle indicator. Above + rising_fast → strong bullish structure and momentum continuation. Below + falling → weakening structure or emerging bear regime. Confirmation logic: a confirmed bull triggers after two or more consecutive weekly closes above the 50W MA; a confirmed bear triggers after two or more weekly closes below. Automations can rely on is_confirmed_bull and is_confirmed_bear for objective regime classification, while summary provides a concise narrative for LLMs or dashboards.