Quant Lab

Quant Lab — Genetic Strategy Builder for MetaTrader 5

What Quant Lab Is

Quant Lab is a genetic-algorithm-driven strategy builder that runs directly on your MetaTrader 5 chart. Instead of hand-coding an Expert Advisor and guessing at parameters, you let an evolutionary search process discover a combination of entry logic, exit logic, a market filter, and a position-sizing rule that performs well on your chart's real historical data — then export that discovery as a standalone, compilable MQL5 EA.

Quant Lab doesn't invent trading ideas from nothing. It works from a defined set of building blocks and searches the space of ways to combine and parameterize them:

  • Entry module — the signal that triggers a trade: MA Crossover, RSI Mean-Reversion, Donchian Breakout, or Bollinger Band Reversion
  • Exit module — how a trade closes: Fixed Stop-Loss/Take-Profit, Trailing Stop, Opposite-Signal, or Time-Based
  • Filter module — an optional veto layer applied before any entry: None, Trend filter, or Volatility filter
  • Money management module — position sizing that scales with your account balance (compounding), with an evolved cap to prevent runaway sizing

Each candidate strategy is a "chromosome" made of one gene from each of those four modules, plus that module's specific parameters (periods, thresholds, point distances). The genetic algorithm doesn't test every possible combination — it evolves toward good ones through selection, crossover, and mutation, the same way biological evolution favors traits that work.

Step-by-Step: How to Use It

1. Attach it to the right chart. Open the exact symbol and timeframe you actually intend to trade live. Quant Lab pulls real price data directly from this chart — it does not use synthetic or third-party data, so the chart you attach it to determines everything downstream.

2. Reload live data. Click "Reload Live Data." This pulls the number of bars set in InpHistoryBars (3000 by default) directly from the chart via CopyClose / CopyHigh / CopyLow . The dashboard's "Source" label will show you the exact date range loaded — note this range, because you'll need it later to validate results.

3. Review your GA settings before running. Key inputs:

  • InpPopulationSize / InpGenerations — bigger and longer search more thoroughly but take longer to run
  • InpMinTrades — rejects any strategy that doesn't generate at least this many trades over the test window (protects against low-sample-size flukes)
  • InpMaxDrawdownCap — rejects any strategy whose backtested drawdown exceeds this dollar figure
  • InpAccountRef — the starting balance the GA assumes for compounding position sizing. Write this number down — you will need to set MetaTrader's Strategy Tester "Initial Deposit" to this exact figure later.
  • InpSpreadPoints — set this to your actual broker's typical spread on this symbol. Underestimating spread makes the backtest look better than reality will be.

4. Click "Start Evolution." The dashboard updates live: the fitness chart shows the best and average fitness climbing generation by generation, and the "Live Population" panel shows the current top candidates. Let it run to completion — stopping early gives the algorithm less time to converge on a genuinely good combination.

5. Read the result. When evolution finishes, the "Best Strategy" panel shows the winning entry/exit/filter combination, its evolved parameters, and its backtested stats: net %, profit factor, win rate, max drawdown, and trade count. The equity curve chart shows the shape of that backtest.

6. Export the EA. Click "Export .MQ5." This writes a complete, standalone Expert Advisor to MQL5\Files\. Look for the name generated in the Expert Advisor section in toolbox and that is the name of the EA you will find in the IDE. You then open the code, copy it and paste it into a brand new indicator window, then compile it and this is your EA.

7. Compile and test. Open MetaEditor, navigate to the moved file, press F7 to compile, then open it in Strategy Tester.

How to Get the Closest Match Between Backtest and Live Results

This is the part most builders skip, and it's the difference between a strategy that "works" only in Quant Lab's dashboard versus one that behaves the same way when you actually run it.

  • Match the symbol and timeframe exactly. The strategy was evolved on one specific chart. Attaching the exported EA to a different symbol or timeframe means it's trading against different price behavior than what it was optimized for.
  • Match the date range. Quant Lab prints the exact bar range it evolved against (visible on the dashboard and in the Experts log). Set Strategy Tester's "From" and "To" dates to that same range for the most directly comparable test.
  • Match the Initial Deposit. Because position sizing compounds off the account balance, Strategy Tester's starting deposit must equal InpAccountRef exactly. A mismatch here means every lot-size calculation from trade one onward will differ from what the GA scored — and because it compounds, that gap grows with every subsequent trade rather than staying constant. The generated EA checks this on startup and prints a warning to the Journal if the balance doesn't match.
  • Use a tick model close to what the backtest assumed. Quant Lab's engine checks stop-loss/take-profit against each bar's high/low (a realistic intrabar fill), not just its close. In Strategy Tester, "1 Minute OHLC" or "Every tick based on real ticks" will get you closest to this; "Open prices only" will diverge more.
  • Set your spread input honestly. If InpSpreadPoints doesn't reflect your broker's real typical spread on that symbol, the backtest cost model won't match what you actually pay live.

Why Results Will Still Vary — and Why That's Expected, Not a Bug

Even with all of the above matched exactly, don't expect the numbers to be bit-for-bit identical between Quant Lab's internal backtest, MetaTrader's Strategy Tester, and eventual live/demo trading. Several real, unavoidable sources of variation:

  • Broker-to-broker differences. Spread, commission structure, swap rates, execution latency, and requote behavior all differ between brokers — sometimes significantly. A strategy evolved with a 20-point spread assumption will perform differently on a broker whose real spread is 8 points or 35 points.
  • Tick data granularity. Strategy Tester's synthetic tick generation (used to simulate intrabar price movement between OHLC bars) is a statistical approximation, not a perfect reconstruction of what actually happened tick-by-tick in the real market. Two different tick-generation modes in the same tester can produce slightly different fills on the same bar.
  • Slippage and requotes in live/demo trading, which no backtest — Quant Lab's or MetaTrader's — fully captures, since they depend on real-time liquidity conditions at the moment of execution.
  • Lot-size rounding. Different brokers have different minimum lot steps and maximum position sizes; Quant Lab normalizes to your connected broker's actual volume constraints, but a strategy evolved on one broker's lot step will size very slightly differently on another.

None of this means the tool is broken — it means backtesting of any kind, on any platform, from any vendor, is a model of the market, not a recording of it. The goal of matching symbol/timeframe/date range/deposit isn't to eliminate variation, it's to reduce it to the irreducible minimum so you're comparing like-for-like as closely as the platform allows.

