Trading Indicators: What They Measure and Where They Fail
Trading indicators are formulas applied to bars that have already closed. That is the entire definition, and holding onto it will save you money.
Nothing on this page predicts anything. Each formula compresses recent price or volume into one number so you can compare today against the last few weeks without squinting at a chart. Useful, frequently. Prophetic, never. The trouble starts when a smooth line on a screen begins to feel like knowledge about tomorrow.
What an indicator actually is
Feed in the last n closes. Get back a number — that is the whole machine, and every indicator you have ever loaded onto a chart is a variation on those two steps.
Every indicator in every platform is that shape underneath, differing only in which bars it reads and what arithmetic it applies. A 14-period RSI reads fourteen bars. A 200-day moving average reads two hundred. Change the lookback and you change the answer, which is why two traders can stare at "the RSI" and disagree — they are running different functions and calling them the same name.
Because the input is closed bars, the output can only describe what already happened. When I am reviewing a strategy that looks too good, the first thing I check is whether a value was available at the moment the trade claims to have fired. Half the time it was not, and the edge evaporates.
The four families, and what each one is blind to
Indicators cluster into four groups by what they measure. Knowing which group something belongs to tells you its blind spot immediately, before you have looked at a single chart, tuned a single parameter, or read anybody's opinion about which setting is best.
Momentum measures how one-sided recent moves have been. RSI, stochastics, rate of change. They answer "has one side been winning?" and say nothing about direction of trend.
Trend measures direction and persistence — moving averages, MACD, ADX. They are slow by construction, because smoothing is the entire mechanism.
Volatility measures how wide the range has become. Bollinger Bands, ATR, standard deviation channels. Width tells you about risk and position size, not about which way price breaks.
Volume measures participation behind a move. On-balance volume, volume profile, VWAP. In crypto, treat exchange-reported volume with suspicion; the number is only as honest as the venue publishing it.
Stack three momentum indicators and you have not built confluence. You have asked the same question three times and been reassured by your own echo.
RSI, exactly as the engine computes it
batch_rsi runs. Because each average is built from the one before it, two charts with different history give slightly different RSI on the same candle.Our detector batch_rsi uses Wilder's smoothing, which is where most explanations quietly diverge from most implementations.
Split each bar's change into gains and losses. Seed the first average over n periods. Then every subsequent bar updates the average as ((prev * (n - 1)) + current) / n — a recursive smoothing that weights history more heavily than a plain mean would. Relative strength is the ratio of average gain to average loss, and RSI maps that onto a 0–100 scale.
The consequence is worth stating plainly: because the average carries the whole series forward, an RSI reading depends on where your data started. Two charts with different history give different values on the same candle. It is a small difference, usually. It is not zero, and it is why we ported the rule from the crate source rather than from a textbook.
For the full walkthrough — overbought levels, divergence, and the specific market where RSI misleads worst — read the RSI breakdown.
Every indicator lags, and lag has a price
Smoothing removes noise by ignoring recent data. There is no version of that trade where you get the smoothing and keep the responsiveness.
A 200-period average needs a great many bars before it turns. That is precisely what makes it useful as a regime marker and useless as an entry trigger. Shorten the window for faster signals and you buy whipsaws instead.
I have watched people chase this by tuning lookbacks until the backtest glows. It glows because the parameter was picked after the data was already on the screen, which is the oldest way there is to build something that performs beautifully everywhere except in the future. Out of sample, the glow goes.
Candlesticks sit at the other end of this trade-off: a hammer is a single-bar signal with no lag at all, and correspondingly more noise. Neither approach is better. They fail differently, which is the only reason combining them helps.
Using them without fooling yourself
Three habits separate people who get value from indicators from people who collect them.
Pick indicators from different families. Momentum plus volatility tells you two things; two momentum indicators tell you one thing twice.
Define the failure before the entry. An indicator that cannot be wrong is not giving you information — it is giving you comfort, and comfort is expensive at scale.
Check the regime first. Oscillators behave sensibly in ranges and get shredded in strong trends, where "overbought" prints for weeks while price keeps climbing. The same reading means opposite things in the two environments, and no amount of parameter tuning fixes that.
None of this requires more indicators. It requires fewer, each one understood well enough that you could rebuild it from the arithmetic, with its limits written down somewhere you will actually see them at the moment you are tempted to ignore them. Fewer, understood. That is the whole discipline.
Frequently asked questions
What are the best trading indicators? There is no ranking that survives contact with a different market. Match the family to the question you are asking, use one from each, and understand the arithmetic before you trust the line.
How many indicators should a chart have? Two or three, from different families. Beyond that you are usually adding correlated opinions rather than information.
Do indicators work in crypto? The arithmetic works anywhere there are bars. Crypto's thinner books and reported-volume problems make volume-based indicators the least reliable family, and the 24/7 clock removes the session boundaries several classic indicators assume.
Are indicators better than candlestick patterns? They fail in different places, which is the useful property. Indicators lag and smooth; candlestick patterns are immediate and noisy.
Can indicators be used on on-chain data? Yes, and the inputs are often cleaner — settlement is observable rather than reported, as the DeFi primer lays out.
This is educational material, not financial advice. Indicators describe past price and do not predict future prices; trading carries substantial risk of loss, and no formula on this page removes it.