jypi
  • Explore
ChatWays to LearnMind mapAbout

jypi

  • About Us
  • Our Mission
  • Team
  • Careers

Resources

  • Ways to Learn
  • Mind map
  • Blog
  • Help Center
  • Community Guidelines
  • Contributor Guide

Legal

  • Terms of Service
  • Privacy Policy
  • Cookie Policy
  • Content Policy

Connect

  • Twitter
  • Discord
  • Instagram
  • Contact Us
jypi

© 2026 jypi. All rights reserved.

Advanced US Stock Market Equity
Chapters

1Introduction to Advanced Equity Markets

2Advanced Financial Statement Analysis

3Equity Valuation Models

4Market Dynamics and Trends

5Technical Analysis for Equity Markets

Chart PatternsMoving AveragesRelative Strength Index (RSI)Bollinger BandsVolume AnalysisTrend LinesFibonacci AnalysisCandlestick PatternsSupport and Resistance LevelsMomentum Indicators

6Quantitative Equity Analysis

7Portfolio Management and Strategy

8Equity Derivatives and Hedging

9Risk Management in Equity Markets

10Ethical and Sustainable Investing

11Global Perspectives on US Equity Markets

12Advanced Trading Platforms and Tools

13Legal and Regulatory Framework

14Future Trends in Equity Markets

Courses/Advanced US Stock Market Equity/Technical Analysis for Equity Markets

Technical Analysis for Equity Markets

14563 views

Master the art of technical analysis, focusing on chart patterns, indicators, and trading signals.

Content

3 of 10

Relative Strength Index (RSI)

Relative Strength Index (RSI) Explained for Equity Traders
2587 views
intermediate
technical-analysis
equity-markets
RSI
trading-strategy
gpt-5-mini
2587 views

Versions:

Relative Strength Index (RSI) Explained for Equity Traders

Watch & Learn

AI-discovered learning video

Sign in to watch the learning video for this topic.

Sign inSign up free

Start learning for free

Sign up to save progress, unlock study materials, and track your learning.

  • Bookmark content and pick up later
  • AI-generated study materials
  • Flashcards, timelines, and more
  • Progress tracking and certificates

Free to join · No credit card required

Relative Strength Index (RSI): The Momentum Meter for Equity Traders

"If moving averages tell you the trend's direction, RSI tells you whether that trend still has gas in the tank — or if it's wheezing at the next exit."

You already know the drill from our earlier sections on Market Dynamics and Trends, Chart Patterns, and Moving Averages: trends exist, investor behavior drives momentum, and price structure matters. RSI sits comfortably between those worlds — it’s a momentum oscillator that quantifies the speed and change of price movements so you can stop guessing and start sizing up conviction.


What is RSI and why it matters

RSI (Relative Strength Index) is a bounded oscillator (0–100) that measures recent price gains vs. recent losses. Invented by J. Welles Wilder, it's used to spot potential reversals, continuations, and divergences — basically the emotional temperature of the stock.

Why traders love it:

  • Easy to read: Overbought/oversold thresholds are intuitive (classic 70/30).
  • Bounded: Always between 0 and 100, so you don’t get runaway values like some indicators.
  • Versatile: Works for entries, exits, and confirmations with patterns and moving averages.

Where you use it: swing trading, position management, confirming chart patterns, and avoiding traps in trending markets.


The math — in plain English (plus pseudocode)

  1. Choose a lookback period (standard = 14).
  2. Calculate average gain and average loss over that period.
  3. Compute the Relative Strength (RS) = Avg Gain / Avg Loss.
  4. RSI = 100 - (100 / (1 + RS)).

Simple Python-like pseudocode (Wilder smoothing):

period = 14
gains = [max(close[i]-close[i-1], 0) for i in range(1, len(close))]
losses = [max(close[i-1]-close[i], 0) for i in range(1, len(close))]
avg_gain = sum(gains[:period]) / period
avg_loss = sum(losses[:period]) / period
for i in range(period, len(gains)):
    avg_gain = (avg_gain * (period-1) + gains[i]) / period
    avg_loss = (avg_loss * (period-1) + losses[i]) / period
    rs = avg_gain / avg_loss if avg_loss != 0 else float('inf')
    rsi = 100 - (100 / (1 + rs))

Note: Wilder smoothing keeps RSI responsive but less jittery than a naive simple average.


How to read RSI (practical rules of the road)

Classic signals

  • Overbought (typically >70) — price may be extended; look for confirmation (price action, divergence, or a rejection candle).
  • Oversold (typically <30) — price may be oversold; watch for reversal signs.
  • Centerline (50) cross — momentum turning point: above 50 = bullish bias, below 50 = bearish bias.

