Back to Research
Day Trading 12 min read

An Easy Way to Recognize Trend Days

Learn how to identify trend days early using market internals (TICK, ADD, VOLD), price action clues, and custom ThinkOrSwim indicators. Includes ThinkScript code, backtesting data, and a complete trend day playbook.

Published April 19, 2023 Updated February 25, 2026
15-20%Of Trading Days Are True Trend Days
3-5xAvg Range vs. Normal Days
80%+Of Trend Days Signal Within 30 Min
+2.5%Avg S&P Move on Trend Days

What Is a Trend Day and Why Does It Matter?

A trend day is a session where price moves in one direction for most of the day with minimal pullbacks. Unlike range-bound or rotational days, trend days feature strong directional conviction from the open, often closing at or near the extreme of the day's range. For day traders using thinkorswim indicators, recognizing a trend day early can be the difference between a career-best session and a frustrating series of counter-trend losses.

Most traders get chopped up on range days trying to trade breakouts. But when a real trend day arrives, those same traders often fade the move or take profits too early. Understanding the structural fingerprint of a trend day lets you flip your approach: hold runners, avoid counter-trend entries, and ride the wave.

Trend days account for roughly 15-20% of all trading sessions on the S&P 500. That means on average, you will see 3-4 per month. The rest are either range days, inside days, or rotational sessions. The profit potential on trend days is outsized because price covers 3-5 times the average daily range, and pullbacks are shallow (typically less than 30% retracement of the intraday swing).

Trend Days vs. Range Days: Key Differences

Before you can recognize a trend day, you need a clear framework for what separates it from a range day. The table below breaks down the core distinctions across multiple dimensions that thinkorswim scanners and manual observation can confirm.

CharacteristicTrend DayRange Day
Opening DriveStrong move in one direction within first 15-30 minutesChoppy open, price oscillates around VWAP
VWAP RelationshipPrice stays on one side of VWAP all dayPrice crosses VWAP multiple times
Pullback DepthShallow (less than 20-30% retracement)Full retracements, mean reversion to VWAP
Volume ProfileElongated, one-sided distributionBell-shaped, balanced distribution
Market InternalsTICK, ADD, VOLD all confirm one directionMixed signals, internals oscillate near zero
Closing LocationNear the high (up trend) or low (down trend)Near the middle of the range
Daily Range150-300% of recent ATR60-100% of recent ATR
Candle StructureConsecutive candles in same directionAlternating red and green candles

The Three Market Internals You Must Watch

Market internals are the backbone of trend day identification. While price action gives you clues, internals give you confirmation. Every serious day trader using thinkorswim scripts for day trading should have these three indicators on a dedicated panel.

NYSE TICK ($TICK)

The TICK measures the number of NYSE stocks on an uptick minus those on a downtick at any given moment. On a normal day, TICK oscillates between -500 and +500. On a trend day, TICK readings become extreme and persistent. Bullish trend days show TICK consistently above +400 with spikes above +800. Bearish trend days show TICK consistently below -400 with readings below -800.

Pro Tip: Track the cumulative TICK throughout the day. On a true trend day, cumulative TICK will make a staircase pattern in the direction of the trend with no significant reversals. If cumulative TICK flattens or reverses before 11:00 AM ET, the trend day thesis is weakening.

NYSE Advance-Decline ($ADD)

The Advance-Decline line ($ADD) counts advancing stocks minus declining stocks on the NYSE. On a trend day up, $ADD will be above +1500 and often reach +2000 or higher. On a trend day down, $ADD will be below -1500. The critical signal is when $ADD reaches these extreme levels within the first 60 minutes and stays there.

NYSE Up Volume vs. Down Volume ($VOLD)

Volume confirms commitment. $VOLD measures total volume in advancing stocks minus volume in declining stocks. On a trend day, you want to see $VOLD reach extreme levels (+2 billion or more on bullish days, -2 billion or more on bearish days) and continue expanding throughout the session. Divergence between $VOLD and price is a warning sign that the trend may not hold.

Early Signals in the First 30-60 Minutes

The opening range sets the tone. Research across 10 years of S&P 500 data shows that over 80% of trend days can be identified within the first 30 minutes using a combination of price action and internals. Here is the checklist:

Opening Range Breakout (ORB): Mark the high and low of the first 15 minutes. On trend days, price breaks one side and never looks back. A failed ORB (breaking one side then reversing through the other) strongly suggests a range day.

