Technical Indicators
Data & signals

Technical Indicators. Price, transformed into something testable.

Technical indicators are mathematical transformations of price and volume: moving averages, RSI, MACD, ATR, Bollinger Bands and the rest. They do not add information, they reshape what is already there into something easier to state as a rule.

That is exactly why they suit automation. An indicator condition is unambiguous, which means it can be backtested and executed identically every time.

How it works

Their real value is that they are falsifiable

The argument about whether indicators work is usually the wrong one. Their advantage is that a rule like "enter when the fast average crosses above the slow one and ATR is above its median" can be tested over ten years of data in seconds. A discretionary judgement cannot. Indicators turn an opinion into a hypothesis you can check.

What you can trade on it

Technical Indicators in a strategy

Trend identification

Moving average relationships define trend direction in a way a rule can act on.

Momentum and exhaustion

RSI and MACD describe the pace of a move and when it is decelerating.

Volatility for sizing

ATR and band width let position size adapt to conditions rather than staying fixed.

Combining conditions

Most robust strategies stack several indicators so no single reading can trigger a trade alone.

A worked example

A trend pullback entry with a volatility filter

Four conditions, each removing a specific failure mode from the one before it. This is what stacking indicators is actually for.

All conditions must hold
  • IFThe 50 EMA is above the 200 EMA, establishing an uptrend
  • ANDPrice has pulled back to within 0.5% of the 20 EMA
  • ANDRSI(14) is between 40 and 55, a pause rather than a breakdown
  • ANDATR(14) is above its own 100-period median, so there is enough movement to pay for the trade
ThenEnter long at market, place the stop 1.5x ATR below entry, and target 3x ATR for a 2:1 reward-to-risk ratio.
Why it is built this way

Read the conditions as filters rather than a formula. The EMA relationship stops you buying pullbacks in a downtrend, where they are just the trend continuing. The RSI band separates a pause from a collapse. The ATR filter keeps the strategy out of markets too quiet to cover fees and slippage. Sizing the stop in ATR rather than a fixed percentage means the same rule behaves sensibly in calm and volatile conditions. The danger is the obvious one: every condition you add fits the history better and shrinks the sample you are fitting to, which is what walk-forward testing and paper trading exist to catch.

Where the data comes from
Exchange OHLCV

Indicators are computed from candles the exchange already publishes, so no third-party data is needed at all.

Computed in the Strategy Studio

The standard library is built in, so a condition references an indicator directly rather than you maintaining the maths.

Your own via webhook

If you calculate something custom elsewhere, send the result in as an external signal and treat it like any other condition.

Know the limits

Every indicator lags, and overfitting is easy

Indicators are computed from past prices, so they describe what has happened. The greater danger is optimisation: with enough parameters you can fit any history perfectly and learn nothing about the future. This is what walk-forward testing and paper trading are for.

Templates where this matters
Keep exploring
Liquid Edge

Put Technical Indicators to work on your own account.

No screens to babysit: define the conditions and the bot does the rest.

  • Trend identification
  • Momentum and exhaustion
  • Volatility for sizing