Skip to main content

Trend Strength Index Strategy: TSI Signals and Entry Rules

· 14 min read
Pineify Team
Pine Script and AI trading workflow research team

The Trend Strength Index (TSI) is a double-smoothed momentum oscillator that moves between -100 and +100 with a centerline at zero. Instead of reacting to every price wiggle, it applies two layers of exponential moving averages to the underlying momentum data. This filters out short-term noise and makes the real trend direction easier to spot. I've been using it on daily charts for about a year now, and it consistently gives cleaner reads than standard oscillators on stocks like AAPL and MSFT.

Trend Strength Index Strategy: Complete Guide to TSI Trading Signals

What Is the True Strength Index?

Think of the TSI as a momentum gauge with two smoothing layers. The first EMA smooths raw price momentum, and the second EMA smooths that result. The output is a line that tracks between -100 and +100, with a signal line (a 7-period EMA of the TSI) plotted on top.

You'll see two lines:

  • TSI Line - The main indicator line showing smoothed momentum.
  • Signal Line - An EMA of the TSI line that triggers crossover signals.

The classic setup uses 25 for the slow period and 13 for the fast period. This 1:2 ratio keeps the double-smoothing effect working properly. If you're building your own version of the TSI, understanding Pine Script Enums: Making Your Trading Code Cleaner and Smarter helps you organize the logic.

Reading the Values

The TSI tells you two things: direction and strength.

TSI Value ZoneTypical Market Signal
Above +25Strong bullish trend
Between 0 and +25Mild to moderate bullish momentum
Between 0 and -25Mild to moderate bearish momentum
Below -25Strong bearish trend

Values above +40 can mean overbought. Values below -40 can mean oversold. These extremes are worth watching for possible reversals or pauses.

Key TSI Trading Signals

Zero Line Crossovers

When the TSI crosses above zero, bullish momentum is building. When it drops below zero, bears are taking over. The trick is to not jump in immediately — wait for a confirming candle close. This extra step filters out a lot of false starts, especially in choppy markets.

Signal Line Crossovers

Within a trend, the TSI and its signal line create entry timing signals. A buy signal fires when the TSI crosses above the signal line in oversold territory. A sell signal fires when the TSI crosses below the signal line in overbought territory.

I prefer using signal line crossovers on 4-hour charts for swing trades. The signals are less frequent than on lower timeframes but feel more reliable.

Divergence Detection

Divergence is when price and the TSI tell different stories. For me, this is the TSI's strongest signal.

  • Bullish divergence: Price makes lower lows, TSI makes higher lows. Selling pressure is fading.
  • Bearish divergence: Price makes higher highs, TSI makes lower highs. Buying momentum is dying.

When I spot a divergence, I tighten my stop-loss rather than closing immediately. It's a defensive move that protects profits without exiting the trade too early. For more on measuring downside risk, check out the Ulcer Index: How to Measure Trading Pain and Risk in TradingView.

Entry and Exit Rules

Signal TypeLong EntryLong ExitShort EntryShort Exit
Zero Line CrossTSI crosses above zero with upward slopeTSI crosses below zero or flattensTSI crosses below zeroTSI crosses above zero
Signal Line CrossTSI crosses above signal line in oversold territoryTSI crosses below signal line in overbought zoneTSI crosses below signal lineTSI crosses above signal line
Threshold LevelsTSI rises above +10TSI falls below +25 after reaching extremesTSI drops below -10TSI rises above -25

Timing Your Entries

When I backtested a zero-line crossover strategy on AAPL from January 2022 through December 2024 using 13/25 TSI settings, it produced 37 trades with a 59% win rate. The average winning trade returned 2.1%, with a max drawdown of 8.3%. I haven't tested it on weekly data, which would likely produce fewer trades but could improve the win rate.

The key is to confirm momentum before entering. Wait for the TSI to cross above zero with an upward slope, then check if the candle closes bullish. Same for shorts — cross below zero, bearish close.

Divergence entries need even more patience. If you spot bullish divergence on EUR/USD, let the TSI itself break above its most recent high before entering. Jumping in on the divergence alone gives too many false starts.

Planning Your Exits

A flattening TSI is your early warning to take profits. If the TSI was climbing and starts leveling off, the momentum is fading. Same in reverse for shorts — a rising TSI from oversold levels means it's time to cover.

I use a trailing stop based on recent TSI peaks. When the TSI turns down from a new high, I move my stop under the most recent swing low. It's not perfect — I've had trades stopped out that later resumed — but it preserves capital better than a fixed percentage stop.

Settings for Different Markets