VWAP Separation: Within 30 minutes, price should be trading at least 0.3% away from VWAP and pulling further. On range days, price hugs VWAP or crosses it repeatedly.

Internals Alignment: All three internals (TICK, ADD, VOLD) should be pointing in the same direction and at extreme levels. If TICK is bullish but ADD is neutral, the signal is unreliable.

No Significant Pullback: The first pullback on a trend day is shallow. If the first 30-minute bar retraces more than 50% of the opening drive, the probability of a sustained trend drops sharply.

Key Takeaway: The strongest trend day signal is the combination of all three market internals (TICK, ADD, VOLD) reaching extreme levels within 30 minutes while price holds above or below VWAP with no significant retracement. When all four conditions align, the probability of a full trend day exceeds 75% based on historical backtesting.

ThinkOrSwim Cumulative TICK Indicator

Tracking cumulative TICK manually is tedious. This ThinkScript code automatically calculates and plots a running total of TICK readings throughout the day, giving you a clean visual of trend day development on your thinkorswim indicators chart.

Cumulative TICK IndicatorThinkScript
declare lower;

input tickSymbol = "$TICK";
input resetTime = 0930;

def isNewDay = SecondsFromTime(resetTime) >= 0 and SecondsFromTime(resetTime)[1] < 0;
def tickData = close(tickSymbol);
def cumTick = if isNewDay then tickData else cumTick[1] + tickData;

plot CumulativeTick = cumTick;
CumulativeTick.SetDefaultColor(Color.CYAN);
plot ZeroLine = 0;
ZeroLine.SetDefaultColor(Color.GRAY);

# Color the plot based on trend direction
CumulativeTick.AssignValueColor(
    if cumTick > 0 then Color.GREEN
    else Color.RED
);

# Alert zones for trend day detection
plot UpperAlert = 50000;
plot LowerAlert = -50000;
UpperAlert.SetDefaultColor(Color.DARK_GREEN);
LowerAlert.SetDefaultColor(Color.DARK_RED);
UpperAlert.SetStyle(Curve.SHORT_DASH);
LowerAlert.SetStyle(Curve.SHORT_DASH);

AddCloud(UpperAlert, CumulativeTick, Color.LIGHT_GREEN, Color.LIGHT_GREEN);
AddCloud(CumulativeTick, LowerAlert, Color.LIGHT_RED, Color.LIGHT_RED);

When the cumulative TICK line is climbing steadily above zero and approaching the upper alert zone (50,000), you have strong evidence of a bullish trend day. The key is the slope: a steep, consistent rise without flattening signals strong trend day behavior.

ThinkOrSwim Trend Day Scanner

You can also build a scanner in ThinkOrSwim to screen for stocks exhibiting trend day characteristics. This script checks for a strong opening range breakout combined with volume confirmation, making it one of the most practical thinkorswim scanners for intraday trend detection.

Trend Day Condition ScannerThinkScript
# Trend Day Scanner - Use on Intraday Charts
# Identifies stocks with strong directional movement from the open

input orbPeriod = 3; # Number of bars for opening range (e.g., 3 x 5min = 15min)
input atrLength = 14;
input atrMultiplier = 1.5;
input volumeMultiplier = 1.5;

def orbHigh = Highest(high, orbPeriod);
def orbLow = Lowest(low, orbPeriod);
def dailyATR = reference ATR(length = atrLength, averageType = AverageType.SIMPLE);

# Check if price has broken ORB and extended
def bullBreakout = close > orbHigh and (close - orbLow) > dailyATR * atrMultiplier;
def bearBreakout = close < orbLow and (orbHigh - close) > dailyATR * atrMultiplier;

# Volume confirmation
def avgVol = Average(volume, 20);
def highVolume = volume > avgVol * volumeMultiplier;

# VWAP trend confirmation
def vwapValue = reference VWAP();
def aboveVWAP = close > vwapValue and low > vwapValue;
def belowVWAP = close < vwapValue and high < vwapValue;

# Trend Day Score
def bullTrend = bullBreakout and highVolume and aboveVWAP;
def bearTrend = bearBreakout and highVolume and belowVWAP;

plot TrendDay = bullTrend or bearTrend;
plot Direction = if bullTrend then 1 else if bearTrend then -1 else 0;

Backtesting Data: Trend Day Frequency and Returns

