
I backtested The Trading Geek's strategy 130,201 times. Here are the results.
A trading Youtuber called The Trading Geek claims he turned $20 into $10M daytrading using smart money concepts (liquidity sweeps, order blocks, fair value gaps). Videos like his get millions of views, and viewers walk away with a strategy they think they can trade — but almost none of these creators show a real backtest, just a curated equity curve or a handful of cherry-picked chart examples. So to check if his strategy actually holds water, I coded it from scratch and ran 130,201 parameter combinations against 5 years of real market data.
The strategy
Three building blocks, chained together:
- Liquidity sweep — price runs past a recent high/low, traps breakout traders, then reverses (break of structure)
- Order block — the last candle before that reversal, where he claims institutional money entered
- Fair value gap — an imbalance the market tends to fill; used for entry timing instead of blindly entering at the order block
The problem with coding and backtesting this strategy is that it's not fully mechanically defined. There are no fixed rules for what counts as a valid swing point, how deep a sweep needs to be, or how big a fair value gap should be. That ambiguity is exactly why nobody backtests these strategies properly. Which is likely intentional. Instead of picking one interpretation, I turned every vague concept into parameterized rules and tested every combination: swing point detection, liquidity sweep depth, fair value gap size/location, entry timing, timeframe, asset, etc.
Results
The baseline version, or as close as I could get to it with mechanical rules, lost 60% over 5 years even with the best possible settings (realistic trading costs included).
Out of all 130,201 configurations, 24,236 were profitable. Only 211 beat the market. Digging into what those 211 have in common:
- Price-based swing detection (directional change method) beats time-based, and smaller swings outperform bigger ones
- Shallow liquidity sweeps outperform deep ones — large sweeps produced zero winners
- Fair value gaps actually hurt performance — the best entry model skips FVGs entirely and enters at the order block midpoint instead, contradicting his own claim
- Lower reward-to-risk is best; 1:1.5 was most prevalent
- Almost 70% of winners cluster on the 1H timeframe, despite The Trading Geek's claim that it ought to work on any timeframe.
With every optimized parameter locked in, average return across the winners was 159% over 5 years, and the config held up (profitable) on 6 of 7 assets tested — a full run came to roughly +2,500%. But just to be clear, that number is very likely inflated by selection bias. Testing 130k variations and cherry-picking the best one is a classic overfitting trap. Whether this specific configuration has a real edge or is just noise is a separate question.
I'm sharing this as a reminder to never blindly trust anything you see online, especially when it comes to trading. It's much easier to sell courses than it is to make money in the markets.
If you want to see full breakdown of the strategy and results, you can find it in this video, or check out the code on my github page. If you disagree with how I mechanized any part of the strategy, the definitions are all there and you can test your own version.