MP MegaScanner

📡 MegaScanner — see the market with two eyes

A universal multi-symbol scanner that combines two analytical systems in one panel.

⚙️ Functionality

  • Finds entry points in the market and shows the MEGA TRADER — Complete User Guide

    Version: 1.05 Type: Expert Advisor for MetaTrader 5 Purpose: automated trading of DIVERG divergence signals with a sideways-market filter, deposit-based risk management, ATR-based SL/TP and a trailing stop.

    ⚠️ Important: this is a fully automated Expert Advisor. It opens, modifies and closes trades on its own. Always test on a demo account first and make sure the risk settings match your strategy before using it on a live account.

    1. What It Is

    MegaTrader is the trading "little brother" of the MegaScanner indicator: it uses the same signal logic, but instead of displaying signals on a panel, it opens trades itself according to strict rules.

    Key principles of the system:

    Principle Implementation
    Sideways only The system is counter-trend (divergence-based) — it trades only when EMA150 is nearly flat and ADX is below the flat threshold
    Fixed risk Lot size is calculated so that the SL loss equals a set % of the account balance
    ATR-based SL/TP Stop and target scale with current volatility (ATR multipliers)
    TP 1:2 Take profit = 2 stop distances — the classic risk/reward ratio
    Trailing stop Profitable positions are managed with a trailing stop (SL follows price)
    Breakeven After the first target is hit, the position moves to breakeven

    2. The DIVERG Signal System

    The EA trades signals from the DIVERG system — reversal divergences and patterns:

    Component What it uses
    Divergences RSI(9) and Stochastic — price/oscillator divergence
    Candlestick patterns Pin bar, engulfing, PPR (pindi-push-reverse), tweezer
    Volume Signal confirmation by increased volume
    Scoring Each fulfilled condition = 1 point; entry threshold — InpMinCond (recommended 2)

    Entry filters

    Filter Parameter Purpose
    Sideways (EMA slope) InpFlatEma Blocks entries if EMA150 is tilted more than 0.10% over 20 bars — market in a trend
    Flat (ADX) InpFlatFilter / InpFlatAdx Blocks entries when ADX(14) is below 25 — too weak movement
    Max spread InpMaxSpreadPts Skips trades with widened spread (>30 points)
    Position limit InpMaxTrades / InpMaxPosPerSym One position at a time, max 1 per symbol

    💡 Why the sideways filter is critical: divergences are a counter-trend tool. In a trend they produce losing streaks; in a sideways market they produce steady profit. The EMA slope filter removes trending regimes.

    3. Risk Management

    Lot calculation

    risk money = balance × InpRiskPct / 100 loss per 1 lot = (|entry − SL| / tickSize) × tickValue lot = risk money / loss per 1 lot

    So regardless of stop width, the loss per trade ≈ the set % of the deposit:

    • narrow SL → larger lot;
    • wide SL → smaller lot.

    Protection

    Protection Parameter Description
    Max lot InpMaxLot Insurance against over-risking (default 5.0)
    Margin check Lot is automatically reduced if free margin is insufficient
    Min lot If the calculated lot is below the minimum — the trade is skipped
    Normalization Lot is rounded down to the step (lotStep)

    📌 Example: deposit 10,000 USD, risk 3% = 300 USD per trade. If SL = 50 pips → lot ≈ 0.6. If SL = 15 pips → lot ≈ 2.0. The loss is ≈ 300 USD in both cases.

    4. SL / TP / Trailing

    Stop loss (ATR)

        SL = low/high ± max(10 points, ATR(14) × InpSLATRMult)
    

    The stop is placed beyond the signal bar's extreme with an ATR offset. If a support/resistance level is nearby, the stop is moved beyond it.

    Take profit 1:2

    TP = entry ± 2.0 × ATR(14) (1:2 ratio to the stop)

    Trailing stop

    Parameter Value Description
    InpTrailStart 0.5 ATR Trailing activates after +0.5 ATR profit
    InpTrailDist 1.0 ATR SL is kept 1.0 ATR from price

    Breakeven

    After the first target (1.0 ATR) is reached, SL moves to breakeven (+5 points).

    5. Installation & Setup

    1. Copy  MegaTrader.mq5  to the  MQL5\Experts\  folder.
    2. MetaEditor → Compile (F7) → should show  0 errors, 0 warnings .
    3. In MetaTrader 5, drag the EA onto a chart (e.g., EURUSD H1).
    4. Enable algorithmic trading (the "Algo Trading" button).
    5. Set  InpTradeEnable=true , configure risk and press OK.

    📌 The EA trades one symbol — the one it is attached to. The default timeframe is H1.

    6. Recommended Settings (validated on 2023–2024)

    Parameter Value Comment
    InpUseTrend false TREND branch adds noise — disabled
    InpUseDiverg true Main system
    InpMinCond 2 Optimal score threshold
    InpUseRisk / InpRiskPct true / 3.0 3% risk per trade
    InpFlatEma / Slope true / 0.10 Sideways filter
    InpFlatFilter / Adx true / 25 Flat filter
    InpTPLevel / TP2 2 / 2.0 ATR TP 1:2
    InpTrailSL / Start / Dist true / 0.5 / 1.0 Trailing stop
    InpSLATRMult 1.5 Stop multiplier

    Backtest results (EURUSD H1, deposit 10,000, risk 3%)

    Year Result
    2024 +14.6% (11,458 USD)
    2023 −40.6% (5,938 USD)

    7. Important Warnings

    1. ⚠️ The system works only in a sideways market. In trending years (like 2023) it loses money. This is normal for divergence strategies — but keep it in mind when planning.
    2. ⚠️ 3% risk is aggressive. With a 10,000 deposit that is ~300 USD per trade. In a bad year the drawdown can reach 40%+. For conservative trading, lower it to 0.5–1%.
    3. ⚠️ Past results do not guarantee future returns. Parameters were fitted on 2023–2024. A forward test and periodic review are recommended.
    4. ✅ The EA uses  InpMagic  to identify its own trades — it does not conflict with other EAs.
    5. ✅ Check your broker's conditions: minimum lot, lot step, leverage and commissions.

    8. Main Input Parameters (reference)

    Parameter Type Default Description
    InpMagic int 951357 Unique trade identifier
    InpTradeEnable bool true Trading allowed
    InpTF ENUM_TF PERIOD_H1 Working timeframe
    InpMinCond int 2 Minimum score for a signal
    InpLotFixed double 0.01 Fixed lot (if risk is off)
    InpUseRisk bool true Lot by risk % of balance
    InpRiskPct double 3.0 Risk per trade, %
    InpMaxLot double 5.0 Maximum lot
    InpTPLevel int 2 TP level (2 = double)
    InpBreakeven bool true Breakeven after TP1
    InpTrailSL bool true Trailing stop
    InpTrailStart double 0.5 Trailing start, ATR
    InpTrailDist double 1.0 Trailing distance, ATR
    InpMaxSpreadPts double 30.0 Max spread, points
    InpMaxTrades int 1 Max simultaneous positions
    InpMaxPosPerSym int 1 Max positions per symbol
    InpUseTrend bool false Trade TREND signals
    InpUseDiverg bool true Trade DIVERG signals
    InpFlatEma bool true Sideways filter (EMA slope)
    InpFlatEmaBars int 20 Slope measurement period
    InpFlatEmaSlope double 0.10 Max EMA slope, %
    InpFlatFilter bool true Flat filter (ADX)
    InpFlatAdx int 25 ADX threshold
    InpSLATRMult double 1.5 SL = ATR × multiplier
    InpTP1ATRMult double 1.0 First target, ATR
    InpTP2ATRMult double 2.0 Second target (TP), ATR
    InpATRPeriod int 14 ATR period
    direction with an arrow
     right on the chart;
  • Recommends entry point, Stop Loss and Take Profit (standard and ATR-based settings) — a ready-made trade plan without extra calculations;
  • Trend Scanner — trend by EMA 150/365 (H1) + daily trend (D1 EMA 9/21), confirmed by RSI 14 and MACD;
  • Divergence Scanner — divergences by Stochastic and RSI 9, reinforced by candlestick patterns (pin bar, engulfing, PPR) and above-average volume;
  • Combo signals "2×BUY/SELL" — when both systems point in the same direction, you get a high-confidence signal;
  • Support/Resistance levels — multiple price touches with above-average volume on higher timeframes;
  • Signal bar highlighting and real-time updates every few seconds.