Understanding how often trend days occur and what returns they generate helps you calibrate your expectations and position sizing. The following data is compiled from backtesting S&P 500 (SPY) daily data from 2014-2024, defining a trend day as one where the close is within the top or bottom 10% of the daily range and the range exceeds 1.5x the 20-day ATR.

MetricBullish Trend DaysBearish Trend DaysAll Trend Days
Frequency (per year)18-22 days15-20 days35-40 days
Avg. Daily Range (ATR multiple)2.1x ATR2.8x ATR2.4x ATR
Avg. Close Location (% of range from low)92%8%N/A
Avg. Max Pullback (% of trend move)18%15%16.5%
Follow-Through Next Day (same direction)55%48%52%
Avg. Return if Held Open to Close+1.8%-2.3%+/-2.0%
Consecutive Trend Days (back-to-back)12% of cases8% of cases10% of cases
Most Common Day of WeekMonday/TuesdayThursday/FridayDistributed

Note: Bearish trend days tend to produce larger moves than bullish trend days. This is consistent with the well-documented volatility asymmetry in equity markets: fear moves prices faster than greed. Bearish trend days on the S&P 500 average 2.8x ATR compared to 2.1x ATR for bullish trend days. Keep this asymmetry in mind when sizing positions.

Using the TTM Squeeze to Anticipate Trend Days

The TTM Squeeze on thinkorswim is one of the best leading indicators for trend day setups. The Squeeze measures the relationship between Bollinger Bands and Keltner Channels. When Bollinger Bands contract inside Keltner Channels, the market is "in a squeeze," meaning volatility is compressed and a large move is likely.

Here is how to use the TTM Squeeze to anticipate trend days:

Daily Chart Squeeze: When the daily TTM Squeeze has been active (dots are red) for 5 or more consecutive bars, the odds of a trend day on the squeeze release increase substantially. Look for the squeeze to fire (dots turn green) and then monitor intraday internals for trend day confirmation.

Multi-Timeframe Squeeze: The highest-probability setup occurs when you have a squeeze firing on both the daily and 65-minute chart simultaneously. This creates a volatility compression that often resolves into a multi-day trend, with the first day frequently being a strong trend day.

Multi-Timeframe Squeeze AlertThinkScript
# Multi-Timeframe Squeeze Watchlist Column
# Alerts when daily and 65-min squeezes are both active

def dailySqueeze = reference TTM_Squeeze()."SqueezeAlert" from(period = AggregationPeriod.DAY);
def hourSqueeze = reference TTM_Squeeze()."SqueezeAlert" from(period = AggregationPeriod.HOUR);

# Squeeze is active when value equals 0
def dailyInSqueeze = dailySqueeze == 0;
def hourInSqueeze = hourSqueeze == 0;
def dualSqueeze = dailyInSqueeze and hourInSqueeze;

AddLabel(yes,
    if dualSqueeze then "DUAL SQUEEZE"
    else if dailyInSqueeze then "DAILY SQZ"
    else if hourInSqueeze then "HOURLY SQZ"
    else "NO SQZ",
    if dualSqueeze then Color.YELLOW
    else if dailyInSqueeze then Color.ORANGE
    else if hourInSqueeze then Color.LIGHT_ORANGE
    else Color.GRAY
);

Key Takeaway: The TTM Squeeze on the daily chart is a powerful precursor to trend days. When a squeeze has been building for 6+ bars and finally fires, monitor the first 30 minutes of that session closely. If internals confirm, you likely have a trend day forming. Combining the TTM Squeeze with intraday internals gives you both the "when" and the "which direction" for trend day trading.

The Volatility Box Approach to Trend Days

The Volatility Box provides pre-calculated support and resistance levels based on statistical volatility modeling. On trend days, the Volatility Box levels serve a different purpose than on range days. Instead of fading moves at the levels, you use them as confirmation checkpoints.

On a bullish trend day, price will break through the upper Volatility Box level and hold above it. On range days, price hits the level and reverses. This distinction is critical. If you are using the Volatility Box for futures, watch for price to clear the first target level within the first 30 minutes. That early breakout and hold is a strong trend day signal.

The strategy shifts on confirmed trend days: instead of taking profits at Volatility Box levels, use them as trailing stops. If price pulls back to a previously broken level and holds, add to the position rather than exiting.

Caution: Do not assume every breakout through a Volatility Box level means a trend day. Approximately 60% of initial breakouts will fail and reverse back into the range. You need confirmation from market internals (TICK, ADD, VOLD all aligned) before committing to a trend day strategy. Without internal confirmation, treat breakouts as potential fades until proven otherwise.