Further Optimization You Should Do Before Trusting a Result

Treat Quant Lab's first output as a candidate, not a finished product:

  • Re-run evolution multiple times. Genetic algorithms involve randomness in initialization, mutation, and crossover — running the same settings twice can converge on different (sometimes very different) winning strategies. If a particular entry/exit combination keeps winning across several independent runs, that's a much stronger signal than a single lucky result.
  • Check out-of-sample performance, not just the in-sample fitness score. A strategy that only looks good on the exact bars it was evolved against may be overfit to noise in that specific window. Test the exported EA on a date range outside what Quant Lab trained on.
  • Vary the starting conditions. Try a longer or shorter InpHistoryBars window, a different population size, or a different symbol/timeframe entirely, and see whether similar strategy types keep emerging as winners — consistency across variations is more trustworthy than one strong run.
  • Forward-test on a demo account before committing real capital. No backtest, however carefully matched, substitutes for watching the strategy trade in real market conditions with real (if simulated) fills over weeks or months.
  • Understand what Quant Lab does not do. It runs a single in-sample/out-of-sample split. Further optimization should be done in strategy tester

Recommended products
VWAP Wave
Rizwan Akram
VWAP WAVE [Riz] - MT5 Indicator               Advanced VWAP Divergence Detection System VWAP Wave is a professional-grade Volume Weighted Average Price indicator with built-in divergence detection system. It identifies high-probability reversal and continuation signals by analyzing price-VWAP relationships across multiple timeframes.
FREE
RSI Cortex Ai
Michael Prescott Burney
RSI Cortex AI for MT5 RSI Cortex AI is a MetaTrader 5 indicator designed to help traders analyze momentum using a multi-factor ranking model instead of relying only on a fixed RSI threshold approach. It combines momentum features, directional ranking, confidence scoring, and adaptive filtering into a clean TradingView-style workspace for chart-based analysis. What the indicator does RSI Cortex AI evaluates momentum using a broader feature set than a standard RSI line. It is designed to help trad
FREE
Ultimate Retest
Nguyen Thanh Cong
5 (6)
Introduction The "Ultimate Retest" Indicator stands as the pinnacle of technical analysis made specially for support/resistance or supply/demand traders. By utilizing advanced mathematical computations, this indicator can swiftly and accurately identify the most powerful support and resistance levels where the big players are putting their huge orders and give traders a chance to enter the on the level retest with impeccable timing, thereby enhancing their decision-making and trading outcomes.
FREE
Trade Assistance AlgoMatrix v2.0 – Advanced Trade Management Utility for MetaTrader 5 Trade Assistance AlgoMatrix v2.0 is a professional trade management utility for MT5 designed for traders who want better control over positions, exits, and risk directly from the chart. Many traders spend most of their time searching for entries, but long-term consistency often depends on how trades are managed after entry. This utility was created to make that process easier by providing a structured and pract
Watermark Centralized
Ronnie Ferreira Silva
4 (4)
Watermark Centralized Adds a watermark centered with the asset name and chosen period. It is possible to override the font type, font size, font color and separator character. The watermark is positioned behind the candles, not disturbing the visualization. It has automatic re-centering if the window is resized. Hope this indicator helps you, good trading ;)
FREE
Order Closer Manager for MetaTrader 5 The Order Closer Manager is a powerful and easy-to-use MetaTrader 5 (MT5) Expert Advisor designed to help traders efficiently manage their open orders. This EA is ideal for traders who want precise control over their trades with minimal manual intervention. It features an intuitive dashboard that allows for easy closing of positions, applying breakeven, and other order management functionalities. The EA supports FIFO and LIFO methods for added flexibility, m
GDS Renko Pip ST Chart - Pip-Based Renko Chart Indicator for MetaTrader 5 GDS Renko Pip ST Chart is a pip-based Renko chart indicator for MetaTrader 5. It helps traders build and study cleaner Renko price movement using a practical fixed pip or point-based brick structure. This tool is designed as a Renko chart foundation for manual analysis. It does not predict the market, does not generate buy or sell signals and does not decide whether a trade should be opened. What Pip ST Chart Does Renko ch
FREE
VWAP Fibo Bands RSJ
JETINVEST
4.83 (12)
VWAP Fibo Bands RSJ is an indicator that traces the lines of the daily VWAP and from it creates bands using Fibonacci proportions. This spectacular indicator creates 10 band levels through the selected VWAP period using Fibonacci ratios. It is fantastic how the prices respect each level of the bands, where it is possible to realize that almost every time the price closes above / below a level of the bands he will seek the next one. If close above will seek to reach the level above and if close
FREE
Haven Stop Loss Hunter
Maksim Tarutin
4.4 (5)
Haven Stop Loss Hunter 2.0 - A New Level of Liquidity Analysis Meet the major update — Haven Stop Loss Hunter 2.0 ! This is a professional tool designed for identifying liquidity pools and false breakouts (Sweeps), now with even greater flexibility and functionality [1]. In this version, we have implemented full multi-timeframe (MTF) analysis and an advanced alert system, helping you track market manipulations based on the Smart Money Concept with timely notifications, without wasting time switc
FREE
Renko Maker
Aleksandr Slavskii
5 (1)
Это DEMO версия Renko Maker PRO  к сожалению правила маркета не позволили указать это в названии. Почему то проверка маркета запрещает в названии слово DEMO. Демо версия строит ренко бары только на основе EURUSD из 1000 последних минутных баров. Revolution Renko Maker PRO — Инновационный Конструктор Ренко Графиков для MetaTrader 5   Создавайте идеальные ренко-бары с сохранением тиковых данных и реальных объемов — теперь с полной поддержкой индикаторов, советников и тестера стратегий!  
FREE
Elevate Your Trading with Advanced Anchored Volume Weighted Average Price Technology Unlock the true power of price action with our premium Anchored VWAP Indicator for MetaTrader 5 - the essential tool for precision entries, strategic exits, and high-probability trend continuation setups. Write me a DM for a 7 day free trial.  Anchored VWAP Plus gives traders unprecedented control by allowing custom anchor points for Volume Weighted Average Price calculations on any chart. With support for 4 sim
FREE
Fvg Edge
Ahmad Meftah Abdulsalam Alawwami
5 (3)
FVG Smart Zones – Free Edition Fair Value Gap Detection Indicator for MetaTrader 5 (MT5) Are you looking for a real trading tool – not just another random indicator? FVG Smart Zones – Free Edition gives you professional market insight by automatically detecting Fair Value Gaps (FVGs) and highlighting high-probability trading zones directly on your chart. Built for traders following: Smart Money Concepts (SMC) ICT Trading Concepts Price Action Supply & Demand Analysis Institutiona
FREE
Sandman FX
Michael Prescott Burney
1 (1)
Sandman FX Expert Advisor – EURUSD H1 Sandman FX is a precision-engineered Expert Advisor built specifically for the EURUSD pair on the H1 timeframe. Designed with robust technical architecture, it utilizes adaptive logic to respond dynamically to changing market conditions. The system incorporates session filtering, intelligent trade management, signal confirmation layers, and built-in protection mechanisms to ensure strategic execution in a wide range of market environments. This EA features:
FREE
The Expert Advisor is used to create Renko chart, realtime updates, easy for technical analysis. Backtest your strategy with all indicators with Renko chart in MetaTrader 5. Parameters Box Size : input the number of box size. Show Wicks : if true , draw a candle with high/low. History Start: input the date to creat first candle. Maximum Bars: limit number of bars on renko chart How to use Attach the Expert Advisor to a chart (timeframe M1), for which you want to create a renko. Input box size a
BTC Master Pro
Farzad Saadatinia
4.58 (12)
BTC Master Pro – Your trusted partner in disciplined Bitcoin trading. The new version is now enhanced with OpenAI artificial intelligence , delivering smarter execution and improved trade filtering in volatile crypto conditions. This professional Expert Advisor is built specifically for Bitcoin (BTCUSD) trading on MetaTrader 5 , focusing on structured execution, controlled exposure, and intelligent risk management. Price: $499  →  Next: $699  →  Final: $999 LIVE SIGNAL HERE OpenAI-Powered Exec
Points of control
Martin Slacka
5 (1)
The POC_Levels indicator calculates and displays the 3 most frequently occurring price levels (Points of Control – POC) based on historical candles. It is useful for identifying areas of high market interest (like support/resistance zones) across any timeframe. How It Works The indicator analyzes the last LookbackBars candles. It counts how many times each price level (based on the selected price type) appears. Then it selects the top 3 most frequent prices and draws horizontal lines at those l
FREE
Fundamentals Guru
Israr Hussain Shah
Here   our more valuable tools SMC Trend Trading   ,  Easy SMC Trading  ,  Institutional SMC Architect Volume Analysis Tools  ,  Volume flow Profile  ,  Market volume profile  , FVG with Volume  , Liquidity Heatmap Profile  ,  Volume Spread Analysis 1. What does this Terminal actually do? The   Guru Terminal   is designed to solve the "Retail Blindness" problem. Most traders only look at candles; this terminal gives you   Institutional Context . It helps you: Track Smart Money:   See what the l
FREE
SMT Divergences MT5
Diego Arribas Lopez
MT4 Version DoIt SMT Divergences - Non-Repainting ICT SMT Indicator for MT5 An SMT divergence indicator for MT5 that shows a perfect setup only after the swing has changed is not giving confirmation. It is giving hindsight. DoIt SMT Divergences compares confirmed swing highs and lows between the chart symbol and a second correlated instrument. When one market makes a new extreme and the other fails to confirm it, the indicator marks the disagreement. The default workflow uses confirmed swings. Y
Mini Charts MT5
Sergey Efimenko
4.83 (23)
The indicator displays minimized charts of any symbol from any timeframe. The maximum number of displayed charts is 28. The charts can be located both in the main and bottom window. Two display modes: candles and bars. Amount of displayed data (bars and candles) and chart sizes are adjustable. To work with a mini chat, you must first put the desired indicator(s) on a regular chart, then save it as a template and apply a template for the mini chart via the appropriate parameter, for example, for
FREE
Modern Dark Chart Theme for MT5 Upgrade your MetaTrader 5 chart into a clean, dark, professional trading workspace. Your chart is your trading office. It is where you analyze the market, test Expert Advisors, review setups, record videos, share screenshots, and make trading decisions. If your MT5 chart looks old, bright, noisy, or unprofessional, your trading environment can feel distracted before you even start your analysis. Modern Dark Chart Theme for MT5 helps you create a cleaner, darker,
FREE
VWAP Edge Pro
Krzysztof Karleszko
4.5 (2)
VWAP Edge Pro is a Volume Weighted Average Price indicator for MetaTrader 5 that combines session VWAP, rolling VWAPs, standard deviation bands, daily volume profile, and a live signal reading panel in a single indicator. VWAP (Volume Weighted Average Price) calculates the average price of an instrument weighted by volume. It resets at the start of each session and is used by many intraday traders as a reference for fair value. Price above VWAP suggests buyers are in control. Price below VWAP s
FREE
This indicator creates a Renko-based custom symbol in MetaTrader 5. Renko charts are built using price movement only, not time, making them useful for analyzing trends and filtering noise. Features Customizable brick size in points. Option to calculate brick size using ATR (adaptive). Ability to show or hide wicks. Creates and updates a custom Renko chart symbol. Automatically opens the chart window (optional). Maintains a limited bar history for performance. Inputs BrickSizePoints – brick size
FREE
Candle Perspective Structure Indicator MT5 is a simple indicator that defines and displays the candlestick structure of the market. This indicator will suit both experienced traders and beginners who find it difficult to follow the structure visually. If you want to see more high-quality products or order the development/conversion of your own products, visit my partners' website: 4xDev Get 10% OFF on manual strategies automation services or indicator development/conversion services at 4xDev
FREE
The Dynamic Market Profile allows you to analyze the volume of any specific chart region manually and instantly. No more being restricted to fixed daily or weekly profiles: you choose the exact move, consolidation, or trend leg you want to analyze . The indicator lets you draw up to 5 independent areas at the same time using interactive rectangles . How It Works on a Daily Basis Create the zone: Press keys 1, 2, 3, 4, or 5 on your keyboard (or use the on-screen buttons) to plot a rectangle . A
FREE
GDS Renko Ghost Free Renko Market Memory Visualization Indicator for MetaTrader 5 GDS Renko Ghost is a free MetaTrader 5 indicator for traders who use Renko charts and want to study how similar Renko structures behaved in the past. The indicator visualizes historical Renko memory: similar past structures, continuation paths, consensus behavior and uncertainty zones. It does not give buy or sell signals. It does not predict price movement. It is a visual research and context tool for manual Renko
FREE
Quick Trade Manager (QTM) is a powerful tool for fast and intuitive trading directly on the MT5 chart, fully supporting custom (synthetic) symbols. QTM expands quick trading capabilities directly on the chart, making one-click trading even more convenient. Automatic position sizing based on a specified risk percentage per trade is available. All custom (synthetic) symbols are fully supported. For example, QTM can be used for trading on a seconds chart, as well as on Renko charts or any other cus
FREE
This utility EA will display simple renko, hence the name essential renko. The renko will be shown in a new tab and using custom symbol. Please do note (especially for those who new to Renko), that Renko does not follow timeline as it will follow price movement. That's why it has a lot of potential where you can attach any EA that you want and use any custom indicator in this new custom symbol for renko. Always use M1 timeframe. Most of the time you don't need to change anything. But if you d
FREE
Bohemia Gold MT5
Vladislav Taska
4.75 (4)
Bohemia Gold MT5 is  Trend & Volatility EA trading system designed specifically for Gold (XAUUSD) . It combines higher-timeframe trend filtering , trend detection , volatility-based SL management , and advanced trade management to adapt market conditions. It uses style logic focused on trend strength, volatility, and capital protection. NOTE:   Based on backtests, I found better trading results with the following setup: D1/H4/H2 (Trend/ADX/ATR & trade). The SET file can be downloaded here … bohe
FREE
Barak Mega EA
Jorge Jovanny Hernandez Maldonado
BARAK MEGA EA  is a fully automated trading Expert Advisor designed for traders who demand total control, strategic flexibility, and advanced risk management within a single system. This EA functions as a true strategy builder , allowing you to combine multiple technical indicators and custom rules to adapt to any market, asset, or timeframe. Unlike traditional robots with fixed logic, BARAK MEGA EA features a modular architecture where every component can be independently enabled, disabled, and
FREE
Set TP & SL by Price – Auto Order Modifier for MT5 Automatically set precise TP and SL price levels on any trade ️ Works with all pairs and EAs, filter by symbol or magic number This Expert Advisor lets you define and apply exact Take Profit (TP) and Stop Loss (SL) levels to your trades using direct price values (e.g., 1.12345 on EURUSD). No points, no pips. Just clean, accurate trade management across all orders or filtered by chart or magic number. Key Features: Instantly modify T
Buyers of this product also purchase
This product was updated for the 2026 market and optimized for the latest MT5 builds . PRICE UPDATE NOTICE: Smart Trend Trading System is currently available for $99. The price will increase to $199 after the next 30 purchases. SPECIAL OFFER:  After purchasing Smart Trend Trading System, send me a private message to claim the Smart Universal EA for FREE and turn your Smart Trend signals into automated trades. Smart Trend Trading System is a complete non-repainting, non-redrawing, and non-laggi
SuperScalp Pro
Van Minh Nguyen
4.69 (29)
SuperScalp Pro –  Professional Multi-Layer Confluence Scalping System SuperScalp Pro is a professional multi-layer confluence scalping system designed to help traders identify higher-probability opportunities with clearer entry confirmation, ATR-based Stop Loss and Take Profit levels, and flexible signal filtering across XAUUSD, BTCUSD, and major Forex pairs. Full documentation available in the product blog:   [User Guide] Auto trading available via SuperScalp Pro Auto Trader EA:   [Auto Trader
Trend Sniper X
Sarvarbek Abduvoxobov
5 (6)
Trend Sniper X is a multi-timeframe trend-following indicator for MetaTrader 5 that helps traders identify trend direction and potential reversal points with clarity and precision. Price Information: The current price is promotional and is subject to change as upcoming updates and new features are released. Code2Profit Channel Master the Market with Multi-Timeframe Analysis! Technical Specifications Platform MetaTrader 5 Indicator Type Multi-Timeframe Trend Indicator Operating Timeframe Any char
Launch Discount Ending Soon — Secure the Lowest Price Today. After purchase, contact via   MQL5 inbox   to receive your buyer kit and bonus. Let's be honest first. No indicator will make you profitable on its own. If someone tells you otherwise, they're selling you a dream. Every indicator that shows perfect buy/sell arrows can be made to look flawless — just zoom into the right window of history and screenshot the winners. We won't do that. SMC Intraday Formula is a tool. It reads the market s
Welcome to ENTRY IN THE ZONE AND SMC MULTI TIMEFRAME Entry In The Zone and SMC Multi Timeframe is a professional trading indicator built on Smart Money Concepts (SMC) , combining market structure analysis with a No Repaint BUY / SELL signal system in a single indicator. It helps traders understand market structure more clearly, identify key price zones, and focus on higher-quality trading opportunities. By combining Multi-Timeframe Analysis , Points of Interest (POIs) , and real-time signals, th
Neuro Poseidon MT5
Daria Rezueva
4.8 (54)
Neuro Poseidon is a new indicator by Daria Rezueva. It combines precise trading signals with adaptive TP/SL levels - creating best possible trades as a result! Message me and get  Neuro Poseidon Assistant  as a gift to automize your trading process! What makes it stand out? 1. Proven profitability on all assets and timeframes 2. Only confirmed BUY and SELL signals present on the chart 3. Adaptive TP & SL levels generated by the software for each trade 4. Easy to understand - suitable for al
M1 Quantum MT5
Hamed Dehgani
4.6 (10)
Live Trading Signals Using M1 Quantum : Signal  (Trade executed automatically by the Quantum Trade Assistant , included free with this product.) Price Plan: Current Price: $169 (Early Adopter Offer) Next Planned Price: $189 Planned Retail Price: $299 Developer Note:  After your purchase, please contact me to receive the latest  recommended settings (set file) , trading tips, and an invitation to our  VIP Support Group , where you can connect with other M1 Quantum users. FAQ - SETFILES - INSTALL
Gann Made Easy   is a professional and easy to use Forex trading system which is based on the best principles of trading using the theory of W.D. Gann. The indicator provides accurate BUY and SELL signals including Stop Loss and Take Profit levels. You can trade even on the go using PUSH notifications. PLEASE CONTACT ME AFTER PURCHASE TO GET TRADING  INSTRUCTIONS   AND GREAT EXTRA INDICATORS   FOR FREE! Probably you already   heard   about the Gann trading methods before. Usually the Gann theory
The  UZFX {SSS} Scalping Smart Signals v4.0 MT5  is a Non Repaint high-performance trading indicator designed for Scalpers, Day Traders, and Swing Traders  who demand accurate, real-time signals in fast-moving markets. Developed by  (UZFX-LABS) , this indicator combines price action analysis, trend confirmation, and smart filtering to generate high-probability  buy and sell signals, Warning Signals, and Trend Continuation Opportunities across all currency pairs and timeframes.  Stop second-guess
Divergence Bomber
Ihor Otkydach
4.9 (92)
Each buyer of this indicator also receives the following for free: The custom utility "Bomber Utility", which automatically manages every trade, sets Stop Loss and Take Profit levels, and closes trades according to the rules of this strategy Set files for configuring the indicator for various assets Set files for configuring Bomber Utility in the following modes: "Minimum Risk", "Balanced Risk", and "Wait-and-See Strategy" A step-by-step video manual to help you quickly install, configure, and s
Zoryk Gold
Reda El Koutbane
5 (2)
only 1 copies left at the low price of 39 $ . ZORYK — Advanced XAUUSD Signal System for MetaTrader 5 You know the feeling. You spend time analyzing gold. You wait for the entry. You finally open the trade, and price immediately moves against you. You close too early, move the Stop Loss, or hesitate for a few seconds. Then the market reaches the exact destination you originally expected without you. The direction was not always the problem. The real problem was uncertainty. You did not kno
Atomic Analyst MT5
Issam Kassas
4.36 (45)
This product was updated for the 2026 market and optimized for the latest MT5 builds. PRICE UPDATE NOTICE: Atomic Analyst is currently available for $99. The price will increase to $199 after the next 30 purchases . SPECIAL OFFER:  After purchasing Atomic Analyst, send me a private message to claim the Smart Universal EA for FREE and turn your Atomic Analyst signals into automated trades. Atomic Analyst is a non-repainting, non-redrawing, and non-lagging price action trading indicator designed
The legend is back! Entry Points Pro 10. A relaunch of the legendary indicator that held a Top-3 spot on the MQL5 Market for 3 years. Hundreds of rave reviews (589 across two versions), thousands of traders use it every day, 31,000+ demo downloads  across   MT4   +   MT5 . I have read every one of your reviews from the past five years — and instead of promises, I built the answers into version 10. From an author who has been in the market since 1999 and values honesty, his reputation and his cli
Quantum TrendPulse
Bogdan Ion Puscasu
5 (25)
Introducing Quantum TrendPulse , the ultimate trading tool that combines the power of SuperTrend , RSI , and Stochastic into one comprehensive indicator to maximize your trading potential. Designed for traders who seek precision and efficiency, this indicator helps you identify market trends, momentum shifts, and optimal entry and exit points with confidence. Key Features: SuperTrend Integration: Easily follow the prevailing market trend and ride the wave of profitability. RSI Precision: Detect
GoldenX Entry MT5
Kareem Abbas
5 (14)
Price will increase by $20 every 10 buyers to maintain premium value. After purchase, contact via   MQL5 inbox   to receive your buyer kit and bonus. You have probably tested dozens of indicators before. But we are not here to be “just another signals indicator.” Behind GoldenX Entry is intensive research & development focused on building sophisticated algorithms designed to adapt to the real behavior of every instrument — not generic signals recycled everywhere else. From advanced Auto Optim
Power Candles MT5
Daniel Stein
5 (9)
Power Candles V3 - Self-Optimizing Strength Indicator Power Candles V3 turns currency and instrument strength into an actionable trade plan on every chart it is attached to. Instead of just coloring candles, it runs a live auto-optimization in the background and hands you the best Stop Loss, Take Profit and signal threshold for the symbol in front of you. One click adopts it for live trading - entry, Stop Loss and Take Profit rays appear on the chart at the exact prices, and alerts fire with dir
Crystal Heikin Ashi Signals
Muhammad Jawad Shabir
5 (2)
Crystal Heikin Ashi Signals - Professional Trend & Signal Detection Indicator Advanced Heikin Ashi Visualization with Intelligent Signal System for Manual & Automated Trading Final Price: $149 ---------> Price goes up $10 after every 10 sales . Limited slots available — act fast . Overview Crystal Heikin Ashi Signals is a professional-grade MetaTrader 5 indicator that combines pure Heikin Ashi candle visualization with an advanced momentum-shift detection system. Designed for both manual traders
M1 Sniper MT5
Oleg Rodin
5 (4)
M1 SNIPER   is an easy to use trading indicator system. It is an arrow indicator which is designed for M1 time frame. The indicator can be used as a standalone system for scalping on M1 time frame and it can be used as a part of your existing trading system. Though this trading system was designed specifically for trading on M1, it still can be used with other time frames too. Originally I designed this method for trading XAUUSD and BTCUSD. But I find this method helpful in trading other markets
ARIPoint
Temirlan Kdyrkhan
1 (1)
ARIPoint is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or email Cu
Currency Strength Wizard   is a very powerful indicator that provides you with all-in-one solution for successful trading. The indicator calculates the power of this or that forex pair using the data of all currencies on multiple time frames. This data is represented in a form of easy to use currency index and currency power lines which you can use to see the power of this or that currency. All you need is attach the indicator to the chart you want to trade and the indicator will show you real s
Introducing   Quantum Breakout PRO , the groundbreaking MQL5 Indicator that's transforming the way you trade Breakout Zones! Developed by a team of experienced traders with trading experience of over 13 years,   Quantum Breakout PRO   is designed to propel your trading journey to new heights with its innovative and dynamic breakout zone strategy. Quantum Breakout Indicator will give you signal arrows on breakout zones with 5 profit target zones and stop loss suggestion based on the breakout b
FX Power MT5 NG
Daniel Stein
5 (33)
FX Power: Analyze Currency Strength for Smarter Trading Decisions Overview FX Power is your go-to tool for understanding the real strength of currencies and Gold in any market condition. By identifying strong currencies to buy and weak ones to sell, FX Power simplifies trading decisions and uncovers high-probability opportunities. Whether you’re looking to follow trends or anticipate reversals using extreme delta values, this tool adapts seamlessly to your trading style. Don’t just trade—trade
Axiom Matrix
Issam Kassas
5 (4)
AXIOM MATRIX MT5 LAUNCH PRICE: $99 Axiom Matrix is available at the launch price of $99. The price will increase to $199 after the first 30 purchases. After your purchase, send me a direct message to receive your instructions and claim your exclusive gift bonus. Axiom Matrix is a professional multi-symbol, multi-timeframe market scanner and decision dashboard for MetaTrader 5. It scans your Market Watch, analyzes multiple timeframes, reads multiple evidence engines, compares the strongest opport
Reversion King Indicator
Eugen-alexandru Zibileanu
5 (5)
A new King in town - Indicator + Order management indications(tp1+tp2+tp3) + Optional Telegram Signal sender   INCLUDED (FREE) ( FULL TRADING  and SIGNAL SYSTEM ) Our best EA for Gold: Gold Slayer  This indicator includes an advanced Strategy, a trading system with customisable order management and a mean reversion system that combines envelope extensions, backed by multiple intelligent confirmation filters like RSI to catch high probability reversal entries with BUY and SELL signals . The indi
This product was   updated   for the   2026 market   and   optimized   for the   latest MT5 builds . PRICE UPDATEe NOTICE: Smart Price Action Concepts   is currently available for $200. The price will   increase to $299   after the next   30 purchases. SPECIAL OFFER:  After purchasing , send me a private message to claim FREE Bonus + Gift. First of all Its worth emphasizing here that this Trading Tool is Non Repainting , Non Redrawing and Non Lagging Indicator , Which makes it ideal for profe
The Oracle Pro
Ottaviano De Cicco
5 (1)
The Oracle Pro: Synthetic Multi-Timeframe Bias Engine for MT5 ️ Summer Launch Offer — Get The Oracle Pro for USD 199 (early buyers). Price rises with traction; final price USD 399. The Oracle Pro is a premium multi-timeframe bias engine for MetaTrader 5, built for demanding and professional traders. It answers one question with discipline: what is the directional bias on each timeframe right now, how strong is it, and how much do the timeframes agree? Everything is computed on closed bars only
DayTrader PRO DayTrader PRO is an advanced trading indicator that combines John Ehlers' Laguerre Filter with a powerful Auto-Optimization Engine. Instead of using fixed parameters, the indicator automatically searches for the best settings based on recent market conditions, helping you adapt to changing volatility without constant manual adjustments. The indicator generates clear BUY and SELL signals together with adaptive Stop Loss and Take Profit levels calculated from current market volatili
Smc Pro ToolKit
Talal N Z Aljarusha
5 (3)
SMC Pro ToolKit  is a professional chart-based Smart Money Concepts indicator for MetaTrader 5. It helps traders read market structure, identify key liquidity areas, organize trade context, and plan setups directly from the chart. This is not a simple buy/sell arrow indicator. It is a complete visual trading toolkit that combines Smart Money Concepts, multi-timeframe analysis, session context, setup planning, risk assistance, and professional dashboard tools in one clean workspace. Watch setup
Btmm state engine pro
Garry James Goodchild
5 (4)
BTMM State Engine Pro is a MetaTrader 5 indicator for traders who use the Beat The Market Maker approach: Asian session context, kill zone timing, level progression, peak formation detection, and a multi-pair scanner from a single chart. It combines cycle state logic with a built-in scanner dashboard so you do not need the same tool on many charts at once. What it does Draws the Asian session range; session times can follow broker server offset or be set in inputs. Tracks level progression (L
Atbot
Zaha Feiz
4.69 (55)
ATy Gold and BTC  Join my MQL5 channel to update the latest news from me.  My community of over 80,000 members on MQL5 ATbot : How It Works and How to Use It How It Works The "AtBot" indicator for the MT5 platform generates buy and sell signals using a combination of technical analysis tools. It integrates Simple Moving Average (SMA), Exponential Moving Average (EMA), and the Average True Range (ATR) index to identify trading opportunities. Additionally, it can utilize Heikin Ashi candles to en
More from author
ForexReversal
Thomas Bradley Butler
4 (1)
Patience is key to stress free scalping. Trade the arrows when you see it passes the 200 moving average and make a trend by widening out or from the last swing point with no moving average filter.   Nice for 1 minute time frames, catching momentum intraday moves. Take 20 pips with ease or stay longer for bigger trends, using trailing stops.  Look at the examples in the photos of really big trades from this indicator.  Time frames of 1 minute work the best.  Zoom out to see the trends.  Arrows do
NeuroScalper
Thomas Bradley Butler
5 (1)
Update!   Arrows were added to the 100 and 200 levels on oscillator  MT5 version: https://www.mql5.com/en/market/product/72378 This indicator is accurate for accessing extremes and supports for buy positions primarily for 1 minute time frames.  Other time frames can be used but the levels are different, and you need to add them manually, just use averages of extremes. It's a better oscillator and compares with others to see the difference.   Day trade using neuro network concepts.  This indic
VolumeDayTrader
Thomas Bradley Butler
DAYTRADING FOR STOCKS(CFD's)or other assets showing volume. Trading takes work.  There are no shortcuts or indicators that will tell you all the entries and exits.  Profit comes from the state of mind.  Indicators are tools to be used in conjunction with money management and success psychology.  Find imbalances in the volume profile. Trade price volume imbalances.  Many imbalances happen at the close and open and news. See the buyers vs. sellers in stocks.  Use on 5 minutes to 1 hour to see who
GoldBuyBackScalper
Thomas Bradley Butler
4 (1)
This indicator is for XAU/USD and uses standard deviations. For1 minute charts only.   Every pair has unique characteristics and price movements. Trade V shaped reversals with this indicator. Scalp buys  using trailing stops and   avoid news   as they are more extreme and can cause sudden sell offs . Attach to 1 minute time frame in backtest and see the reversal buys.  Indicator never repaints or recalculates. TRADE DURING ACTIVE HOURS ONLY
TrueSupplyandDemand
Thomas Bradley Butler
This is based on short term strength or weakness and not on moving averages.  Moving averages are used for filter only. Trade supply and demand with arrows. Supply and demand breakouts and strength of the buyers or sellers .  Don't trade buy arrow to sell arrow.  Trade the strength with trendlines or moving averages and use stops.  The arrow can have some strong moves.  Trade on all time frames.  Try it out in the back tester. The pips can be made with this indicator, follow the arrows and make
ScalpingMaster
Thomas Bradley Butler
Master scalping with this indicator.  Trade on any time frame for scalps on buy or sells.  Follow trends using a 200 moving average and stops and targets.  Use with your own system.  This indicator can give pips if following it correctly.  Stick to rules and pick up pips daily.  Use as entries in a trend, scalp for a few pips or exit on opposite signal.  Best to follow higher time frame trends. Indicator doesn't repaint or recalculate. Rules: Don't trade overnight, only trade during active sessi
DayTradeKing
Thomas Bradley Butler
This indicator is good for small time frames like 1 and 5 minutes and made for day trading. The indicator never repaints or recalculates. The indicator works is for trading swing points in day trading, following bulls or bears.  Its a simple to use, non cluttered indicator with a high success rate.  This indicator works well to capture ranges.  All indicators come with limitations and no indicator or system is always accurate. Use money management for long term trading success.   Place in backte
DTKGold
Thomas Bradley Butler
This is the DayTradeKing for gold on a 1 minute time frame.  It is a different calculation for the range. Use a 200 period moving average as a filter.  Always use stops and avoid news, wait for more conformation.  This looks to capture intraday ranges. Put it in the back tester on 1 minute to see the price action and how it works. Trade with trend Use filter Use stops Alerts are added for pop ups and sound. 
SuperArrowScalper
Thomas Bradley Butler
Trade trends with the Super Scalper Use on all time frames and assets it is  designed for scalping trends. Works good on small time frames for day trading.  The arrows are easy to follow.  This is a simple no repaint/no recalculate arrow indicator to follow trends with.  Use in conjunction with your own system or use moving averages.  Always use stops just below or above the last swing point or your own money management system The indicator comes with push notifications, sound alerts and email
Levels Trading
Thomas Bradley Butler
This indicator is a simple stripped down version of any advanced support and resistance indicator.  All the support and resistance indicators work from a number of bars that have developed over time. Get rid of clutter and confusing levels.  Find levels according to a number of bars. Look at days, session, numbers of hours, periods of consolidation.  Watch levels develop and use as breakout points, or areas of buyers and sellers.  Features and things to consider This indicator is for a frame of
ForexReversalEA
Thomas Bradley Butler
Optimize Inputs  https://www.mql5.com/en/market/product/57345 This EA is based on the Forex Reversal indicator.  If you prefer to manual trade the system, download the indicator and try it out. The EA will follow the trend and open positions accordingly.   The results show stable gains with lower drawdown but experiment with it in the back tester, optimizer and time frames to see what works.  All results shown are hypothetical. Note: This is not a martingale or grid. the EA does have hedging cap
HFTHacker
Thomas Bradley Butler
* THIS IS AN OLD EA WITH MANY EVOLUTIONS.  SHOW SUPPORT FOR MY WORK .  THIS HAS GONE BACK TO THE SIMPLE VERSION WITHOUT RECOVERY. IF YOU BOUGHT PRVIOUS VERSION BELOW 15 WITH RECOVERY THEN DO NOT USE 15. OPTIMIZE EA BEFORE TEST AND USE. ONLY BUY IF YOU HAVE OPTIMIZED.  This is  for  traders who know how to optimize  and want to be profitable on their own merit.    YOU  SET YOUR RISK PARAMETERS. High win rate with stops for the trades that don't work out if you choose. Reduce risk for longevity.
MarketMaker
Thomas Bradley Butler
OPTIMIZE BEFORE BACKTEST AND USE. *UPDATE:  This can be traded on on pair.  Just have the TP more than the SL.  And have one side with a larger lot size than the other.   Automate supply and demand trading. Make a market. Read and understand before posting negativity. Take responsibility for your own trading. Create your own optimization This EA was made and inspired by the popular supply and demand indicator everyone sells and mimics.  The  EA continues trading and hedging, making a market.  C
Top Trader
Thomas Bradley Butler
Top Trader Indicator This is an arrow reversal indicator. This is with deviations and arrows.  Trade a blue arrow for buy and trade a red arrow for sell.  Change the time period and the deviations of the bands.  This is similar to others but these arrows don't repaint.  Load in back tester and study which periods and deviations work the best.  It works on all time frames.  15 min to 1 hr would give good results for take profits.  Try according to your own risk management.
Quant Bot
Thomas Bradley Butler
OPTIMIZE EA BEFORE TEST AND USE No EA turns hundreds into millions in a year or 2.  This is a lie if presented this way.     Quant Bot is for trend trading on the one-hour time frame for the EUR/USD.  There is no set file but if other pairs are used, then it may need optimization.     About the bot: It uses genetic generation and uses ATR to trade by. Walk forward period was used to prevent curve fit The EA uses stops on every trade. Money management is a scaling up with % of balance The back
Crypto Net
Thomas Bradley Butler
OPTIMIZE EA BEFORE TEST AND USE MT5 version of Crypto Net:  https://www.mql5.com/en/market/product/84115 UPDATED WITH ADVANCE MONEY MANAGEMENT INPUTS.   NOTE:  PUT INPUTS TO 50000 min. The broker times will be different than what the strategy was built in. Crypto Net is for trading BTCUSD .  It uses genetic evolution to evolve the strategy. This EA trades trend following indicators like ATR and Ichimoku. This was built and passed a range of robust testing including Monte Carlo and Walk Forwa
PropTrader
Thomas Bradley Butler
*OPTMIZE EA BEFORE USE* Optimized Forex Trading Strategy for EUR/USD Achieving substantial wealth within a year or two with an Expert Advisor (EA) is an unrealistic claim. Back testing and real trading focus on the EUR/USD currency pair. About This Strategy: This represents the initial iteration of our strategy, with the potential for further advancements. Rigorously tested with 100% quality data, it's free from MT4 errors. The strategy operates on a logical principle of trend following. When th
Down Under
Thomas Bradley Butler
OPTIMIZE EA BEFORE TEST AND USE Down Under trades the AUD/USD pair on a 1 hour time frame. No EA turns hundreds into millions in a year or 2.  This is a lie if presented this way.  This EA trades the ATR and OHLC.  It is formatted for this pair on this time frame.  Compounding is used with a min. lot size and a max. lot size.  The percentage of the balances is compounded on winning trades.  As the balance fluctuates, so does the lot size. Settings: mm risk % mm lots max lots There is nothing
Cable Trader
Thomas Bradley Butler
UPDATE:  Changed to % of balance in lot size. OPTIMIZE,OPTIMIZE,OPTIMIZE! GBP/USD 1 hr. built with machine learning  No EA turns hundreds into millions in a year or 2.  This is a lie if presented this way.   This EA trades momentum and sessions.  This has a fixed lot component and will continue to modify the TP as it develops. Settings: Lot size There is nothing else to change.  This has no martingale or hedging capabilities.  Only other feature to change is if you are trading, CFD's of GBP/USD
Euclidean
Thomas Bradley Butler
OPTIMIZE EA BEFORE TEST AND USE Updated:  Added a sell option to hedge as risk management.  No EA turns hundreds into millions in a year or 2.  This is a lie if presented this way.   Euclidean   is a unique trading algorithm  that I came up with 8 years ago.  This EA is part of this system.  It works as a closed system.  The EA will initiate a buy when the angle degree is correct to catch a trend.  The stop loss is 10% from the angle.  It is that simple. Inputs:  % of balance in lots  1 mic
Pip Scalper
Thomas Bradley Butler
AN INDICATOR FOR EVERYONE MT5:  https://www.mql5.com/en/market/product/80934 Pip Scalper is for scalping trends.  Stay in trends longer with this indicator.  It works on all time frames and assets.  Pick up daily pips with this tool.  Use the 200 moving average to filter trades.  Smaller time frames recommended.  Use for day trading. About and how to use: Pips Scalper is based on longer term trend trading.   Buy on blue Sell on Red Use 200 moving average as filter and trade during active perio
Evolved Trends
Thomas Bradley Butler
OPTIMIZE BEFORE TEST AND USE TO FIND BEST INPUTS Hey there traders! Want a cutting-edge Expert Advisor for your MT4 platform? Look no further than Evolved Trends! This powerful trading algorithm, created with machine learning technology, focuses on trading GBP/USD on 1 Hour time frames. But hey, feel free to experiment with other assets and time frames for optimization! Just customize the inputs to match your own risk tolerance. With stops based on ATR and the ability to lock in profits and cu
Combine Winner
Thomas Bradley Butler
Trade any Forex combine out there.  Many prop firms offer challenge or instant funding combines.  The biggest problem is controlling the loss.  With this indicator you can get a visual system that can limit loss and teach discipline.  This uses the MACD and the strategy is scalping.  You can determine the risk and reward.  Visually follow small trends for scalps.  Trade during active sessions.  It's just a simple system to instill discipline while limiting loss and scalping pips with the paramet
Holy Grail Arrow
Thomas Bradley Butler
Holy Grail arrow is for scalping.  The period you use will determine the trend.  You can try different time frames and periods to see what works best for your strategy.  Filters can be applied like a moving average or trendlines.  The 1 minute works good for scalps and always trade during active periods and avoid consolidation times.  Using other indicators to determine trends is recommended but this can also be a free flowing scalping system alone with tp and sl. Inputs: Period = trend period
Twenty Eight Forex Pairs
Thomas Bradley Butler
OPTIMIZE EA BEFORE TEST AND USE No EA turns hundreds into millions in a year or 2.  This is a lie if presented this way. Trade Twenty Eight Forex Pairs.  Use this EA to trade the pairs and time frames with tp and sl according to risk.  This comes with advanced money management built in.  It has break evens and take profits on 50% with sl and tp accordingly.  1 hour recommended but try on others for intraday or swing trading.
Fulltrend
Thomas Bradley Butler
Improve trading with this indicator.  Find areas of buys or sells in Fibonacci retracement areas.  Fulltrend is for scalping and making swing trades.  Fib levels are added for take profits and stop losses. This works on any time frame and can be used by itself or together with other systems and indicators for filters. The indicator doesn't repaint.  Alerts are added and can be true or false.  No need to sit glued to the computer, just set on charts and listen or the alerts to come.  Take a posi
Scalping Code
Thomas Bradley Butler
Scalping Code is for trend scalping.  It is simple to use and is profitable.  It can work on any time frame and any asset.  This indicator can be used on it's own or together with another system.  The arrow does not repaint or recalculate.   The rules are as follows:   A blue arrow above the moving average is a buy. An exit for the buy above the moving average is a red arrow or target. A red arrow below the moving average is a sell. An exit for the red below the moving average is a blue arrow
Order Flow Volume
Thomas Bradley Butler
OPTIMIZE BEFORE BACKTEST AND USE FOR A YEAR TO FIND BEST VALUES Order Flow is unique in that is trades the volume.  It was built on EUR/USD and is optimized from  11/11/2021 to 10/24/2022 on 1 hour charts.  Optimization inputs for money management are used.  This EA uses strict money management, it is not a get rich quick martingale or EA without a sl. Trading is about risk management, not gambling.   Run on EUR/USD 1 hour chart or if you want to find other assets and time frames to optimize th
AI Signal
Thomas Bradley Butler
AI Signal is an indicator that is a ready to made scalping system that doesn't repaint Instructions: Load indicator.  Use arrows as entries in trends and stay out of sideways markets.  Trade with the larger trend and trade only active volatile hours Buy blue arrow above yellow and exit at red arrow or at discretion.  Sell red arrow below yellow and exit at blue arrow  or at discretion.  Easy to follow and is based on trends.  The indicator works on all time frames and assets. Use at your own d
High Speed Low Drag
Thomas Bradley Butler
*OPTMIZE* High Speed Low Drag trades XAU/USD on 1 hour charts.  The EA was made with machine learning and uses RSI and moving averages to trade its logic. By default the take profit is at 150 and stops are at 50 with additional advanced money management like movable stops.  I would suggest this if you have the know how but this is for beginner or advanced as is. The money management system scales the balance so you can figure what % you want to start and then the max lots to trade.
Filter:
No reviews
Reply to review