Step Index: The Most Underrated
Instrument for Algorithmic Trading
Most algorithmic traders discover Volatility 75 first. It moves. It trends. It has enough noise to make your indicators work and enough volatility to generate meaningful returns. But there's a quieter instrument in the synthetic index family that deserves far more attention from serious algo traders: Step Index.
Step Index doesn't behave like any other tradeable instrument. And once you understand why, it becomes obvious that it was built almost perfectly for rule-based algorithmic systems.
What Makes Step Index Different
Every other instrument — Forex pairs, equities, V75, V25 — has continuous price movement. Price can move 0.00012, or 0.00087, or 0.00003. The granularity is effectively infinite. Your spread can be 0.8 pips at 9am and 3.2 pips at 3am. Your slippage is unpredictable.
Step Index has exactly one price movement size: 0.10 points. Every tick, price moves either up 0.10 or down 0.10. That's it. There is no 0.05 movement. There is no 0.15 movement. Price never stays flat between ticks — it always steps in one direction.
This is not a limitation. It is a feature. And for algorithmic traders, it changes the entire calculus of strategy design.
Why Fixed Steps Are Systematically Better for Bots
Consider what your trading bot actually needs to make a decision. It needs to evaluate conditions — indicator values, price levels, consecutive tick direction. The messiness of continuous price streams adds noise at every step of this pipeline. A 0.3-pip spread on entry plus 0.1-pip slippage might seem trivial, but compounded across hundreds of trades, the gap between your backtest's assumed friction and actual execution costs is where most strategies quietly die.
Step Index eliminates most of this uncertainty:
- Fixed pip size: always 0.10 points. Your cost model is exact. If the spread is 0.10 points, you know that every entry costs you exactly one step. No surprises.
- No slippage on entry or exit. Because price can only be at a discrete level, you either get filled at your requested price or you don't. There's no 0.3-pip slippage on a fast market.
- No liquidity events. Step Index doesn't have a London open, an NFP, or an Asian session close where spreads blow out. It runs 24/7 with the same structural properties around the clock.
- Backtests are more honest. The gap between "what the backtest assumed" and "what live trading delivered" is the main reason backtests lie. Step Index's fixed mechanics mean your cost assumptions in the backtest match execution reality far more closely than on any Forex pair.
What Step Index Actually Looks Like
From a chart perspective, Step Index produces a distinctive staircase pattern. Zoomed out on a daily chart, it looks like a choppy sideways range with slow drift. Zoomed in to the tick level, you see a clean binary sequence: up, up, down, up, down, down, up.
The instrument has a slight directional bias at any given moment — short runs of consecutive same-direction steps are common, followed by reversals. This creates the mean-reversion opportunity that most Step Index strategies target: after N consecutive up-steps, the next step has a higher probability of being down. Whether this is exploitable at statistically significant levels depends on the time period and strategy parameters — which is precisely why backtesting matters.
On longer timeframes (1-minute, 5-minute candles), Step Index looks like a low-volatility instrument with a lot of small oscillations and occasional short trends. Bollinger Bands narrow significantly because each candle is composed of discrete 0.10-point steps rather than continuous price action. This makes it ideal for Bollinger Band squeeze strategies, RSI oscillator setups, and momentum filters based on recent step direction.
Strategy Patterns That Work on Step Index
1. Consecutive Step Momentum
The simplest Step Index strategy: count consecutive same-direction steps. If the last 5 ticks were all up-steps, open a BUY. If the last 5 ticks were all down-steps, open a SELL. Exit after 3 opposing steps.
This works because Step Index exhibits short-term momentum clustering — runs tend to continue slightly longer than pure random-walk theory would predict. The key variables to tune are the entry threshold (how many consecutive steps trigger entry) and the exit condition. Backtest across a range of values; Step Index's consistent properties mean backtest results are relatively stable across different time periods.
In ForgeAlpha's condition engine, you can approximate this with RSI on a very short period (RSI(3) or RSI(5)) on tick or 1-minute timeframes. When RSI(3) is above 80, the recent pressure is overwhelmingly upward — a reasonable momentum signal on Step Index. When RSI(3) is below 20, the recent sequence has been mostly down-steps.
2. RSI Mean-Reversion
After a long run in one direction, Step Index tends to mean-revert. RSI(14) on a 1-minute chart works surprisingly well as a reversal filter. When RSI dips below 25, the instrument has been stepping down for a sustained period — and a reversion to the upside is statistically more likely. Enter long, exit when RSI crosses above 50.
Add a Bollinger Band filter: only take mean-reversion entries when price is at or below the lower band (2σ). This combines two independent signals confirming an oversold condition, which reduces false signals significantly.
3. Bollinger Band Step Range
On Step Index, Bollinger Bands (period 20, deviation 2) on a 5-minute chart tend to form a tight, predictable range. The instrument rarely breaks out of this range for extended periods. A simple range-fade strategy: buy when price touches the lower band, sell when price touches the upper band, exit at the midline (SMA 20).
Because Step Index spreads are fixed and low, this kind of short-range mean-reversion is cost-viable in a way that it often isn't on Forex pairs where the spread alone can consume most of the range profit.
4. Step Count Grid
For traders comfortable with grid strategies: because each step is exactly 0.10 points, you can set grid levels at exact multiples of the step size. A grid with levels every 1.00 point (10 steps) places orders at predictable price levels that price will always hit precisely — no partial fills, no level-rounding issues.
Use ForgeAlpha's built-in grid system with an ATR multiplier to adapt the grid spacing dynamically based on recent volatility. Even though each step is 0.10 points, the overall range Step Index covers in a session varies — ATR helps you set appropriate grid width.
The Pip Size Problem (And Why It Matters)
Here's a technical detail that most platforms get wrong for Step Index: the pip value.
Most brokers and platforms assume a default pip size of 0.0001 for unknown instruments — the standard 4-decimal-place Forex convention. Step Index uses 0.01 as its pip size (2-decimal-place pricing). This means an instrument with a 0.10-point spread is ten times larger in cost terms than a platform assuming 0.0001 pips would calculate.
The result: if your backtesting or live trading platform uses the wrong pip size for Step Index, your cost model is off by a factor of 10. Your backtest will show strategies as more profitable than they are in reality. Your live trades will cost far more than expected per round-trip. You'll wonder why a profitable backtest is underperforming in production.
ForgeAlpha now resolves pip size for Step Index (and all other synthetic indices) via a broker symbol specification lookup — querying the actual instrument spec from your connected MT5 account rather than applying a heuristic default. This means your cost model in both backtests and live cost analysis correctly uses 0.01 as the pip size for Step Index, giving you an accurate friction picture before you commit capital.
A backtest that assumes 0.0001 pip size for Step Index will calculate your friction cost as 10× cheaper than it actually is. If you're running 100 trades per month with a 0.10-point spread and 0.01 pip value, your actual friction is $1.00 per trade on a 0.01 lot. With the wrong pip assumption, the backtest calculates $0.10 per trade — a 90% underestimate that quietly destroys your edge.
Setting Up a Step Index Bot in ForgeAlpha
ForgeAlpha supports Step Index natively with full symbol resolution, correct cost modeling, and backtesting via DerivData. Here's the workflow:
- Connect your Deriv MT5 account. ForgeAlpha provisions the MetaApi connection from your MT5 login credentials. You provide your Deriv MT5 login, server, and password — ForgeAlpha handles the rest. Step Index will appear in your available symbols list under the Synthetics category.
- Create a strategy. Select
Step Indexas your symbol. Build your entry and exit rules from the 74 available indicators. For Step Index, RSI(3) on 1-minute, Bollinger Bands on 5-minute, and EMA crossover filters are common starting points. Set your lot sizing — for Step Index, fixed lot sizing is typically cleaner than equity-percentage sizing given the instrument's low volatility. - Backtest with accurate friction. When you run a backtest on Step Index in ForgeAlpha, the pip size and spread are pulled from your actual account's symbol spec. Set your spread and commission values to match what your Deriv broker charges. The backtest will model 4 ticks per candle (Open → Low/High → High/Low → Close) with your configured slippage. Because Step Index has consistent spreads, your friction model will be far more accurate than on Forex instruments with variable spreads.
- Paper trade first. Connect a Paper bot to Step Index and let it run for at least 72 hours before going live. Step Index trades 24/7, so 72 hours gives you a meaningful sample. Compare signal frequency, average trade duration, and P&L against your backtest expectations.
- Deploy live with capital isolation. When your paper results look good, deploy a Live bot with a defined capital allocation. Because ForgeAlpha's virtual capital system isolates each bot's funds on the shared MT5 account, your Step Index bot's risk is capped to its assigned allocation — other bots on the same account are unaffected.
Common Mistakes Step Index Traders Make
1. Overcomplicating the entry conditions
Step Index's clean, structured tick data makes it tempting to layer indicator on top of indicator. Resist this. Because each tick is binary (up or down), simple conditions — RSI below 30, last 5 steps all down, price at lower Bollinger Band — often perform as well or better than complex multi-indicator setups. Start simple. Add complexity only when backtest evidence justifies it.
2. Using wide stop-losses designed for continuous instruments
A 50-pip stop-loss on EURUSD might feel conservative. On Step Index, 50 steps (5.0 points) is a significant move. Calibrate your stops to Step Index's actual range behavior — look at ATR on your chosen timeframe and set stops relative to that, not to what feels familiar from Forex.
3. Ignoring the 24/7 nature
If your strategy includes time filters ("only trade between 8am and 5pm"), you're artificially reducing your opportunity set on an instrument that has no session structure. Consider whether those time restrictions add genuine edge, or whether they're a habit carried over from Forex strategy design. Step Index doesn't have a quiet Asian session — it ticks the same way at 3am Saturday as at 10am Tuesday.
4. Not accounting for the counterparty structure
Step Index is provided by Deriv, a single counterparty. Unlike Forex where you're trading through an interbank liquidity pool, you're always on the other side of Deriv's book. This doesn't make it a bad instrument — the statistical properties are clearly defined and consistent — but you should size your Step Index allocation as one component of a portfolio, not your entire trading capital.
The Bottom Line
Step Index is a niche instrument, and that's precisely why it remains underexplored. Most algo traders are focused on EURUSD, GBPUSD, and Gold. They haven't thought about what a fixed-step, 24/7, no-news-event instrument offers to a systematic trading approach.
The answer is: a dramatically cleaner backtesting environment, more predictable live costs, and strategy logic that maps directly to observable market structure rather than fighting through continuous noise. The fixed 0.10-point step is a constraint that becomes an advantage when you design around it.
If you've been trading Forex bots and hitting the wall of news events, variable spreads, and backtest results that don't hold in live trading — Step Index is worth a serious look. Backtest it honestly (with accurate pip sizing), paper trade it for a week, and let the data decide whether it belongs in your algo portfolio.
Build your first Step Index bot
Connect your Deriv MT5 account, select Step Index from the Synthetics category, build your strategy with 74 indicators, backtest with accurate friction modeling, and paper trade before going live.
Get started free