🛡️ Reliability

  • The EA does NOT trade — it only analyzes: zero risk to your account;
  • Flat market filter (ADX) — signals are blocked in a sideways market, where mistakes are most common;
  • Double confirmation — two independent systems + multi-factor condition checks drastically reduce false signals;
  • Full transparency: all conditions are configurable — from the number of matches to timeframes and indicator periods.

💎 Benefits

  • Saves hours of manual analysis — scans dozens of instruments at once;
  • Two views of the market in one table — trend and divergences at a glance, no chart switching;
  • A ready trade plan — direction, entry point, stop and take are already determined;
  • For all skill levels — beginners get ready signals, professionals get full logic transparency.

Recommended products
TerminatorTrades
Uriel Alfredo Evia Canche
"Terminator Trades " EA robot, built on the powerful MQ5 code,  is designed to simplify the process of closing your positions and pending orders. You can adjust if you want close all the trades or by specific symbols. With just a single click on a button, you can efficiently manage your current positions, ensuring that you never miss an opportunity to terminate a trade.  Close Trades , Delete Pending Orders with Terminator Trades. 
FREE
MQL5 Blogs : https://www.mql5.com/en/blogs/post/761446 MT4 Version : https://www.mql5.com/en/market/product/136790 MT5 Version : https://www.mql5.com/en/market/product/136791 Time Wizard is a professional trading assistant built for traders who need speed, timing, and execution control in one clean dashboard. This Expert Advisor is designed for event-based trading, scheduled execution, and fast semi-automatic order management. It allows you to prepare your orders in advance, define the exact
The only drawdown guardian that stops your other EAs from digging you deeper. PropMarshal monitors your account equity in real time and instantly closes all positions the moment a drawdown or profit target threshold is breached. But it doesn't stop there — it closes every chart on your platform too, cutting off any other Expert Advisors before they can open new trades and compound the damage. The Problem PropMarshal Solves Most prop firm traders run multiple EAs across multiple charts. When a dr
FREE
Welcome to Smart Algo Trade Panel Manager MT5 - the ultimate   risk management tool designed to make trading more effective based on user needs.  It is a comprehensive solution for seamless trade planning, position management, and enhanced control over risk. It does not matter weather you a beginner or an advanced trader, or a scalper needing rapid executions, SmartAlgo Trade Panel  adapts to your needs offering flexibility across all markets of your choice. You can put SL, Lot and TP of choice
Trading Calendar — See Your Most Profitable Trading Days Turn your trading history into clear daily performance insights with Trading Calendar . Trading Calendar is a powerful MT5 analytics tool designed to help traders visualize their profitability day by day using an interactive profit and loss heatmap. Instead of scrolling through endless trade history, you can instantly identify your best days, worst days, winning streaks, and losing patterns. Analyze your performance by day, week, or month
FREE
Get news5
Aleksander Gladkov
Utility for reading news from investing.com To access the site, you need to add WebRequest in the Options terminal menu on the Expert Advisors tab: https://sslecal2.investing.com If reading is successful, a message about writing the file is displayed. The INV_week_this.txt file is written to the MQL5\Files folder of the terminal and is kept up to date, updating data according to its own timer. The  INV_week_last.txt   file is recorded on Saturday and saves the news data of the previous week .
Telegram EA Manager
Ebunoluwa Abimb Owodunni
All in one Multipurpose Telegram Trade Management , Manage and Copy Trades on the go From Telegram Pro Version MT5:  www.mql5.com/en/market/product/95742 Pro Version MT4:  www.mql5.com/en/market/product/85691 Execute Trades on mobile with fast execution When away from desktop MT5, or scalping the market with mobile device, or needed to copy trades from telegram groups while away, or doing some other activities, Telegram EA Manager is an effective tool to perform any trade operation with swift
FREE
Trading Calendar — See Your Most Profitable Trading Days Turn your trading history into clear daily performance insights with   Trading Calendar . Trading Calendar is a powerful MT5 analytics tool designed to help traders visualize their profitability day by day using an interactive profit and loss heatmap. Instead of scrolling through endless trade history, you can instantly identify your best days, worst days, winning streaks, and losing patterns. Analyze your performance by day, week, or mont
Live Price With PNL
Muhammad Jawad Shabir
LIVE PRICE AND TOTAL PROFIT DISPLAY INDICATOR PERFECT FOR LIVE TRADING & SCREEN SHARING Designed specifically for day traders, scalpers, and live stream trading sessions This professional indicator provides real-time price display and comprehensive profit tracking directly on your chart - essential for high-frequency trading and live trading broadcasts. KEY FEATURES REAL-TIME PRICE DISPLAY Live bid price updates every second Professional formatting for all symbol types Special Gold/XAU formatti
FREE
MT5 history exporter for accurate trade analysis and CSV export. Export trades to Excel from MetaTrader 5 with full performance metrics. Advanced MT5 trade analyzer with MAE, trade duration, and reconstruction. Usually platforms hide critical information about how your trades actually behave. History Downloader and Trade Analyzer solves this. It rebuilds your trades from raw deal history and exports a clean, structured dataset with accurate metrics MT5 does not provide. What You Get A fully s
Limiter Drawdown EA – Automatic Account Protection for MetaTrader 5 Description Limiter Drawdown EA is a lightweight risk management tool for MetaTrader 5. It monitors your account drawdown in real time and will automatically close all open trades once the threshold you define is reached. This provides a reliable safeguard for any trading strategy. Main Functions Monitors equity versus balance continuously Closes all positions when your chosen drawdown percentage is reached Optionally removes
FREE
You can see Binance Spot data instantly in Metatrader 5 and it allows you to use all the features that Metatrader has provided to you. You can access the data of all symbols listed on Binance Futures. Don't forget to set the timezone. Binance it's 00:00 UTC. You need to fix it according to your own country You need to install the free Binance Spot Symbol List plugin. https://www.mql5.com/tr/market/product/83507 After loading, it automatically downloads the data of the cryptos in the market obser
-Liquidate at maximum loss percentage & amount of principal -Liquidate at daily maximum loss percentage & amount of principal -Close position at maximum loss percentage & amount per trade -Liquidate filtered during news events (2–5 mins before & after) -Liquidate at target profit percentage & amount (exit level) -Minimum trading days limit ≥ 4 -Liquidate before market close -Liquidate at maximum equity drawdown percentage (1-step) -Close position at specified equity amount -- -Display
"Adjustable Fractals" - is an advanced version of fractal indicator, very useful trading tool! As we know   Standard fractals MT5 indicator does not have settings at all   - this is very inconvenient for traders. Adjustable Fractals has resolved that issue - it has all necessary settings: Adjustable period   of indicator (recommended values - above 7). Adjustable distance   from Highs/Lows of price. Adjustable design  o f fractal arrows. Indicator has built-in Mobile and PC alerts. Click here
ProbAlgo
Marius Ovidiu Sunzuiana
ProbAlgo is an institutional‑grade trading indicator engineered to mirror the analytical discipline used inside major banks and hedge funds. Its core strength is not just detecting when to trade — but knowing when not to trade. By combining probabilistic modeling, volatility diagnostics, liquidity behavior, and structural market filters, ProbAlgo isolates the rare moments when conditions genuinely support a high‑quality entry. Instead of chasing every move, ProbAlgo evaluates the market through
Cyber Pulse
Marco Brugali
4.39 (18)
Cyber Pulse Cyber Pulse is an innovative automated trading bot designed to operate efficiently on the GBPUSD, XAUUSD, and USDJPY markets. This bot executes an average of 3-5 trades per week, employing a clever combination of machine learning algorithms and price action strategies to deliver an excellent trading experience. Performance and Reliability: Market Versatility: Cyber Pulse is optimized for a wide range of assets, including currency and precious metals markets, ensuring flexibility and
FREE
Easy GOLD MT5
Franck Martin
3.87 (45)
Easy Gold is the latest addition to the BotGPT family. It is surprising and very powerful. It is ideal for beginners due to its simplicity.  There is absolutely nothing to do, it's 100% automated, simply indicate the percentage of risk you want to take per trade and the EA is ready. Whatever your capital, the EA takes care of everything. Optimized on (XAUUSD).  Unleash all the power with the professional version (AGI Gold) and its connection to the neural network, available in my store. My othe
FREE
Advanced Trailing Stop & Break-Even Expert Advisor with Partial Profit Taking Overview Unlock the full potential of your trading strategy with this Expert Advisor that automates trade management to maximize profits and minimize losses. Designed for both novice and experienced traders, this EA offers precise control over your trades with customizable trailing stops, break-even protection, and partial profit taking — all working seamlessly to protect your capital and lock in gains. Key Features Dy
VP-MTF PRO - Institutional Volume Profile Multi-Timeframe                               OVERVIEW VP-MTF PRO is a professional-grade Volume Profile indicator designed for serious traders who want institutional-level analysis. It combines multi-timeframe volume profiling with automated signal generation, VPOC migration tracking, and HVN/
FREE
Price Action Builder Premium
Florea E. Sorin-Mihai Persoana Fizica Autorizata
The Price Action Builder Premium expert advisor is an extension of the freely available Price Action Builder Basic :     it provides 2 new candlestick patterns besides the pinbar (already available in the basic edition);     in most configurations, backtesting usually shows an average yearly return rate increased by approximately 50%;     the account growth curve is also smoother, due to larger number of trades, almost double (2x) compared to the free version. While aimed primarily at obtaining
Advanced Live signal panel
Taha Saber Ashour Kamel
5 (1)
Advanced Signals Pro v10.0 is a professional-grade, all-in-one trading dashboard that combines 11 powerful technical indicators into a single, elegant interface. Monitor multiple symbols simultaneously, receive instant buy/sell signals with calculated targets, and make informed trading decisions with confidence. adjust parameters as you wish and if you want to see detailed analysis for any pair double click on it you will get tp , sl and support and resistance and accurate signal Whether you're
FREE
Greybrea Gold Scalper
Louis Jacobus Pieterse
GREYBREA GOLD SCALPER Built for Gold. Engineered for precision. Designed for disciplined execution. How It Thinks: The Adaptive Engine Behind every trade, GREYBREA continuously evaluates Gold's market behaviour analysing momentum, market structure, volatility, and price action. However, this is where the technology diverges from the competition. GREYBREA does not rely on a single, static strategy. Instead, it acts as a real-time decision-maker. As the day progresses, the algorithm monitors the
Binance Quotes Updater
Andrey Khatimlianskii
5 (1)
This service is designed to stream online cryptocurrency quotes   from the Binance exchange to your MetaTrader 5 terminal. You will find it perfectly suitable if you want to see the quotes of cryptocurrencies in real time — in the Market watch window and on the MetaTrader 5 charts. After running the service, you will have fully featured and automatically updated  cryptocurrency charts in your MetaTrader 5. You can apply templates, color schemes, technical indicators and any non-trading tools to
Aegis SMC Matrix EA
Amanda Vitoria De Paula Pereira
Aegis SMC Matrix EA is a high-performance automated architecture engineered for XAUUSD structure trading, the engine bypasses lagging retail templates by mapping institutional order blocks and liquidity sweeps directly on the terminal execution thread. The core algorithm tracks raw price expansion and volume displacement to secure clean entries at market extremes with zero phase-lag, every trade gets handled by a dynamic position matrix that locks partial targets fast to stabilize your equity li
Month Stats
Elidio Xavier Guimaraes
Month Stats Overview Month Stats is a quantitative analysis indicator designed to perform statistical studies of price behavior by classifying candle data according to the calendar month in which each candle was formed. The indicator processes historical candle data and provides statistical results for each month of the year, allowing users to analyze price behavior individually for January, February, March, and the remaining calendar months. The input parameters allow users to define the sampli
Divergent Stochastic Filter II Catch Reversals Early, Filter Noise, Trade with Confidence The Edge: Why This Stochastic is Different  Every trader knows the Stochastic oscillator. But knowing when to trust its signals, that's the real challenge. The Divergent Stochastic Filter II transforms this classic indicator into a precision reversal detection system by adding critical elements: divergence intelligence, signal filtering and exhaustion detection.  While standard Stochastic oscillators fire s
CRYPTO ZEUS DUAL-CORE PROTOCOL  Advanced Crypto Matrix: Supertrend AI + External Sync Module - [NEW] 24/7 Crypto Unlock: The EA now fully supports weekend trading by auto-detecting Crypto assets. - [NEW] Continuous Trend Rider: Re-enters trades continuously on pullbacks if the macro-trend remains strong, maximizing profit on long runs. - [NEW] Ghost Trailing Stop: Added a virtual trailing stop to fully ride breakouts instead of exiting at fixed Fibo targets. - [NEW] Preset System: Added a buil
The Ultimate Risk Calculator
Elias Jose Vielma Molina
Risk Calculator EA – Utility for Precise Trade Sizing If you find this tool useful consider to  Buy me a coffee!   The Ultimate Risk Calculator is a lightweight in-chart Expert Advisor (EA) designed to help you easily and quickly calculate position size and set stop-loss / take-profit levels with full control over risk management directly on the chart. What it does? It turns manual risk decisions into fast, visual, and accurate calculations. You draw or adjust the Entry, Stop-Loss and Take-P
FREE
WAPV Box Effort x Result
Eduardo Da Costa Custodio Santos
WA_PV_BOX_EFFORT X RESULT for MT5 The WAPV Box Effort x Result Indicator is part of the Package Indicators group (Wyckoff Academy Wave Market). The WAPV Box Effort x Result Indicator for MT5 helps you in reading price and volume. Its reading consists of assisting in the identification of effort x result in waves created by the graph. The WAPV Box Effort x Result Indicator for MT5 when the box is green means that the volume is in favor of the demand and when the box is red volume is in favor of s
Gold Scalping Matrix MT5
Mohamed Abdulmohsen Mohamed Saeed Ali
The Gold Scalping Matrix is an advanced trading algorithm designed to capitalize on market action and price reversals in the gold market. This innovative bot employs real time market behavior trading strategy, intelligently placing buy and sell orders at predetermined intervals around the current market price.  All Configuration Set Files for back-test and live accounts   All Experts for back-Test find the new free versions before change to paid Recommended Broker Support group   or DM for any
Buyers of this product also purchase
================================================================================ POC BREAKOUT - V20.72. Full Professional Grade Toolkit ================================================================================ POC Breakout is a full MetaTrader 5 trading dashboard for discretionary traders who want breakout signals, Point of Control (POC) context, volume profiles, order flow, market structure, news, alerts, and advanced trade planning in one professional workspace. Attached directly to you
Premium Trade Manager - The Trade Panel With a Coach Built In Premium Trade Manager puts a trading coach inside your chart, with a full execution engine underneath it. Set the trade up the way you always do, then let Max, your AI trading coach, read that exact setup against your live account and give you a straight verdict before you commit: is the stop disciplined, is the risk sane, is a high-impact release minutes away, are you near a prop-firm limit. Below sits the engine that runs everything
Footprint Chart Pro — Professional OrderFlow EA for MetaTrader 5 Version 6.34 | Professional tool for real traders | Institutional-Grade Visualization DEMO USERS - PLEASE SELECT EVERY TICK / REAL TICK WHEN TESTING AND YOU HAVE DOWNLOADED HISTORICAL DATA. IF YOU SEE A WAITING SCREEN AND IT IS NOT DOWNLOADING, IT MEANS YOU HAVE LOW HISTORICAL DATA. TRY 1 MIN AND 5 MIN FIRST ON 1 DAY DATA. ONE DAY DATA SHOULD BE THE NEWEST AND MOST CURRENT DATE. PLEASE WAIT UNTIL THE MARKET HAS ROLLED OVER PERIOD.
FarmedHedge Pair Trading Dashboard
Tanapisit Tepawarapruek
5 (3)
Farmed Hedge Yield Farming | All Markets (Manual - Hybrid - Semi/Automated EA) VERIFIED TRADING RESULTS - Farmed Hedge Yield Axi Copy:  https://www.mql5.com/en/signals/2356376 - Farmed Hedge Yield Exn Copy:   https://www.mql5.com/en/signals/2356404 - Farmed Hedge Yield V Copy:  https://www.mql5.com/en/signals/2357156 * Before purchasing, please feel free to send me a message if you have any questions about the product or setup. ** After purchase,  Contact me via private message to receive t
Global Investing FX Terminal
Santiago Nicolas Pla Casuriaga
The Global Investing FX Terminal is an all-in-one FX dashboard for MetaTrader 5 — CB policy rates, CFTC COT positioning, carry rankings, economic surprises, options skew, retail sentiment, and correlations, thirteen panels in total — rendered on a single zero-flicker canvas overlay and refreshing every 10 seconds from one attached EA. No external software required. Professional FX analysis requires simultaneous access to data that normally lives in separate platforms: rate derivatives, governmen
Trading Chaos Expert
Gennadiy Stanilevych
5 (11)
This software has no equals in the world and represents a universal trade "console" covering trading signals, automated market entry, setting of Stop Loss and Take Profit, as well as Trailing Profit for multiple trades at the same time in a single open window. Intuitive control of the Expert Advisor in "three clicks" ensures a comprehensive use of all its functions on different computers, including tablets PCs. Interacting with additional signal indicators that mark the chart to give a real mark
Power Candles Strategy Scanner - Self-Optimizing Multi-Symbol Setup Finder Power Candles Strategy Scanner runs the same self-optimizing engine that powers the Power Candles indicator - on every symbol in your Market Watch, side by side. One panel tells you which symbols are statistically tradable right now, which strategy wins on each, the optimal Stop Loss / Take Profit pair, and pings you the moment a fresh signal fires. This tool is part of the Stein Investments ecosystem - 18+ tools plus Max
Custom Alerts AIO: All-in-One Market Scanner – No Setup Required Overview Custom Alerts AIO is the fastest and easiest way to monitor multiple markets for real-time trading signals—without any setup or extra licenses. It comes with all required Stein Investments indicators already embedded, making it the perfect plug-and-play solution for traders who value simplicity and performance. Just load it to any chart and start receiving alerts across Forex, Metals, Crypto, and Indices. Shares can be a
Welcome to ENTRY IN THE ZONE WITH SMC MULTI TIMEFRAME Entry In The Zone and SMC Multi Timeframe is a real-time market analysis tool based on Smart Money Concepts (SMC), designed to analyze market structure, price direction, and key trading zones. It supports both Single-Timeframe Analysis and Multi-Timeframe Analysis, providing a clearer view of the overall market structure across multiple timeframes, with real-time BUY / SELL signals that do not repaint. It is designed to help filter trading op
VirtualTradePad PRO SE MT5 — professional trading control center for MetaTrader 5 VirtualTradePad PRO SE is a premium chart-based trading panel and trade-management workspace for MetaTrader 5 . It is designed for traders who want faster execution, clearer position control, structured trade management, visual level planning and a professional workflow directly from the chart. This is not only a BUY / SELL panel. PRO SE combines manual trading, pending orders, position management, partial exits, b
YuClusters
Yury Kulikov
4.93 (43)
Attention: You can view the program operation in the free version  YuClusters DEMO .  YuClusters is a professional market analysis system. The trader has unique opportunities to analyze the flow of orders, trade volumes, price movements using various charts, profiles, indicators, and graphical objects. YuClusters operates on data based on Time&Sales or ticks information, depending on what is available in the quotes of a financial instrument. YuClusters allows you to build graphs by combining da
Quant AI Agents
Ho Tuan Thang
5 (1)
Quant AI Agents are independent trading Expert Advisors. Instead of trading using a fixed strategy like other conventional EAs, Quant AI Agents   is a   multi-agent AI trading framework   that turns natural-language strategy prompts into live.  WANT THE SAME RESULTS AS MY LIVE SIGNAL?   Use the exact same brokers I do:   IC MARKETS , IC TRADING   .  Unlike the centralized stock market, Forex has no single, unified price feed.  Every broker sources liquidity from different providers, creating un
The product will copy all telegram signal to MT5 ( which you are member) , also it can work as remote copier.  Easy to set up, copy order instant, can work with almost signal formats, image signal,  s upport to translate other language to English Work with all type of channel or group, even channel have "Restrict Saving Content", work with  multi channel, multi MT5 Work as remote copier: with signal have ticket number, it will copy exactly via ticket number. Support to backtest signal. How to s
EasyInsight AIO MT5
Alain Verleyen
4.92 (12)
EASY Insight AIO – All-In-One Power for AI-Driven Trading Want to skip the setup and start scanning the entire market – Forex, Gold, Crypto, Indices, and even Stocks – in seconds? EASY Insight AIO is the complete plug-and-play solution for AI-powered trade analysis. It includes all core Stein Investments indicators built-in and automatically exports clean, structured CSV files – perfect for backtesting, AI prompts, and live market decision-making. No need to install or configure indicators manu
AI Agents Supervisor
Ho Tuan Thang
5 (1)
AI Agent Supervisor is NOT an Expert Advisor. AI Agent Supervisor   is a   multi-agent AI risk & portfolio supervisor   that watches every EA on your account and intervenes in real time.  WANT AN AI PORTFOLIO MANAGER WATCHING YOUR FLEET 24/7?   Run your fleet on the same brokers I do:   IC MARKETS , IC TRADING   .  Unlike the centralized stock market, Forex has no single, unified price feed.  Every broker sources liquidity from different providers, creating unique data streams. The Supervisor r
Trade Copier Pro MT5
Vu Trung Kien
3.67 (3)
Trade Copier Pro MT5 is a tool to copy trade remotely to multiple MT4, MT5 and cTradfer accounts at different computers/locations over internet. This is an ideal solution for you if you are a signal provider and want to copy your trades to other receivers globally on your own rules. One provider can copy trades to multiple receivers and one receiver can get trade from multiple providers as well. The provider can even set the subscription expiry for each receiver, so that receiver will not be abl
The product will copy all  Discord  signal   to MT5   ( which you are member  ) , also it can work as remote copier.  Easy to set up. Work with almost signal formats, support to translate other language to English Work with multi channel, multi MT5. Work with Image signal. Copy order instant, auto detect symbol. Work as remote copier: with signal have ticket number, it will copy exactly via ticket number. How to setup and guide: Let read all details about setup and download Discord To MetaTrader
Unlimited Trade Copier Pro MT5 is a tool to copy trade remotely to multiple MT4, MT5 and cTrader accounts at different computers/locations over internet. This is an ideal solution for you if you are a signal provider and want to copy your trades to other receivers globally on your own rules. One provider can copy trades to multiple receivers and one receiver can get trade from multiple providers as well. The provider can even set the subscription expiry for each receiver, so that receiver will n
Adam FTMO MT5
Vyacheslav Izvarin
5 (2)
ADAM EA Special Version for FTMO Please use ShowInfo= false for backtesting ! Our 1st EA created using ChatGPT technology Trade only GOOD and checked PROP FIRMS  Default parameters for Challenge $100,000 Tested on EURUSD and GBPUSD only  Use 15MIN Time Frame Close all deals and Auto-trading  before Weekend at 12:00 GMT+3  Friday For Prop Firms MUST use special Protector  https://www.mql5.com/en/market/product/94362 --------------------------------------------------------------------------------
ManHedger MT5
Peter Mueller
4.83 (6)
THIS EA IS A SEMI-AUTO EA, IT NEEDS USER INPUT. Manual & Test Version Please TEST this product before BUYING  and watch my video about it. The price of the ManHedger will increase to 250$ after 20 copies sold. Contact me for user support or bug reports or if you want the MT4 version! MT4 Version  I do not guarantee any profits or financial success using this EA. With this Expert Advisor, you can: Implement your own Zone Recovery strategy to capitalize on trending markets. Create Grid trading s
Check EA performance  https://www.mql5.com/en/signals/2376164?source=Site +Profile+Seller Spot vs Future Arbitrage EA for MT5 Spot vs Future Arbitrage EA is an automated Expert Advisor designed for MetaTrader 5 that operates using price differences between Gold spot and Gold futures instruments. The strategy opens positions on both instruments simultaneously to take advantage of temporary differences between spot and futures prices. Requirements The trading account must provide both Gold spot
Mt5 To InterativeBrokers Copier allows you to copy deals from MT5 account to Interactive Brokers. With this, you can run your EA strategy on a MT5 Demo/Real Account, then copy all the deals to Interactive Brokers account real time. Features: 1. Copy or Invert-Copy deals Realtime from MT5 to IB Account. 2. Synchronizing positions of both accounts periodicaly, in case any missing copying. 3. You can choose only Buy position or Sell position. Symbols Setup: General Format:  {MT Symbol} -> {IB S
FUTURES ORDERFLOW FOOTPRINT CHART Professional OrderFlow EA for MetaTrader 5 Version 1.01| Professional tool for real traders | Institutional-Grade Visualization STRATEGY TESTER USERS - PLEASE SELECT EVERY REAL TICK WHEN TESTING AND YOU HAVE DOWNLOADED HISTORICAL DATA. IF YOU SEE A WAITING SCREEN AND IT IS NOT DOWNLOADING, IT MEANS YOU HAVE LOW HISTORICAL DATA. TRY 1 MIN AND 5 MIN FIRST ON 1 DAY DATA. ONE DAY DATA SHOULD BE THE NEWEST AND MOST CURRENT DATE. PLEASE WAIT UNTIL THE MARKET HAS ROL
Indicator Automator EA: The Ultimate Indicator Automation Tool Tired of being chained to your desk, waiting for signals from your favorite indicator? Do you want to eliminate emotional trading and unlock the true potential of your manual strategy? Indicator Automator EA is a powerful and highly versatile Expert Advisor for MetaTrader 5 designed to automate any trading indicator that provides clear Buy and Sell signals through its indicator buffers. You don't need to be a programmer. If you have
Crystal Trade Manager – Advanced MT5 Risk and Trade Control Utility Overview Crystal Trade Manager (CTM) is a professional MetaTrader 5 utility designed for risk management, trade automation, and instant execution control. It provides traders with an integrated system for protecting equity, managing daily drawdowns, controlling lot sizes, and applying automation features such as automatic SL/TP, break-even, and trailing stop. The tool is suitable for manual traders, prop-firm challenge particip
Features   With MT5 to Interactive Brokers(IB) Trader, you can: 1. Load chart data from IB to MT5, and Analyze with all standard or customer Indicators. 2. Place Orders to IB Account Directly in MT5. 3. Make your Own EAs upon IB Securities by only making minus changes of the trading function. Usage 1) Installation Copy the "Mt5ToIBTraderEn.ex4" and sample files to [MT5 Data Folder]->MQL5->Experts.  2)  MT5 Settings Add the IP Address to the MT5 Allowed URLs in 'Tools->Options->Expert Adviso
HINN Lazy Trader
ALGOFLOW OÜ
5 (1)
LIMITED SUMMER SALE -40% ! ONLY $470 insead of $790!  Maximum real discount! ONLY UNTIL 08/22 The core idea: using the user interface, you configure the parameters the chart must meet before entering a position (or positions), choose which entry models to use, and set the rules for when trading and planning should end. Lazy Trader  handles the rest: it  takes over all the routine chart watching and execution! full description  :: 3 key videos [1] ->  [2]   ->  [3] What can it do? - Understand
Active Lines
Yury Kulikov
5 (2)
Attention: Demo version for review and testing can be downloaded here . It does not allow trading and can only be run on one chart. Active Lines - a powerful professional tool for operations with lines on charts. Active Lines provides a wide range of actions for events when the price crosses lines. For example: notify, open/modify/close a position, place/remove pending orders. With Active Lines you can assign several tasks to one line, for each of which you can set individual trigger conditions
Telegram To MT5 Receiver
Levi Dane Benjamin
4.53 (15)
Copy trade signals from Telegram channels you already belong to (including private and restricted channels) directly into MetaTrader 5. Set your risk rules once, monitor execution, and manage positions with built-in protections designed to reduce mistakes and overtrading. Fast setup : configure your channels, select what to copy, and start within minutes using a clean on-chart interface. User Guide + Demo | MT4 Version Who this is for Traders who follow one or more signal providers and want cons
Telegram to mt5 pro
Janet Abu Khalil
4 (4)
Telegram to MT5 Pro — Advanced Telegram Signal Copier with Auto-Fix, Multi-TP, Risk Control and Full Trade Management Telegram to MT5 Pro — Professional Telegram Signal Copier Telegram to MT5 Pro is a high-performance trade copier that automatically executes signals from Telegram directly into your MetaTrader 5 account, with full control over risk, execution, and trade management. The system consists of two components: • The Expert Advisor (EA) running inside MetaTrader 5 • A companion desktop
More from author
️ MPSmartPanel — your reliable trading assistant MPSmartPanel   is a compact trading panel for MetaTrader 5 that combines the convenience and efficiency of manual trading with strict discipline and full risk control. The panel   protects your deposit   from losses and helps you trade consciously, following your own system. Trading-system checklist (program-controlled) You fill in   your own checklist yourself (4 condition tiles, e.g.: trend, news, pattern, signal), and the panel   automatica
DIVERGENCE SCANNER Find Divergences Faster. See What Others May Miss. Divergence Scanner is a specialized tool designed to automatically identify potential divergences across multiple trading instruments. It analyzes Stochastic and RSI , detects bullish and bearish divergences, and presents the results in a clear, structured table. Key Features: Automatic divergence detection; Stochastic analysis; RSI analysis; Bullish divergences; Bearish divergences; MOSTIPAN SMART TRADING
FREE
TREND SCANNER Stay With the Trend. Trade With Confidence. Trend Scanner analyzes the market to determine trend direction and strength using a combination of technical indicators. The system combines EMA 150/365, EMA 9/21, RSI, MA to confirm market direction and filter out weak or sideways conditions. Key Features: Bullish and bearish trend detection; EMA 150/365 and EMA 9/21 analysis; RSI confirmation; MACD momentum analysis; ️ ADX ranging-market filter; Trend strength measur
FREE
Filter:
No reviews
Reply to review