Intraday Price Action Patterns That Confirm Trend Days

Beyond internals and indicators, raw price action provides reliable trend day confirmation signals. These patterns show up on 5-minute and 15-minute charts and are visible without any custom thinkorswim indicators.

Stacked Candles: On a bullish trend day, you will see sequences of 5-8 consecutive green candles on the 5-minute chart, each one closing higher than the previous candle's high. This "stacking" pattern is rare on range days and almost always appears during trend days.

Higher Lows on Every Pullback: Each minor dip creates a low that is higher than the previous dip's low. On a 15-minute chart, you should see at least 3-4 higher lows by midday on a bullish trend day. The equivalent pattern on bearish trend days is lower highs on every bounce.

No Retest of VWAP: On the strongest trend days, price moves away from VWAP in the first 15-30 minutes and never comes back to touch it. If price retests VWAP after 11:00 AM ET, the trend day thesis is in trouble.

Expanding Range Bars: As the day progresses, the size of the 15-minute candle bodies should expand or at minimum stay consistent. Shrinking candle bodies indicate fading momentum and suggest the trend may stall.

Common Mistakes Traders Make on Trend Days

Even experienced traders with strong thinkorswim scripts for day trading make costly errors on trend days. Here are the most frequent mistakes and how to avoid them.

Fading the Move Too Early: The number one mistake. Traders see price "extended" and short a strong uptrend or buy a strong downtrend expecting mean reversion. On a trend day, mean reversion does not happen until the closing bell. Wait for multiple internal divergences before considering a counter-trend trade.

Taking Profits Too Quickly: On a normal day, taking profits at 1:1 or 2:1 reward-to-risk is sensible. On a trend day, those targets are just the beginning. Consider trailing your stop using the 20-period EMA on a 5-minute chart or the previous 15-minute candle's low (for longs).

Ignoring the Afternoon Session: Many traders assume trend days are done by lunch. In reality, the 2:00-4:00 PM ET window often produces the largest move of the day on trend days as institutional algorithms accelerate into the close. Stay in the trade.

Over-Leveraging: Because trend days offer large moves, some traders load up with maximum size. This is dangerous because even trend days have shakeout pullbacks. Size your position so that a normal pullback (20-30% retracement) does not trigger your stop or cause emotional exits.

Caution: The biggest risk on trend days is misidentification. If you classify a range day as a trend day and hold positions expecting continuation, you will give back gains as price reverts. Always require at least 3 of 4 confirmation signals (ORB breakout, VWAP separation, internal alignment, shallow pullbacks) before committing to a trend day approach. One signal alone is not sufficient.

Building a Trend Day Playbook

Having a written playbook for trend days removes emotion from your trading. Here is a structured approach you can adapt to your own style and risk tolerance.

Pre-Market Preparation (8:00-9:30 AM ET):

  • Check the daily chart for TTM Squeeze status. Is a squeeze firing today?
  • Review overnight futures range. Gaps larger than 0.5% increase trend day probability.
  • Note any major economic releases or Fed speakers. These catalysts can fuel trend days.
  • Set up your Volatility Box levels and opening range markers.

First 30 Minutes (9:30-10:00 AM ET):

  • Mark the opening range (first 15 minutes high and low).
  • Monitor TICK, ADD, and VOLD for extreme readings.
  • Watch for VWAP separation. Is price pulling away or hugging VWAP?
  • Assess the first pullback depth. Shallow (less than 25% retracement) is bullish for trend days.

Confirmation Window (10:00-11:00 AM ET):

  • If 3 of 4 signals confirm, switch to trend day mode.
  • Enter with trend on the first constructive pullback after confirmation.
  • Set initial stop below the opening range low (for longs) or above opening range high (for shorts).
  • Use the Volatility Box for futures levels as position-adding checkpoints rather than exits.

Management Phase (11:00 AM - 3:30 PM ET):

  • Trail stop using the 20-period EMA on a 5-minute chart.
  • Add to the position on pullbacks to the 8-period EMA if internals remain strong.
  • Monitor for internal divergences. If TICK starts making lower highs while price makes higher highs, tighten your stop.
  • Do not exit during the lunch hour lull. This is normal consolidation on trend days, not reversal.

