← Back to Indicators

RSI 14 Trend API

14-period RSI on weekly timeframe with trend, momentum state, and zone classification — detects momentum regime shifts.

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

Description

Tracks the 14-period Relative Strength Index (RSI) on a weekly timeframe — one of the most widely used momentum oscillators in market analysis. This version goes beyond the raw RSI value by interpreting its trend, rate of change, and momentum state, allowing automations and AI agents to detect when strength or weakness is building beneath the surface.

What this endpoint provides

A detailed snapshot of RSI level, directional movement, and momentum characteristics across multiple timeframes. It helps identify shifts between bullish and bearish conditions and captures the speed of those transitions.

Response fields

value

Latest RSI14 reading.

rsi_zone

Qualitative classification of the RSI level (bullish, neutral, bearish), based on value thresholds (e.g., >60 bullish, <40 bearish).

trend

Current directional bias (up, down, or flat).

momentum_state

Describes the intensity or speed of the current RSI trend (accelerating, decelerating).

delta_7d, delta_30d, delta_60d

Change in RSI over 7, 30, and 60 days — capturing short- to medium-term shifts in momentum.

streak_below_60_weeks

Number of consecutive weeks RSI has remained below the 60 level (a structural marker of bearish phases).

summary

Natural-language summary combining the RSI level, trend, deltas, and interpretation.

timestamp

UTC timestamp of the latest reading.

Output example

[
  {
    "indicator": "rsi14_trend",
    "timestamp": "2025-11-01T01:58:00.865Z",
    "value": 44.9,
    "rsi_zone": "bearish",
    "trend": "down",
    "momentum_state": "accelerating",
    "delta_7d": 3.37,
    "delta_30d": -8.19,
    "delta_60d": 0.02,
    "streak_below_60_weeks": 22,
    "summary": "Weekly RSI14 44.90 (bearish); trend: down; Δ7d 3.37, Δ30d -8.19, Δ60d 0.02; momentum: accelerating; 22w <60."
  }
]

Interpretation & Use

The RSI14 measures market momentum and internal strength. Readings below 40 and persistent streak_below_60_weeks often signal sustained bearish momentum. Rising RSI or momentum_state: accelerating may indicate early recovery phases or short-term rebounds. Falling RSI in a bearish zone confirms weakening trend continuation. Automations can directly use the rsi_zone or trend fields to detect momentum regime shifts, while LLMs can parse the summary to interpret whether underlying market energy is strengthening or fading.