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.

Prodotti consigliati
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
Blog di MQL5: https://www.mql5.com/en/blogs/post/761446 Versione MT4: https://www.mql5.com/en/market/product/136790 Versione MT5: https://www.mql5.com/en/market/product/136791 Time Wizard è un assistente di trading professionale pensato per i trader che necessitano di velocità, tempismo e controllo dell'esecuzione in un'unica dashboard intuitiva. Questo Expert Advisor è progettato per il trading basato su eventi, l'esecuzione programmata e la gestione semiautomatica rapida degli ordini. Conse
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 — Visualizza i tuoi giorni di trading più profittevoli Trasforma la tua cronologia di trading in insight chiari e giornalieri con Trading Calendar. Trading Calendar è un potente strumento di analisi per MT5 progettato per aiutare i trader a visualizzare la redditività giorno per giorno tramite una heatmap interattiva di profitti e perdite. Invece di scorrere un lungo storico di operazioni, puoi identificare subito i tuoi migliori giorni, i peggiori giorni, le serie vincenti e i
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 — Visualizza i tuoi giorni di trading più profittevoli Trasforma la tua cronologia di trading in insight chiari e giornalieri con Trading Calendar. Trading Calendar è un potente strumento di analisi per MT5 progettato per aiutare i trader a visualizzare la redditività giorno per giorno tramite una heatmap interattiva di profitti e perdite. Invece di scorrere un lungo storico di operazioni, puoi identificare subito i tuoi migliori giorni, i peggiori giorni, le serie vincenti e i
Live Price With PNL
Muhammad Jawad Shabir
INDICATORE VISUALIZZAZIONE PREZZO LIVE E PROFITTO TOTALE PERFETTO PER TRADING LIVE E CONDIVISIONE SCHERMO Progettato specificamente per day trader, scalper e sessioni di trading in streaming live Questo indicatore professionale fornisce visualizzazione prezzi in tempo reale e tracciamento completo dei profitti direttamente sul tuo grafico - essenziale per trading ad alta frequenza e trasmissioni di trading live. CARATTERISTICHE PRINCIPALI VISUALIZZAZIONE PREZZO IN TEMPO REALE Aggiornamenti prezz
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" - è una versione avanzata dell'indicatore frattale, uno strumento di trading molto utile! - Come sappiamo, l'indicatore MT5  Standard fractals non ha impostazioni, il che è molto scomodo per i trader. - Adjustable Fractals ha risolto questo problema, ha tutte le impostazioni necessarie: - Periodo regolabile dell'indicatore (valori consigliati: superiori a 7). - Distanza regolabile dai massimi/minimi del prezzo. - Design regolabile delle frecce frattali. - L'indicatore è do
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 è un bot di trading automatico innovativo, progettato per operare efficacemente sui mercati GBPUSD, XAUUSD e USDJPY. Questo bot esegue in media 3-5 operazioni a settimana, impiegando una combinazione intelligente di algoritmi di apprendimento automatico e strategie basate sull'azione dei prezzi per offrire un'eccezionale esperienza di trading. Prestazioni e Affidabilità: Versatilità di Mercato: Cyber Pulse è ottimizzato per un'ampia gamma di asset, inclusi i mercati delle
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
RISULTATO WA_PV_BOX_EFFORT X per MT5 Il WAPV Box Effort x Result Indicator fa parte del gruppo Package Indicators (Wyckoff Academy Wave Market). L'indicatore WAPV Box Effort x Result Indicator per MT5 ti aiuta a leggere il prezzo e il volume. La sua lettura consiste nell'assistere nell'identificazione dello sforzo x risultato in onde create dal grafico. L'indicatore WAPV Box Effort x Result Indicator per MT5 quando la casella è verde significa che il volume è a favore della domanda e quando la c
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
Gli utenti di questo prodotto hanno anche acquistato
================================================================================ 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
Power Candles Strategy Scanner - Strumento di ricerca configurazioni multi-simbolo con ottimizzazione automatica Power Candles Strategy Scanner utilizza lo stesso motore di auto-ottimizzazione che alimenta l'indicatore Power Candles, applicandolo a tutti i simboli presenti nel tuo Market Watch, uno accanto all'altro. Un unico pannello ti indica quali simboli sono statisticamente negoziabili in questo momento, quale strategia è vincente su ciascuno di essi, la coppia ottimale di Stop Loss / Take
Premium Trade Manager - Il pannello di trading con un coach integrato Premium Trade Manager porta un coach di trading direttamente nel tuo grafico, con un motore di esecuzione completo al di sotto. Imposta il trade come fai sempre, poi lascia che Max, il tuo coach di trading IA, legga esattamente quel setup rispetto al tuo conto live e ti dia un verdetto chiaro prima che tu confermi: lo stop rispetta un approccio disciplinato, il rischio è ragionevole, c'è un evento ad alto impatto tra pochi min
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) MULTI-ASSET SUPPORT Trade any asset available on your broker - Forex: Major, Minor, Exotic pairs - Crypto: BTC, ETH, XRP, SOL, BNB - Stocks: Apple, Tesla, Amazon, Google, etc. - Commodities: Gold, Silver, Oil, Gas - Indices: US30, NAS100, SPX500, DAX40 - Any CFD your broker offers VERIFIED TRADING RESULTS - Farmed Hedge Yield Axi Copy:  https://www.mql5.com/en/signals/2356376 - Farmed Hedge Yield Exn Copy:   https:/
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
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
Custom Alerts AIO: Monitora tutti i mercati — senza alcuna configurazione Panoramica Custom Alerts AIO è una soluzione di monitoraggio dei mercati pronta all’uso che non richiede alcuna configurazione. Tutti gli indicatori necessari — FX Power, FX Volume, FX Dynamic, FX Levels, IX Power — sono integrati internamente. Non vengono mostrati grafici, rendendolo ideale per generare alert in tempo reale in modo discreto ed efficiente. Supporta tutte le classi di asset offerte dal tuo broker: Forex,
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
Exp5 VirtualTradePad PRO SE for MT5
Vladislav Andruschenko
5 (1)
VirtualTradePad PRO SE MT5 — centro di controllo professionale per il trading su MetaTrader 5 VirtualTradePad PRO SE è un pannello di trading premium basato sul grafico e un ambiente di gestione delle operazioni per MetaTrader 5 . È progettato per i trader che desiderano esecuzione più rapida, controllo più chiaro delle posizioni, gestione strutturata delle operazioni, pianificazione visiva dei livelli e un workflow professionale direttamente dal grafico. Non è soltanto un semplice pannello BUY
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 – La soluzione all-in-one per un trading intelligente e senza sforzo Panoramica Immagina di poter analizzare l’intero mercato — Forex, Oro, Cripto, Indici e persino Azioni — in pochi secondi, senza dover controllare manualmente i grafici, installare indicatori o affrontare configurazioni complicate. EASY Insight AIO è il tuo strumento definitivo di esportazione per il trading alimentato dall’IA, pronto all’uso. Offre una panoramica completa del mercato in un unico file CSV pul
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
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
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
Latency Arbitrage
Heri Yusufu Kaniugu
Latency Arbitrage – Ultra Fast Execution & Price Inefficiency Capture Latency Arbitrage  utility tool is designed to exploit short-term price inefficiencies between fast and slow price feeds. Instead of predicting market direction, the EA focuses on execution speed and price deviation opportunities, allowing traders to capture micro-movements before the market fully adjusts. With built-in risk controls and smart filtering, it ensures precise and disciplined trading performance. Price increases b
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
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
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
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
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)
Copia i segnali da qualsiasi canale di cui sei membro (compresi quelli privati e ristretti) direttamente sul tuo MT5.  Questo strumento è stato progettato con l'utente in mente offrendo molte funzionalità necessarie per gestire e monitorare gli scambi. Questo prodotto è presentato in un'interfaccia grafica facile da usare e visivamente accattivante. Personalizza le tue impostazioni e inizia ad utilizzare il prodotto in pochi minuti! Guida per l'utente + Demo  | Versione MT4 | Versione Discord
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 — Copiatore di segnali Telegram professionale Telegram to MT5 Pro è un copiatore di trading ad alte prestazioni che esegue automaticamente i segnali da Telegram direttamente nel tuo account MetaTrader 5, con pieno controllo su rischio, esecuzione e gestione del trading. Il sistema è composto da due componenti: • L’Expert Advisor (EA) che gira all’interno di M
Altri dall’autore
MP Smart Panel
Pavlo Mostipan
️ 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
Filtro:
Nessuna recensione
Rispondi alla recensione