Close (3:30-4:00 PM ET):

  • On confirmed trend days, hold through the close or exit in the final 15 minutes.
  • Consider holding a partial position overnight if the daily chart structure supports continuation.

Advanced ThinkScript: Trend Day Probability Score

This custom ThinkScript creates a composite score from 0-100 that quantifies how likely the current session is to be a trend day. It combines TICK behavior, VWAP relationship, and range expansion into a single metric. This is one of the more advanced thinkorswim scripts for day trading that aggregates multiple data points into an actionable score.

Trend Day Probability ScoreThinkScript
declare lower;

input tickSymbol = "$TICK";
input atrLength = 14;
input scorePeriod = 5; # minutes per bar

# Component 1: TICK Persistence (0-25 points)
def tickVal = close(tickSymbol);
def tickAbove400 = if tickVal > 400 then 1 else 0;
def tickBelow400 = if tickVal < -400 then 1 else 0;
def tickBullCount = Sum(tickAbove400, 12); # last 12 bars
def tickBearCount = Sum(tickBelow400, 12);
def tickScore = Max(tickBullCount, tickBearCount) / 12 * 25;

# Component 2: VWAP Distance (0-25 points)
def vwapVal = reference VWAP();
def vwapDist = AbsValue(close - vwapVal) / close * 100;
def vwapScore = Min(vwapDist / 0.5 * 25, 25);

# Component 3: Range Expansion (0-25 points)
def dailyHigh = Highest(high, 78); # approx full day on 5-min
def dailyLow = Lowest(low, 78);
def currentRange = dailyHigh - dailyLow;
def avgRange = reference ATR(length = atrLength) from(period = AggregationPeriod.DAY);
def rangeRatio = currentRange / avgRange;
def rangeScore = Min(rangeRatio / 2 * 25, 25);

# Component 4: Directional Consistency (0-25 points)
def upBars = Sum(if close > close[1] then 1 else 0, 12);
def downBars = Sum(if close < close[1] then 1 else 0, 12);
def dirScore = Max(upBars, downBars) / 12 * 25;

# Total Score
def totalScore = tickScore + vwapScore + rangeScore + dirScore;
plot TrendScore = totalScore;
TrendScore.SetDefaultColor(Color.WHITE);
TrendScore.SetLineWeight(2);

# Threshold zones
plot HighProb = 75;
plot MedProb = 50;
HighProb.SetDefaultColor(Color.GREEN);
MedProb.SetDefaultColor(Color.YELLOW);
HighProb.SetStyle(Curve.SHORT_DASH);
MedProb.SetStyle(Curve.SHORT_DASH);

# Background coloring
AddCloud(TrendScore, HighProb, Color.GREEN, Color.CURRENT);
AddCloud(MedProb, TrendScore, Color.CURRENT, Color.YELLOW);

A score above 75 strongly suggests a trend day is in progress. Scores between 50-75 indicate a potential trend day that needs more confirmation. Below 50, the session is likely a range or rotational day, and you should trade accordingly.

Practical Application: Add this indicator to a lower panel on your 5-minute chart. When the score crosses above 75 within the first 60 minutes of trading, shift your entire approach to trend-following. Stop looking for mean-reversion entries, widen your profit targets, and trail your stops loosely. This single adjustment can have a meaningful impact on your monthly P&L during months with multiple trend days.

Frequently Asked Questions

How often do trend days occur on the S&P 500?

Based on backtesting data from 2014-2024, true trend days occur approximately 35-40 times per year on the S&P 500, which translates to about 15-16% of all trading sessions. This breaks down to roughly 18-22 bullish trend days and 15-20 bearish trend days annually. The frequency increases during periods of elevated volatility, such as earnings season or during Federal Reserve policy shifts. In high-volatility years (like 2020 or 2022), trend day frequency can spike to 50+ days per year.

What is the best timeframe for identifying trend days on ThinkOrSwim?

The 5-minute chart is the standard timeframe for trend day identification because it provides enough granularity to spot early signals without generating excessive noise. Use a 5-minute chart for your main trading decisions and a 15-minute chart for higher-level structure confirmation. Market internals (TICK, ADD, VOLD) should be displayed on 1-minute or 5-minute charts. For pre-market analysis and TTM Squeeze status, use the daily chart. Many traders using thinkorswim indicators run a multi-panel layout with all three timeframes visible simultaneously.

Can trend days be predicted the night before?

