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.

おすすめのプロダクト
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ブログ: https://www.mql5.com/en/blogs/post/761446 MT4版: https://www.mql5.com/en/market/product/136790 MT5版: https://www.mql5.com/en/market/product/136791 Time Wizardは、スピード、タイミング、そして執行コントロールを一つの洗練されたダッシュボードで実現したいトレーダーのために開発された、プロフェッショナルなトレーディングアシスタントです。 このエキスパートアドバイザーは、イベントベースのトレーディング、スケジュール執行、そして高速な半自動注文管理のために設計されています。注文を事前に準備し、正確な執行時間を設定し、複数の指値注文を発注し、ストップロスとテイクプロフィットでリスクを管理し、チャート上のコンパクトなインターフェースからすべてを監視できます。 経済イベント、セッション開始、ブレイクアウト、あるいは独自のカスタムスケジュールなど、どのようなタイミングで取引を行う場合でも、Time Wizardは構造と規律に
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 — あなたの最も利益の出た取引日を可視化 Trading Calendar を使って、取引履歴をわかりやすい日別パフォーマンス分析に変換しましょう。 Trading Calendar は、MT5向けに設計された強力な分析ツールで、インタラクティブな損益カレンダー(P&Lヒートマップ)を通じて、日々の利益と損失を視覚的に確認できます。長い取引履歴を一つずつ確認する必要なく、最も良い日、最も悪い日、連勝や連敗パターンを瞬時に把握できます。 日別・週別・月別でパフォーマンスを分析し、あなたの戦略が最も効果を発揮するタイミングを正確に見つけ出せます。 主な機能 • 日別収益ヒートマップ 利益日と損失日を色分け表示し、すぐに状況を把握できます。 • 勝率トラッキング 取引の精度と安定性を継続的に確認できます。 • プロフィットファクター分析 戦略の質を収益効率で評価します。 • 平均利益・平均損失の分析 リスクリワード比率を明確に理解できます。 • ベスト・ワースト取引日の検出 最も良い日と悪い日を即座に特定します。 • 週間パフォーマンス概要 週ご
FREE
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 .
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 — あなたの最も利益の出た取引日を可視化 Trading Calendar   を使って、取引履歴をわかりやすい日別パフォーマンス分析に変換しましょう。 Trading Calendar   は、MT5向けに設計された強力な分析ツールで、インタラクティブな損益カレンダー(P&Lヒートマップ)を通じて、日々の利益と損失を視覚的に確認できます。長い取引履歴を一つずつ確認する必要なく、最も良い日、最も悪い日、連勝や連敗パターンを瞬時に把握できます。 日別・週別・月別でパフォーマンスを分析し、あなたの戦略が最も効果を発揮するタイミングを正確に見つけ出せます。 主な機能 •   日別収益ヒートマップ 利益日と損失日を色分け表示し、すぐに状況を把握できます。 •   勝率トラッキング 取引の精度と安定性を継続的に確認できます。 •   プロフィットファクター分析 戦略の質を収益効率で評価します。 •   平均利益・平均損失の分析 リスクリワード比率を明確に理解できます。 •   ベスト・ワースト取引日の検出 最も良い日と悪い日を即座に特定します。 •  
リアルタイム価格と総利益表示インジケーター ライブトレードと画面共有に最適 デイトレーダー、スキャルパー、ライブストリーミングトレードセッション専用に設計 このプロフェッショナルインジケーターは、チャート上でリアルタイム価格表示と包括的な利益追跡を提供します - 高頻度取引とライブトレーディング配信に不可欠です。 主要機能 リアルタイム価格表示 毎秒ライブビッド価格更新 全シンボルタイプのプロフェッショナル書式設定 貴金属向けゴールド/XAU特別書式設定 画面共有に最適な大型明確表示 デイトレーディング決定のための瞬時価格更新 包括的利益追跡 トレーディング履歴からのアカウント総利益 トレード終了時のリアルタイム利益更新 カスタム追加利益金額 手数料とスワップの包含 プラス/マイナス指標付きプロフェッショナル利益書式設定 パフォーマンス最適化 スマートキャッシュシステム - 最小CPU使用量 1秒更新間隔 - 稲妻の速さ 効率的なタイマーベース更新 リアルタイム取引監視 プロフェッショナルエラー処理 高度なカスタマイズ 調整可能なフォント名とサイズ 利益と損失のカスタム色 チャート上
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
「調整可能なフラクタル」はフラクタル インジケーターの高度なバージョンで、非常に便利なトレーディング ツールです。 - ご存知のとおり、標準フラクタル MT5  インジケーターには設定がまったくありません。これはトレーダーにとって非常に不便です。 - 調整可能なフラクタルは、この問題を解決しました。必要な設定がすべて揃っています。 - インジケーターの調整可能な期間 (推奨値 - 7 以上)。 - 価格の高値/安値からの距離を調整可能。 - フラクタル矢印のデザインを調整可能。 - インジケーターにはモバイルおよび PC アラートが組み込まれています。 高品質のトレーディングロボットとインジケーターをご覧になるにはここをクリックしてください! これは、この MQL5 Web サイトでのみ提供されるオリジナル製品です。
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 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 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
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
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
MT5のWA_PV_BOX_EFFORTXRESULT WAPV Box Effort x Result Indicatorは、Package Indicatorsグループ(Wyckoff Academy Wave Market)の一部です。 MT5のWAPVボックスエフォートx結果インジケーターは、価格とボリュームを読み取るのに役立ちます。その読みは、努力×結果の特定を支援することで構成されています グラフによって作成された波で。 ボックスが緑色の場合のMT5のWAPVボックスの労力x結果インジケーターは、ボリュームが需要に有利であり、ボックスが赤色の場合を意味します ボリュームは供給に有利です。 ボックスが大きいほど、価格に対するボリュームの変位が大きくなります。価格の上昇波がボックスのサイズに比例しない場合、 努力×結果。 非常に視覚的な方法で、ボリュームと価格の間のこの相違を識別できます。 MT5のWAPVBoxEffort x Result Indicatorを使用すると、インジケーターをゼロ軸の下に配置することで、視覚化を向上させることもできます。 ティックボリュームとリア
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
このプロダクトを購入した人は以下も購入しています
================================================================================ 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 - 自動最適化型マルチシンボル設定ファインダー パワーキャンドル・ストラテジー・スキャナーは 、パワーキャンドル・インジケーターを駆動するのと全く同じ自己最適化エンジンを、マーケットウォッチに登録されているすべての銘柄に対して並行して実行します。1つのパネルで、現在統計的に取引可能な銘柄、各銘柄で勝率の高い戦略、最適なストップロス/テイクプロフィットの組み合わせが表示され、新たなシグナルが発生した瞬間に通知が届きます。 このツールは、Stein Investmentsのエコシステムの一部です。  18種類以上のツールをすべて閲覧し、AIを活用したセットアップの推奨を受け取り、  https://stein.investments でコミュニティに参加しましょう 市場動向を網羅。銘柄ごとに3,000件以上の自動最適化。2種類のアラート。ワンクリックでチャートを切り替えて即座にアクション。 なぜこれが必要なのか 多くのマルチ銘柄スキャナーは、 価格の動き (ボラティリティ、変動率、銘柄ごとのRSI)を表示するだけです。それ
Premium Trade Manager - コーチ内蔵型トレードパネル Premium Trade Manager は、AIトレーディングコーチをあなたのチャートの中に置き、その下に完全な執行エンジンを備えたツールです。いつも通りにトレードをセットアップし、あなた専任のAIトレーディングコーチ Max にそのセットアップをそのまま読み取らせて、発注前に率直な見解を伝えてもらいましょう。ストップの幅が規律あるアプローチに合っているか、リスクサイズは適切か、高影響のニュースイベントが数分後に迫っていないか、プロップファームの制限に近づいていないか。その下には、クリックの後をすべて処理するエンジンが備わっています。ワンクリックのリスクサイズ計算による発注、チャート上でドラッグして組み立て、発注後も動かせるプラン、最大4段階の分割利確、7種類のトレール方式、リアルタイムのプロップファームコンプライアンス、ニュースガード、そしてコストを自ら採点するスプレッド機能。判断はあなたが下す。Max がもう一度確認する。後のことはすべてパネルが担う。 購入前に実際に触れて試せます。 ブラウザ上でライブ
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.
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:マルチマーケット監視を一括で実現 — 設定不要ですぐに使えるインテリジェントツール 概要 Custom Alerts AIO は、追加のインジケーター設定が不要で、インストール後すぐに利用できる高機能マーケットスキャナーです。FX Power、FX Volume、FX Dynamic、FX Levels、IX Power を内部にすべて統合し、主要なすべての資産クラス(為替、金属、指数、暗号資産)を一括監視できます。MetaTrader の仕様により、株式は個別のシンボルとして追加可能ですが、一般的には利用頻度は低めです。 1. なぜ Custom Alerts AIO を選ぶべきか 追加ライセンス不要 • 必要なすべての Stein Investments インジケーターが内蔵されており、すぐに使用可能です。 • チャートに表示されるグラフィックは省略されており、アラート生成に特化した構成です。 市場を広範囲にカバー • 為替、金属、暗号資産、株価指数に対応(株式は手動追加可能)。 • シンボル名を入力する必要はなく、プロパティで資産クラス
VirtualTradePad PRO SE MT5 — MetaTrader 5向けプロフェッショナル取引コントロールセンター VirtualTradePad PRO SE は、 MetaTrader 5 向けのプレミアムなチャートベースの取引パネルであり、トレード管理ワークスペースです。より速い執行、明確なポジション管理、構造化されたトレード管理、視覚的なレベル計画、そしてチャート上で完結するプロフェッショナルなワークフローを求めるトレーダー向けに設計されています。 これは単なる BUY / SELL パネルではありません。PRO SE は、手動取引、予約注文、ポジション管理、部分決済、バスケット損益管理、平均化レベル、ATMルール、シグナル監視、リアルタイム市場情報、ストラテジーテスター (Strategy Tester) ワークフロー、VPS向け運用を、1つの連携されたインターフェースに統合します。 MT4版 | 完全な説明とスクリーンショット | 購入方法 | インストール方法 | ログファイルの取得方法 | テストと最適化の方法 | Expforex のすべての製品 PRO
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
EASY Insight AIO – スマートで手間いらずな取引のオールインワンソリューション 概要 数秒で市場全体——FX、ゴールド、暗号資産、指数、さらには株式まで——を、手作業のチャート確認や複雑なセットアップ・インジケーター導入なしにスキャンできたらどうでしょうか? EASY Insight AIO はAIトレードのための究極のプラグ&プレイ型エクスポートツールです。市場全体のスナップショットを、クリーンなCSVファイルで一括出力。ChatGPT、Claude、Gemini、Perplexityなど、さまざまなAIプラットフォームで即座に解析できます。 ウィンドウの切り替えやグラフのごちゃごちゃしたオーバーレイはもう不要。自動エクスポートされる純粋で構造化されたインサイトだけで、無駄なチャート監視に悩まされず、スマートなデータ主導の判断に集中できます。 なぜEASY Insight AIOなのか? 本当のオールインワン • セットアップ不要、インジケーターのインストール不要、チャートへのオーバーレイ不要。インストールして起動し、エクスポートするだけです。 マルチアセット対
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 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 – 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
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
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
あなたがメンバーである任意のチャネルから(プライベートおよび制限されたものを含む)シグナルを直接あなたのMT5にコピーします。  このツールは、トレードを管理し監視するために必要な多くの機能を提供しながら、ユーザーを考慮して設計されています。 この製品は使いやすく、視覚的に魅力的なグラフィカルインターフェースで提供されています。設定をカスタマイズして、数分で製品を使用を開始できます! ユーザーガイド + デモ  | MT4版 | Discord版 デモを試してみたい場合は、ユーザーガイドにアクセスしてください。 Telegram To MT5 受信機は、ストラテジーテスターで動作しません! Telegram To MT5の特徴 複数のチャネルから一度にシグナルをコピー プライベートおよび制限されたチャネルからシグナルをコピー BotトークンまたはChat IDは必要ありません   (必要に応じて使用することができます) リスク%または固定ロットを使用して取引 特定のシンボルを除外 すべてのシグナルをコピーするか、コピーするシグナルをカスタマイズするかを選択 すべてのシグナルを認
Telegram to MT5 Pro — 高度なTelegramシグナルコピー機(自動修正・マルチTP・リスク管理・完全トレード管理) Telegram to MT5 Pro — プロフェッショナル Telegram シグナルコピーツール Telegram to MT5 Pro は、TelegramのシグナルをMetaTrader 5アカウントへ自動で直接実行する高性能トレードコピーシステムです。リスク管理、執行、トレード管理を完全に制御できます。 本システムは2つのコンポーネントで構成されています: • MetaTrader 5内で動作するExpert Advisor(EA) • Telegramと接続しシグナルをローカルでEAへ送信するコンパニオンデスクトップアプリ 両方は同じPC上で動作する必要があります。MQL5の制限によりEAはTelegramへ直接接続できません。ブリッジがTelegram処理を担当し、EAが取引を実行します。 サポートとインストール支援 完全なPDFインストール&ユーザーガイドが提供されます。 サポート内容: • 完全PDFユーザーガイド(全設定説明)
作者のその他のプロダクト
️ 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
フィルタ:
レビューなし
レビューに返信