Supertrend Indicator: ATR-Based Trend Following
A trailing line that flips with the trend. How it adapts to volatility, how to read the flip, and where the signal breaks down.
How Supertrend Works (ATR-Based)
Supertrend is a single trailing line plotted directly on the price chart. When price is in an uptrend, the line sits below price and is drawn green. When price is in a downtrend, the line sits above price and is drawn red. The line flips sides on a specific kind of price close. That flip is the entire signal.
The line itself is built from the Average True Range (ATR), which is why Supertrend behaves differently from a simple moving average. ATR measures how far a stock typically moves per period. Supertrend takes that volatility measurement, multiplies it, and offsets the result from the price midpoint. The line is therefore a volatility-aware stop level rather than a smoothed price.
The calculation
The default parameters are a 10-period ATR and a multiplier of 3. From those, Supertrend constructs two raw bands for each bar:
- Upper band: (High + Low) / 2 + (multiplier × ATR)
- Lower band: (High + Low) / 2 − (multiplier × ATR)
Those raw bands aren't the indicator yet. Supertrend applies a ratcheting rule so the line only moves in the direction of the current trend. In an uptrend, the lower band can rise (tightening the stop) but it can't fall. In a downtrend, the upper band can fall but it can't rise. The line trails price the same way a well-managed stop loss would.
The flip happens when a candle closes on the opposite side of the line. Intraday spikes through the line don't trigger anything. A wick that pierces the line and pulls back leaves the indicator unchanged. Only the close matters, which is why Supertrend behaves more cleanly than a raw band system.
Default parameters: 10-period ATR, multiplier of 3. Shorter ATR or smaller multiplier produces a tighter line with more flips. Longer ATR or larger multiplier produces a looser line with fewer flips. The 10/3 setting is the published default and is the version most algorithmic systems track. Change it only if you've tested the alternative on the specific asset you trade.
The chart above shows AAPL with the default Supertrend (10, 3) plotted directly on price. When recent ATR rises, the trailing line sits further from price; when ATR falls, it hugs price tightly. That adaptive width is the entire reason Supertrend exists.
Why ATR matters here
A stop level based on a fixed percentage doesn't know the difference between a calm consolidation and a volatile breakout. A 2 percent stop on SPY during a quiet drift is sensible; the same 2 percent stop during a high-ATR event will get clipped within hours by normal noise. Supertrend solves this by tying the offset directly to recent range. The same multiplier produces a tight line in calm tape and a wide line in violent tape, automatically.
This is the point of the indicator. It's a trend signal whose sensitivity scales with the actual character of the market, not with a number you guessed once and forgot about.
Reading the Flip
A flip is a regime change. The line moves from one side of price to the other, the color switches, and the indicator declares a new trend. Three things determine whether a flip is worth acting on: the location of the close that triggered it, the current ATR level, and where the line sat before the flip.
Close-based, not wick-based
The most common misread of Supertrend is treating the flip as if it happened on the first touch. It doesn't. The line is recomputed bar by bar from closing prices. A long intraday wick that pierces the line and pulls back leaves the line unchanged because the close didn't break it. This is a feature, not a quirk. Wick-based flips would whipsaw on every news spike. Close-based flips force a degree of conviction into the signal.
The practical consequence: a flip doesn't fully exist until the candle closes. Day traders working off the 15-minute chart wait for the 15-minute close. Swing traders working off the daily chart wait for the daily close. Acting on an in-progress flip is acting on a signal that may un-flip before the bar finishes.
Flip distance matters
When the line is sitting close to price and a small move triggers the flip, the signal is weak. When the line is sitting far from price and a decisive move breaks through it, the signal is strong. The distance between the prior trailing line and the closing price on the flip bar is a built-in conviction filter. Larger distance = more meaningful break.
A related read: a flip that prints during an expanding ATR environment is more durable than a flip during a contracting one. Rising ATR means volatility is being injected. Whatever side of the flip the trend lands on has the energy to extend. A flip into declining ATR usually means the trend already played out and the flip is happening late.
TSLA is a useful study because its volatility swings widely. During the high-volatility periods on the chart above, the Supertrend line sits well away from price, allowing the stock room to oscillate without flipping. During the low-volatility consolidations, the line hugs price and the slightest break triggers a flip. Same indicator, same multiplier, very different behavior bar to bar.
Color interpretation
When the line is below price and drawn green, Supertrend is acting as a bullish stop. The trader's read is "long while green, exit when it flips to red." When the line is above price and drawn red, Supertrend is acting as a bearish stop. The read is "short or flat while red, look for a long when it flips to green." There's no neutral state. The line is always on one side or the other, which is part of what makes the indicator mechanically clean.
Supertrend vs Moving Averages
A Simple Moving Average (SMA) and a Supertrend line are both trailing references, but they're built from different inputs and they behave differently under stress. Understanding the difference decides which one belongs in your strategy.
What SMAs measure
A Simple Moving Average (SMA) is the arithmetic mean of closing prices over N periods. A 50-period SMA tells you where the average closing price has been for the last 50 bars. The line is purely mean-based. It has no awareness of how violently price got to that mean. A quiet 5 percent drift over 50 days and a violent 30 percent round trip over 50 days can produce identical SMA values if the arithmetic happens to land in the same place.
That mean-based construction makes SMAs excellent for identifying regime. Price above the 200-day SMA is a structural uptrend, price below is a structural downtrend. It also makes them lag uniformly. A 50-day SMA always reacts on the same fixed schedule regardless of whether the market is calm or chaotic.
What Supertrend measures
Supertrend is volatility-adapted. Its distance from price expands in volatile markets and contracts in calm ones. In a low-volatility drift, the Supertrend line sits close to price and reacts quickly to even small reversals. In a high-volatility regime, the line stands well off and tolerates large swings without flipping.
The result: Supertrend gives the stock breathing room proportional to its current character. SMAs don't. An SMA-based stop is a single fixed-distance reference regardless of whether the stock is in a calm or stormy phase. Supertrend's distance changes bar by bar.
Which to use when
SMAs are the better tool for regime identification, multi-timeframe structure, and cross-checking against the broad institutional population that tracks them. The 50-day and 200-day SMAs in particular are watched by enough capital that they become self-fulfilling levels. Supertrend doesn't have that broad following. It's a signal you use for its mechanics, not because everyone else is watching it.
Supertrend is the better tool for active trade management. It produces a single, unambiguous, color-coded read at every bar that tells you which side of the trend you should be on. SMAs require you to interpret the slope, the price-to-SMA distance, and potentially a crossover with a second SMA. Supertrend collapses all of that into one line and one color.
The honest comparison: SMAs answer "what is the long-term trend?" Supertrend answers "given current volatility, am I on the right side of the move?" These are different questions. Most serious traders use both: an SMA filter for regime, Supertrend for entries and exits within that regime.
QQQ above illustrates why Supertrend and an SMA behave differently. During the calm grinding uptrends, ATR sits low and the Supertrend line tracks tight to price. During the sharp drawdowns and recoveries, ATR expands and the line widens to accommodate the larger swings. A 200-day SMA on the same chart would have made the same shape regardless of which volatility regime the market was in.
See ATR live on any stock
Real-time ATR, the volatility input behind Supertrend. Free.
Open SPY chartTrading the Reversal
The Supertrend trade is structurally simple. Enter on a flip in the direction of the new trend, stop at the prior flip level, exit on the opposite flip or at a defined profit target. Each of those three components has a right and wrong way to handle it.
Entry: the flip bar
The signal fires when a candle closes on the opposite side of the line. The conservative entry is at the open of the bar after the flip. The aggressive entry is at the close of the flip bar itself. The conservative version gives you a tighter stop and accepts that you'll occasionally see the flip un-flip on the very next bar. The aggressive version gives you a worse fill but catches the move earlier when the flip holds.
For swing trades on the daily chart, the close of the flip bar versus the open of the next bar usually differs by fractions of a percent. For intraday trades on the 5-minute or 15-minute chart, the difference can be material. Match the entry style to the timeframe.
Stop: the prior flip level
The natural stop on a Supertrend trade is the level of the Supertrend line on the bar before the flip. That level was the previous trend's trailing stop, and if price reverses back through it, the flip was wrong and the prior trend is reasserting. Setting the stop there gives the position room equal to one ATR multiplier worth of adverse movement.
The alternative is to set the stop at the current bar's Supertrend line. This is tighter and produces a better reward-to-risk ratio, but it gets clipped by normal post-flip noise. New trends usually test the line at least once before extending. A stop right at the line gets stopped out on that test and misses the move.
Exit: the opposite flip
The mechanical exit is to hold until Supertrend flips back the other way. This is the strategy's defining feature. The same indicator that tells you when to enter tells you when to exit, and the rule is symmetric. Long when green, flat when it flips red. Short when red, flat when it flips green. The discipline is the edge.
Discretionary traders sometimes layer in a profit target. For example, exit half the position at 2x the initial risk and let the rest ride to the next flip. This produces smaller average winners but locks in some of the move before the flip-exit gives back the last leg. Both approaches have backers. The pure flip-to-flip version produces fewer trades and bigger swings; the partial-take version smooths the equity curve.
NVDA's chart above shows why the flip-to-flip approach works on trending names. The long sustained moves where ATR stayed elevated and didn't collapse would have held the same Supertrend direction for weeks. A trader who entered on the flip and held until the opposite flip would have captured most of those moves cleanly. The same trader who tried to second-guess the indicator with discretionary exits would have re-entered late and given back the spread.
Sizing
Because the stop distance scales with ATR, position size should scale inversely with ATR. The standard risk formula applies: position size = risk per trade / stop distance. A higher-ATR stock gets fewer shares, a lower-ATR stock gets more, and every trade ends up risking roughly the same dollar amount. This is the same discipline that makes a standalone ATR strategy work, applied inside the Supertrend framework.
Common Mistakes
Trading every flip without a regime filter
The single most expensive mistake. Supertrend will flip in any market: trending, ranging, choppy, news-driven. In a clean trend, the flips are signal. In a sideways range, they're noise. Trading every flip in a sideways tape produces a string of small losses that bleed the account.
The fix is a higher-timeframe regime filter. The simplest version: take long flips only when price is above a longer SMA (e.g., the 200-day Simple Moving Average) and short flips only when price is below it. The slightly more sophisticated version: skip flips entirely when the higher-timeframe trend indicator is flat or oscillating. Filtering for regime first cuts the trade count and raises the hit rate.
Using default parameters on every asset
The 10-period ATR with multiplier 3 is a starting point, not an answer. Calm large-cap names often work better with a tighter setting (e.g., multiplier 2) because their natural pullbacks are smaller. Volatile small-caps and high-beta tech names often need a wider setting (multiplier 4 or 5) to avoid getting whipsawed by normal swings. Pull up the chart of the asset you want to trade and visually test how the indicator behaves at several multiplier settings before committing.
Acting on intraday wicks
The line is computed from closes. A bar that wicks through the line and pulls back leaves the trend unchanged. Acting on that wick, by entering the new trend or exiting the old, is acting on a flip that didn't happen. Wait for the close. On the daily timeframe this means waiting until the end of the session. On the 15-minute timeframe it means waiting until the bar finishes. The discipline matters because pre-close action is exactly when fakeouts happen.
Ignoring the volatility environment
A flip during a high-ATR, expanding-range market is structurally different from a flip during a low-ATR, contracting-range market. The first is likely to extend because volatility is being injected into the move. The second is likely to fail because the regime is quieting down and the new trend doesn't have energy behind it. Check ATR before acting on a flip. If ATR is collapsing toward a multi-month low while a flip prints, treat it skeptically.
Flipping the stop too aggressively
Some traders move their stop to the current Supertrend line as soon as the trade goes their way. This sounds disciplined and is usually wrong. New trends almost always test the trailing line at least once. A stop sitting right at the current line gets clipped on that test, the trade closes, and the trend continues without you. Keep the stop at the prior flip level until price has extended at least one full ATR away from the line in the favorable direction. Only then start trailing.
Treating it as a complete system
Supertrend is a trend-following entry and exit framework. It isn't a complete trading plan. It says nothing about which tickers to scan, which sectors are leading, what the macro environment is, or how to size the portfolio. The traders who succeed with Supertrend pair it with a watchlist process, a regime filter, and a risk management framework. The traders who fail treat the indicator as the whole strategy and wonder why the mechanical rules don't produce mechanical profits.
Get alerted on ATR moves
Set ATR-based alerts on any U.S. ticker. ATR is the volatility input behind Supertrend.
Create free accountRisen lets you chart real-time ATR alongside price on any U.S. stock or index and set alerts when volatility expands or contracts past a threshold, which is useful for filtering Supertrend flips by the volatility regime they fire in.