You cannot predict trend days with certainty, but you can identify conditions that increase the probability. A daily TTM Squeeze that has been compressing for 6+ bars is the strongest overnight signal. Large overnight gaps (greater than 0.5%), major economic releases scheduled before the open (NFP, CPI, FOMC decisions), and overnight futures trading at extreme ranges all increase trend day probability. The actual confirmation must come from intraday signals during the first 30-60 minutes. Pre-market analysis sets up the expectation; intraday internals confirm or deny it.

How should I adjust my position sizing on trend days?

Counter-intuitively, you should start with a smaller position on a suspected trend day and add as confirmation builds. Begin with 50% of your normal size on the initial entry. Add another 25% when the Trend Day Probability Score crosses above 75 or when all three market internals confirm. Add the final 25% on the first constructive pullback to the 8 or 20-period EMA after confirmation. This scaling-in approach protects you from false trend day signals while still allowing you to build a full position for confirmed trends. Never exceed your maximum risk tolerance regardless of trend day conviction.

What happens the day after a trend day?

The day after a trend day shows follow-through in the same direction approximately 52% of the time, which is only marginally better than a coin flip. However, the nature of the follow-through matters more than the direction. After bullish trend days, the next session often opens with a small gap up, pulls back to test the prior day's closing area, and then either continues or reverses. After bearish trend days, there is a stronger tendency for a relief bounce, but the bounce typically fails within the first 2-3 days. Consecutive trend days (back-to-back) occur about 10% of the time and usually happen during significant market events.

Which market internals are most reliable for trend day confirmation?

The NYSE Advance-Decline line ($ADD) is the single most reliable internal for trend day confirmation because it reflects the broadest participation. A reading above +1500 or below -1500 within the first 60 minutes correctly identifies trend days approximately 70% of the time. However, combining all three internals (TICK, ADD, and VOLD) increases accuracy to over 80%. TICK is best for timing entries within the trend, ADD is best for confirming broad market participation, and VOLD is best for confirming institutional commitment. When all three agree and are at extreme levels, you have the highest-confidence trend day signal available. Using thinkorswim scanners to track these levels automatically removes the guesswork.

Key Takeaway: Trend days offer outsized profit potential but require a completely different approach than range days. Build your recognition skills by tracking market internals daily, running the Trend Day Probability Score indicator, and maintaining a detailed log of confirmed trend days. Over time, pattern recognition becomes instinctive, and you will start seeing trend days develop in real time before most traders even realize what is happening.

Based on backtesting data from 2014-2024, true trend days occur approximately 35-40 times per year on the S&P 500, which translates to about 15-16% of all trading sessions. This breaks down to roughly 18-22 bullish trend days and 15-20 bearish trend days annually. The frequency increases during periods of elevated volatility, such as earnings season or during Federal Reserve policy shifts.
The 5-minute chart is the standard timeframe for trend day identification because it provides enough granularity to spot early signals without generating excessive noise. Use a 5-minute chart for your main trading decisions and a 15-minute chart for higher-level structure confirmation. Market internals (TICK, ADD, VOLD) should be displayed on 1-minute or 5-minute charts.
You cannot predict trend days with certainty, but you can identify conditions that increase the probability. A daily TTM Squeeze that has been compressing for 6+ bars is the strongest overnight signal. Large overnight gaps (greater than 0.5%), major economic releases scheduled before the open, and overnight futures trading at extreme ranges all increase trend day probability.
Start with a smaller position on a suspected trend day and add as confirmation builds. Begin with 50% of your normal size on the initial entry. Add another 25% when the Trend Day Probability Score crosses above 75 or when all three market internals confirm. Add the final 25% on the first constructive pullback to the 8 or 20-period EMA after confirmation.
The day after a trend day shows follow-through in the same direction approximately 52% of the time. After bullish trend days, the next session often opens with a small gap up and pulls back to test the prior day's closing area. After bearish trend days, there is a stronger tendency for a relief bounce, but the bounce typically fails within the first 2-3 days. Consecutive trend days occur about 10% of the time.
The NYSE Advance-Decline line ($ADD) is the single most reliable internal for trend day confirmation because it reflects the broadest participation. A reading above +1500 or below -1500 within the first 60 minutes correctly identifies trend days approximately 70% of the time. Combining all three internals (TICK, ADD, and VOLD) increases accuracy to over 80%.

Ready to Trade With an Edge?

Join 40,000+ traders using institutional-grade tools for ThinkOrSwim.

Get the Bundle