Direct answer
A worked example of trend strength is a fully numeric scenario where you pick a concrete definition, assume a set of price steps, calculate the intermediate values, and then compute a final “strength” score. In practice, trend strength is a way to convert observed directional movement into a single measure so you can compare how directional a move is across different time windows.
Because different tools use different formulas, the key to a verifiable worked example is: define the exact method first, then show the arithmetic with stated assumptions.
Mechanism and definition
“Trend strength” usually means directionality plus magnitude over a chosen lookback window. The directionality part asks whether changes mostly move up (bullish) or down (bearish). The magnitude part asks whether those changes are large compared with typical variation.
To keep the example independently checkable, we use a simple, common-sense construction based only on assumed close-to-close changes:
- Choose a lookback window of 5 steps.
- Compute signed changes for each step: (\Delta_i = Close_{i} - Close_{i-1}).
- Compute total directional distance: (D = \sum |\Delta_i|).
- Compute net directional distance: (N = \left|\sum \Delta_i\right|).
- Define a trend strength score as (TS = N / D).
Interpretation: if all changes mostly point the same way, then (N) is close to (D), making (TS) near 1. If changes frequently cancel out, (N) becomes small relative to (D), making (TS) near 0.
Key stable mechanics vs variable conditions:
- Stable mechanics: the score depends only on your assumed (\Delta) values and the chosen formula.
- Variable conditions: real market data differs by timeframe, session, volatility regime, and how prices are recorded (e.g., bid/ask, close convention).
Worked numerical example (fully stated assumptions)
Assumptions
- We consider one price series over 5 steps.
- We use close-to-close changes only.
- We assume the following Close prices (arbitrary units): 100, 102, 101, 105, 106, 104.
- We apply the formula (TS = N/D) with (N=|\sum \Delta_i|) and (D=\sum |\Delta_i|).
- No spread, costs, slippage, or execution timing are included, because this is a concept example.
Step 1: compute close-to-close changes
Let (\Delta_1) through (\Delta_5) be:
- (\Delta_1 = 102 - 100 = +2)
- (\Delta_2 = 101 - 102 = -1)
- (\Delta_3 = 105 - 101 = +4)
- (\Delta_4 = 106 - 105 = +1)
- (\Delta_5 = 104 - 106 = -2)
Step 2: compute net directional distance (N)
(\sum \Delta_i = (+2) + (-1) + (+4) + (+1) + (-2) = +4)
So (N = |+4| = 4).
Step 3: compute total directional distance (D)
(D = |+2| + |-1| + |+4| + |+1| + |-2| = 2 + 1 + 4 + 1 + 2 = 10).
Step 4: compute trend strength (TS)
(TS = N/D = 4/10 = 0.40).
How to verify it independently
Anyone can re-check by repeating the same assumed closes and recalculating (\Delta_i), then (N) and (D). If you change the assumed prices or the lookback length, the score can change.
One contrasting scenario (same length, different directionality)
Assume closes: 100, 102, 104, 106, 108, 110.
- Changes: +2, +2, +2, +2, +2
- Net sum (= +10), so (N=10)
- Total distance (D=10)
- (TS=10/10=1.00)
This shows how the score rises when all steps move in the same direction.
Limitations and risks (material failure modes)
- Timeframe dependence: Trend strength depends on the chosen window. The same market can show different strength across short vs long time horizons.
- Definition ambiguity: Different indicators define “strength” differently (for example, using smoothing, regressions, volatility normalisation, or moving averages). The worked example above is one definition, not a universal standard.
- Volatility vs direction confusion: Large moves that reverse quickly can create big absolute (|\Delta|) values and still produce a low (N), lowering (TS) even if price “felt” strong.
- Cancellation effects: Even with several directional steps, a few opposite steps can materially reduce (N) because the net sum cancels.
What you cannot conclude from trend strength alone:
- It does not specify when a reversal or continuation will occur.
- It does not automatically account for execution realities like transaction costs, bid/ask spread, or liquidity.
- Historical patterns in (TS) values do not guarantee anything about future price behavior.
Verification and next question
To verify trend strength in any setting, write down your exact definition (the formula), state your input data convention (which prices and which timeframe), and then reproduce the arithmetic.