Divergence — the golden ticket

  • Bullish divergence: Price makes lower lows, RSI makes higher lows → momentum weakening on the downside — potential bounce.
  • Bearish divergence: Price makes higher highs, RSI makes lower highs → momentum waning on the rally — potential top.

There are regular divergences (hint at reversals) and hidden divergences (hint at continuation). Hidden divergence is especially useful when aligning entries with the dominant trend from moving averages.

Failure swings (Wilder’s favorite)

  • RSI breaches 70 then falls below 70, then climbs but fails to reach 70 and drops again — a bearish failure swing.
  • Reverse for bullish failure swing around 30.

These are internal RSI patterns that don’t rely on price action but often precede moves.


Put RSI in context — don’t use it alone

RSI is a momentum tool, not a clairvoyant. Here’s how to avoid classic traps:

  • In strong trends, RSI can stay overbought/oversold for long stretches. Use a trend filter: if price is above the 200-day MA, bias long and treat RSI dips to 40–50 as buying opportunities rather than waiting for 30.
  • Combine with Chart Patterns and Moving Averages: If chart patterns signal a breakout and RSI is rising but below 70, that’s a cleaner momentum-confirmed entry than chasing an RSI >70 pop.
  • Volume and Support/Resistance matter: A bullish divergence into a key support zone with rising volume is higher probability than divergence in thin air.

Tactical setups you can use today

  1. Trend-following pullback

    • Identify trend with moving averages (e.g., price > 50MA and 50MA > 200MA).
    • Wait for RSI to dip into 40–45, then look for price confirmation (bullish engulfing or support test).
  2. Mean-reversion in range

    • For sideways stocks, use 70/30 extremes for entries/exits.
    • Confirm with small time-frame oscillators or stochastic for timing.
  3. Divergence + breakout

    • Look for bullish divergence into a breakout zone; enter on breakout with stop below recent low.

Tweaks, settings, and common variations

  • Default: 14 periods. Balanced for many timeframes.
  • Shorter (e.g., 7): More signals, more false alarms (higher sensitivity). Good for intraday.
  • Longer (e.g., 21): Fewer signals, smoother — better for swing/position traders.
  • RSI Bands: Some traders use 80/20 in very volatile assets and 65/35 in strong trending markets.
  • RSI with moving average of RSI: Smooth the RSI line further to reduce whipsaws.

Pitfalls & risk management

  • Signal blindness in trends: Overbought doesn’t mean “sell now” if the trend is roaring. Use moving averages to filter.
  • Divergence false positives: Not all divergence yields a reversal; wait for price confirmation.
  • Over-optimization: Don’t hunt for custom periods that only worked historically on one stock.

Risk control: always define stop-loss using volatility or structure, and size positions so a single failed RSI signal doesn’t wreck your portfolio.


Quick checklist before you press the trade button

  • Is the overall trend bullish, bearish, or neutral (use MAs)?
  • Does RSI support the intended trade (centerline, divergence, or pullback)?
  • Do volume and price structure confirm the signal?
  • Where is logical stop-loss and target (use S/R, chart patterns)?
  • Is the stock’s volatility compatible with your RSI setting?

Key takeaways

  • RSI = momentum compass. It tells you how strong the recent move is, not whether the move will continue without context.
  • Always use a trend filter. Combine RSI with moving averages and chart patterns to raise win probability.
  • Watch divergences and failure swings. They’re high-probability clues, but require price confirmation.
  • Don’t be addicted to 70/30. Adapt thresholds to market regime and timeframe.

"RSI is like the stomach of the market: loud rumbling (divergence) means something’s off, but you still use sight, smell, and experience before you decide to eat."

Use RSI to add conviction to the patterns and trend signals you already study (remember our Moving Averages and Chart Patterns sections). When it clicks, RSI feels like discovering the market’s mood — and that’s when your edges get sharper.


Further practice

  • Backtest RSI entries with a trend filter (50MA or 200MA) on a few large-cap US equities.
  • Experiment with 14 vs 7 vs 21 periods and record win-rate and drawdown.
  • Study 20 examples of bullish/bearish divergence and annotate the chart reasons trades worked or failed.

Good traders don’t worship indicators — they interrogate them. RSI is a great witness; ask it the right questions.

Flashcards
Mind Map
Speed Challenge

Comments (0)

Please sign in to leave a comment.

No comments yet. Be the first to comment!

Ready to practice?

Sign up now to study with flashcards, practice questions, and more — and track your progress on this topic.

Study with flashcards, timelines, and more
Earn certificates for completed courses
Bookmark content for later reference
Track your progress across all topics