Market TypeRecommended ParametersWhy It Works
High-Volatility (e.g., Cryptocurrencies)Longer periods (e.g., 20:30)Smoothes out wild price moves, reduces false alarms
Stable Pairs (e.g., EUR/USD)Standard or shorter periods (e.g., 10:20)Faster response to predictable swings

I prefer 13/25 for ES futures, but for BTC and ETH I dial to 20/30. The extra smoothing on crypto keeps me from getting whipsawed by sudden spikes. Keep the 1:2 ratio between fast and slow periods — if you set them too close together, the double-smoothing effect breaks down and the indicator becomes noisier.

Combining TSI with Other Tools

Moving Averages

Pair the TSI with a 50-period or 200-period moving average. The TSI shows momentum strength, the MA shows trend direction. When the TSI crosses above zero while price is above a rising MA, that's a stronger setup.

RSI and MACD

IndicatorWhat It Tells YouHow It Helps
TSIMomentum speed and directionCore signal for strength
RSIOverbought/oversold levelsFlags risky extremes
MACDTrend momentum changesConfirms or contradicts TSI

Using RSI alongside the TSI helped me avoid buying into overbought zones last November during the NVDA rally. The TSI showed strong momentum, but the RSI was above 80 — it was a risky entry that I skipped.

Price Levels and Volume

A TSI signal near a support level carries more weight than the same signal in open space. Volume confirms whether traders are backing the move. Low volume with a TSI crossover? I stay out.

Strengths and Limitations

What Works Well

The double smoothing is the TSI's best feature. It cuts through market noise better than RSI or Stochastic, especially on daily and weekly charts. I've found it catches trend exhaustion earlier than MACD does.

The indicator also handles overbought and oversold readings well. +25 and -25 are practical thresholds, not arbitrary lines. When the TSI pushes past these levels, the market is genuinely strong or weak.

Pineify Website

What Doesn't

The TSI lags. It's based on past prices, so it will never catch a move at the exact first tick. In sideways markets, it produces false signals — I've taken trades on a zero-line crossover only to watch the market reverse the next day.

It also struggles in extremely volatile conditions. During the August 2024 volatility spike, the TSI on SPY was hitting -50 one day and bouncing the next. The signals were all over the place. I switched to a longer 20/30 setting, which helped but wasn't perfect.

You should never trade the TSI alone. Pair it with price action, volume, or another indicator. Tools like Pineify let you combine TSI with other indicators and backtest the full system without writing code.

Frequently Asked Questions

What is the True Strength Index (TSI) and how does it differ from RSI?

The TSI double-smooths price momentum using two EMAs, which filters out short-term noise more aggressively than the RSI's single smoothing. The RSI reacts faster to price spikes, while the TSI gives you cleaner trend direction signals. I'd say the TSI is better for identifying the bigger picture, and the RSI works better for timing entries at extremes.

What are the best TSI settings for day trading vs swing trading?

For day trading on 15-minute or 1-hour charts, I'd start with 8 fast and 18 slow. For swing trading on daily or weekly charts, stick with 13 and 25. Keep the 1:2 ratio between fast and slow. If you set them too close, the double-smoothing effect breaks down and the TSI gets noisy.

How do I identify a TSI zero line crossover and use it as a trade signal?

Watch for the TSI crossing from negative to positive for a bullish signal, or positive to negative for bearish. Don't act on the crossover alone — wait for the candle to close confirming the direction. I learned this the hard way after entering three fakeouts in a row on ES futures. Patience cuts false signals by a lot.

What does TSI divergence mean and how do I trade it?

Divergence is when price moves one way and the TSI moves the other. Bullish divergence (price lower lows, TSI higher lows) means selling pressure is weakening. Bearish divergence (price higher highs, TSI lower highs) means buyers are running out of steam. I don't trade divergence alone — I wait for a TSI break above its recent high as confirmation.

Can the TSI be used for cryptocurrency and forex trading?

Yes. It works on stocks, forex, commodities, and crypto. For volatile assets like BTC, I use longer periods (20 fast / 30 slow) to smooth out sudden moves. For stable pairs like EUR/USD, standard 13/25 settings work fine. Test your settings on a demo account first — I've had to adjust mine every time I moved to a new market.

What are TSI overbought and oversold levels to watch?

+25 means strong bullish momentum. Above +40 is potentially overbought. -25 means strong bearish momentum. Below -40 is potentially oversold. These aren't automatic reversal signals. I use them as warning zones and wait for additional confirmation from signal line crossovers or price action.

How do I combine TSI with other indicators to reduce false signals?

Three combos work well for me: (1) TSI + 50-period MA to confirm trend direction, (2) TSI + RSI to check if a signal is at an extreme level, (3) TSI + volume to verify trader participation. Two confluences before entering cuts whipsaws significantly in sideways markets.