50W Moving Average API
Bitcoin's position relative to 50-week moving average — key medium-term trend baseline for regime classification.
https://api.hunchmachine.com/webhook/indicators?indicator=50wma&api_key=YOUR_API_KEYDescription
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
valueCurrent value of the 50-week moving average.
latest_priceMost recent BTC market price.
regimeWhether price is above or below the 50W MA.
weeks_in_regimeNumber of consecutive weeks price has stayed in that regime.
slope_stateQualitative descriptor of the MA slope (rising_fast, flat, falling).
slope_3w_pctRate of change of the 50W MA over the last 3 weeks (in %).
trendGeneral directional classification (bullish, bearish, or neutral).
momentum_stateQualitative measure of whether the slope is accelerating or decelerating.
is_confirmed_bull / is_confirmed_bearBoolean flags that indicate a confirmed trend regime, defined as at least two consecutive weekly closes above (bull) or below (bear) the 50W MA.
summaryNatural-language interpretation combining levels, slope, and regime status.
timestampUTC 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.