Engulfing ProBot EA

Engulfing ProBot EA


Important Usage Information

The Engulfing ProBot strategy was originally designed and tested primarily on the H4 (4-Hour) timeframe. Although the EA can technically be used on lower timeframes such as H1, M30, M15 or M5, these timeframes usually require significantly different parameter settings and optimization results. Running the default settings on lower timeframes is strongly discouraged and may result in substantial losses.The EA was primarily developed for Forex currency pairs.

Never trade any instrument without optimization.

Failure to optimize the EA for a specific instrument may result in significant losses.

Past results, backtests and optimizations do not guarantee future profitability.

There is no Expert Advisor capable of generating guaranteed profits under all market conditions.

Always use proper risk management and never trade with money you cannot afford to lose.


Strategy Overview

Engulfing ProBot is an automated trading system for MetaTrader 5 based on engulfing candlestick patterns.

The EA searches for bullish and bearish engulfing formations and validates them using multiple optional confirmation filters. Depending on the configuration, the system can use swing validation, RSI filters, Awesome Oscillator confirmation and SuperTrend trend confirmation before opening a trade.

The robot supports multiple money management methods, automatic break-even protection and optional scale-in position building.

Trades can be managed using fixed Take Profit targets or dynamic RSI-based exit methods.

The goal of the strategy is to trade only when price action, trend and momentum align in the same direction.


Settings

  • MagicNumber

Default Value: 123456

Unique identifier used by the EA to recognize and manage its own trades.Use a different Magic Number if multiple Expert Advisors are running on the same account.

  • Debug

Default Value: true

Enables detailed logging in the MT5 Experts tab.

Recommended:

Enable during testing and disable during live trading if detailed logs are not required.

  • MaxSpreadPoints

Default Value: 50

Defines the maximum allowed spread for opening a new trade.If the current spread exceeds this value, the EA will skip the setup and wait for better market conditions.

Example:

MaxSpreadPoints = 50

Current spread = 55

Result: No trade is opened.

Special Value:

MaxSpreadPoints = 0

Disables spread filtering completely.

  • MinCandleSize

Default Value: 120

Defines the minimum size of the engulfing candle in points.Small candles are often market noise and generally produce weaker signals.

Higher values:

* Fewer trades

* Stronger setups

Lower values:

* More trades

* More aggressive entries

  • MaxCandleSize

Default Value: 1300

Defines the maximum allowed engulfing candle size.This filter helps avoid entries after unusually large candles often caused by high volatility or news events.

Higher values:

* More setups accepted

Lower values:

More conservative filtering

  • BodyRatio

Default Value: 1.2

Defines how much larger the engulfing candle body must be compared to the previous candle body.

Example:

Previous candle body = 100 points

BodyRatio = 1.2

Required engulfing body = 120 points or larger

Higher values:

* Stronger engulfing patterns

* Fewer trades

Lower values:

* More setups

* Less strict validation

  • WickToBodyRatio

Default Value: 5.0

Controls the maximum wick size relative to the candle body. Large wicks often indicate uncertainty rather than strong directional movement.

Lower values:

* Cleaner setups

* Fewer signals

Higher values:

*More setups accepted

  • WeakGap

Default Value: 20

Provides tolerance when validating engulfing conditions.This helps prevent valid setups from being rejected because of very small price differences caused by spread or broker feed variations.

Higher values:

* More setups accepted

Lower values:

* Stricter engulfing validation

  • SwingLookback

Default Value: 6

Defines how many previous candles are checked when validating a swing high or swing low.

The purpose of this filter is to ensure that the engulfing setup forms at a meaningful market turning point.

Higher values:

* Stronger swing confirmation

* Fewer trades

Lower values:

* More trades

* Less strict filtering

Example:

SwingLookback = 1

Only the engulfing setup itself is considered.

SwingLookback = 6

The setup must remain significant compared to the previous six candles.

  • EntryLongMaxRSI

Default Value: 65

Maximum RSI value allowed for long entries.

If RSI is above this value, no long trade will be opened.

Purpose:

Helps avoid buying after excessive upward movement.

  • EntryShortMinRSI

Default Value: 35

Minimum RSI value allowed for short entries.

If RSI is below this value, no short trade will be opened.

Helps avoid selling after excessive downward movement.

  • LongExitRSI

Default Value: 70

Defines the RSI level that activates RSI exit monitoring for long trades.

Once RSI reaches this level, the selected RSI exit logic becomes active.

  • ShortExitRSI

Default Value: 30

Defines the RSI level that activates RSI exit monitoring for short trades.

Once RSI reaches this level, the selected RSI exit logic becomes active.

  • RSISlowdown

Default Value: true

Enables RSI Slowdown exits.

How it works:

For long trades, the EA waits until RSI enters the exit zone above LongExitRSI.

The trade is closed when RSI later falls back below the exit level.

For short trades, the opposite logic is applied.

Purpose:

Attempts to keep trades open while momentum remains strong.

  • RSIReversal

Default Value: true

Enables RSI Reversal exits.

How it works:

After RSI enters the exit zone, the EA records the most extreme RSI value reached.

The trade is closed when RSI begins reversing from that extreme.

Purpose:

Attempts to capture profits near the end of strong market moves.

  • SupertrendATRPeriod

Default Value: 22

Defines the ATR period used by the SuperTrend indicator.

Lower values:

* Faster trend changes

* More signals

Higher values:

* Smoother trend detection

* Fewer false signals

  • SupertrendATRMultiplier

Default Value: 3.0

Controls the sensitivity of the SuperTrend indicator.

Lower values:

* Earlier trend changes

* More trades

Higher values:

* Stronger trend confirmation

Fewer trades

  • SupertrendTakeWicksIntoAccount

Default Value: true

Determines whether candle wicks are included when evaluating SuperTrend reversals.

Values:

* true = wicks included

* false = close prices only

Using wicks makes SuperTrend react faster to market movement.

  • MoneyMode

Default Value: Fixed Lot

Determines how position size is calculated.

Available modes:

* Fixed Lot

* Fixed Risk Money

* Risk Percent

  • FixedLot ( Base lot) !!

Default Value: 0.01

Used when MoneyMode is set to Fixed Lot.

Every trade will open using the specified lot size.

Example:

FixedLot = 0.10

All base positions open with 0.10 lots.

  • FixedRiskMoney

Default Value: 10.0

Used when MoneyMode is set to Fixed Risk Money AND UseScaleIn=false.

The EA automatically calculates position size so that the maximum loss equals the specified amount.

Example:

FixedRiskMoney = $10

The stop loss is sized so that the maximum risk is approximately $10.

  • RiskPercent (BASE risk) !!

Default Value: 1.0

Used when MoneyMode is set to Risk Percent.

The EA calculates position size based on account balance.

Example:

Balance = $1,000

RiskPercent = 1%

Maximum risk per trade = approximately $10.

  • UseBreakEven

Default Value: false

Enables automatic break-even protection.

When activated, the stop loss can be moved to the base trade entry price after price moves a specified distance in profit.

  • BreakEvenBodyMult

Default Value: 1.0

Defines when break-even is triggered.

The trigger distance is calculated using the engulfing candle body size.

Example:

Body size = 100 points

BreakEvenBodyMult = 1.0

Break-even activates after 100 points of favorable movement.

BreakEvenBodyMult = 1.5

Break-even activates after 150 points of favorable movement.

  • UseTP

Default Value: false

Enables fixed Take Profit targets.

When disabled, trades are managed using RSI exit logic.

Automatic Safety Feature:

If UseTP is disabled and both RSI exit methods are disabled, the EA automatically enables Take Profit protection to prevent trades from remaining open indefinitely.

  • UseScaleIn

Default Value: true

Enables additional position building after the base trade is opened.

When disabled, only the base position is traded.

  • ScaleInMode

Default Value: STOP

Determines how additional positions are placed.

Available modes:

LIMIT

Additional positions are placed immediately as pending limit orders.

STOP

Additional positions are armed and only placed when price reaches the configured trigger conditions.

  • ScaleInMultiplier

Default Value: 2.0

Defines the position size multiplier used for additional scale-in levels.

Example:

Base Lot = 0.10

ScaleInMultiplier = 1.5

Result:

Base = 0.10

L1 = 0.15

L2 = 0.225

  • PendingStopShiftPoints

Default Value: 30

Used only in STOP scale-in mode.

Defines how far beyond the scale-in level price must move before the pending stop order is placed.

Higher values:

* More confirmation

* Fewer scale-in activations

Lower values:

* Faster scale-in placement

* More aggressive position building


Risk Warning!

Trading Forex, CFDs, Indices and Commodities involves significant risk.

Past performance does not guarantee future results.

Always test the strategy on a demo account and use appropriate risk management before trading with real funds.


おすすめのプロダクト
A professional Expert Advisor (EA) for the Nasdaq 100 and XAU/USD that operates on a 5-minute timeframe, based on moving average crossovers to detect trends and clean entries in Gold and the Nasdaq 100. It is designed to capture fast and solid movements, filtering out false signals and avoiding noise in sideways markets. Ideal for traders seeking automation, consistency, and a clear strategy in a high-volatility asset. The system adapts to the dynamics of XAU/USD and Nasdaq and can be used on bo
Gyroscope        professional forex expert   (for EURUSD, GBPUSD, USDJPY, AUDUSD, USDCHF, EURGBP, EURJPY, NZDUSD, USDCAD, EURCHF, AUDJPY, CADJPY pairs)   alyzing the market using the Elliot Wave Index. Elliott wave theory is the interpretation of processes in financial markets through a system of visual models (waves) on price charts. The author of the theory, Ralph Elliott, identified eight variants of alternating waves (of which five are in the trend and three are against the trend). The mov
GoldenStrikePro – Precision Breakout Expert Advisor for XAUUSD GoldenStrikePro is a powerful and intelligent trading robot designed specifically for XAUUSD (Gold/USD). Built for precision breakout strategies, it leverages real-time market structure, EMA-based trend analysis, and smart trade execution to deliver consistent results with controlled risk. Whether you're a seasoned trader or just starting your algorithmic journey, GoldenStrikePro gives you the edge to trade gold with confidence.
PANHA SCALPING EA MT5 PANHA SCALPING EA MT5 is a professional automated scalping system designed to trade fast-moving forex markets using real-time market direction and advanced position control. The EA focuses on precise entries, controlled exposure, and intelligent basket-level profit and risk management, making it suitable for traders who want structured, automated scalping without complex configuration. Strategy Overview Market-direction based scalping Designed for fast-moving forex symbo
FREE
Description of   Simo : an innovative robot with a unique trading system Simo is a revolutionary trading robot that changes the rules of the game with its unique trading system. Using sentiment analysis and machine learning, Simo takes trading to a new level. This robot can work on any time frame, with any currency pair, and on the server of any broker. Simo uses its own algorithm to make trading decisions. Various approaches to analyzing input data allow the robot to make more informed decis
The Goldstar Gold Trend trading EA uses moving averages to gauge the direction of the trend of gold on a particular timeframe and if the conditions for buying or selling are met,one or two positions are opened depending on the settings in the EA. The EA strongest advantage is when the trend is above the 5 smooth moving average. The EA can work anytime and any day depending on the parameters in the EA settings. The EA can trade synthetics and other forex pairs with the right settings except gold
Sun Bin SCF is an Expert Advisor that identifies moments when market participants act in the same direction.  It observes recent price bars and volume to detect situations where buyers or sellers dominate together.  When a consistent crowd movement appears, the EA opens a trade in the same direction and manages it using pre-defined risk and exit rules. Main Features: - Crowd detection based on consecutive bars with similar direction. - Volume confirmation to avoid false signals in low-activity
SymbolRaptor
Marius Ovidiu Sunzuiana
RAPTOR – Neural Network Scalping Engine for M5 RAPTOR is an advanced, AI‑driven Expert Advisor engineered to hunt small, consistent profits across any trading symbol on the M5 timeframe . Built on a next‑generation neural network core, RAPTOR analyzes market micro‑structure with the speed, precision, and adaptability of a true predator—locking onto high‑probability opportunities and executing with surgical timing. Designed for traders who want a smart, self‑adjusting system rather than rigid
Bitcoin Trading  My Expert Advisor trade Bitcoin on H1 time frame, Base on ADX indicator,  Bollinger Bands indicator, and follow the trend. stop loss 31 usd/0.01 bitcoin take profit 19 usd/0.01 bitcoin (0.01 lot) Min deposit: from 300 usd Profit: 100%/year. Draw Down: < 35% Input Setting to test my EA: - Lots: 0.01 - Stoploss: 31 usd/0.01 bitcoin or 3100 usd/bitcoin depend on your broker and your account (adjust to the correct ratio and do not change) - Takeprofit:  19 usd/0.01 bitcoin or 1900 u
Aussie Loonie EA is a professional trading system developed exclusively for the AUDCAD currency pair. This cross pair is widely recognized for its stable and technical behavior, which makes it particularly attractive for traders who prefer structured and predictable market conditions rather than extreme volatility and sudden price spikes. By focusing solely on AUDCAD, the system is able to adapt precisely to the specific characteristics, rhythm and movement patterns of this pair. The EA operates
PipsPro Scalper Gold
Hayyu Imam Muhammad
3 (2)
*This product special for XAUUSD* pair. Therefore, all additional features and strategies in future updates will be included in this product . Published at 2026.04.18 |   --> NEXT PRICE $399 USD Please to send a private message after you make a purchase !!! PipsPro Scalper Gold (MT5) is an Expert Advisor developed exclusively for XAUUSD trading. It is compatible with both 2-digit and 3-digit brokers for the XAUUSD symbol. Before opening any position, the EA applies multiple filters to identify
Adaptive Pullback Strategy 適切なタイミングを待つスマートな取引。 このエキスパートアドバイザーは、強いトレンドを自動的に検知し、健康的なプルバック中に取引へエントリーします。価格を追いかけるのではなく、一時的な押し目を辛抱強く待ち、市場が主方向への継続を示すサインが出た時点で動きに参加します。システムは現在の市場状況に常に適応するため、トレンド相場とレンジ相場の両方に適しています。 トレーダーがこの戦略を好む理由 明確で論理的なエントリー — 確認されたプルバック後に優勢なトレンド方向のみで取引し、偽シグナルを避けます。 内蔵の適応性 — EAは最近のボラティリティと市場行動に基づいて感度を自動調整します — 設定を頻繁に変更する必要がありません。 リスクを意識したアプローチ — 各取引は現在の市場に合わせて調整される動的なストップロスとテイクプロフィットを使用し、不確実な時期に口座を守ります。 危険な手法なし — マーチンゲール、グリッド、ナンピンなし。各取引は適切なリスク管理で独立しています。 使いやすい — 主要通貨ペアとさまざまなタイムフレームで
Exclusive Black Pro Max MT5 — 自動売買システム Exclusive Black Pro Max MT5 は、MetaTrader 5 用のエキスパートアドバイザーであり、高度な市場分析アルゴリズムとリスク管理戦略に基づいています。EAは完全自動で稼働し、トレーダーの介入は最小限で済みます。 注意!購入後はすぐにご連絡ください 。設定手順をお渡しします! 重要: すべての例、スクリーンショット、テストはデモ目的のみです。あるブローカーで特定の通貨ペアが良好な結果を示しても、他のブローカーでも同様になるとは限りません。各ブローカーには独自のレート、スプレッド、取引条件があるため、 各通貨ペアはユーザー自身が最適化 し、リアル口座では 単一通貨モードのみ で稼働させる必要があります。マルチ通貨モードのスクリーンショットは例示のみです。 重要情報: EAのデモ版は評価目的のみです。最適化なしのテスト結果はアルゴリズムの実際の性能を反映しません。完全な利用には、ブローカー、証拠金、選択した銘柄に合わせた個別の最適化が必要です。最適化は必ずユーザー自身で行い、少なくと
ICT Sniper X
Ignacio Agustin Mene Franco
ICT Sniper X is a high-precision Expert Advisor specifically designed for trading XAUUSD (Gold) on the M1 timeframe. Philosophy and Strategy The system combines three powerful pillars of institutional trading: Classic Price Action (3 White Soldiers, 3 Black Crows, and Spinning Tops) ICT Smart Money Concepts (Order Blocks + Liquidity Sweeps / Stop Hunts) Volume Profile (POC, Value Area High/Low) This combination allows for the identification, with a high probability, of institutional manipulati
BFG 9000 is a unique system that trades your account 100% hands-free with   live-proven algorithms . Validated in live trading for 12 months. No Grid, no Martingale. The craziest part is however the ability to   manage your own trade decisions . The built-in AI takes your trades and manages them into profit. Safe Haven BFG includes a very stable algorithm that runs on 100% autopilot. It does not use Grid and no Martingale - thus you can be very sure, that it won't destroy your account. The syst
Gifted FX
Michael Prescott Burney
Giftex FX Portfolio for GBPUSD H1 Giftex FX Portfolio is a professional MetaTrader 5 Expert Advisor for GBPUSD on the H1 timeframe, running on the Expert Advisor HQ universal portfolio framework. It is designed for structured automated trading on GBPUSD H1, with clear on-chart feedback for entries, exits, protections, and live performance so you can see how the EA is operating in real time. Overview Giftex FX Portfolio combines its portfolio-style strategy logic for GBPUSD with the Expert Adviso
FREE
Hunt Protocol
Dmitriq Evgenoeviz Ko
Hunt Protocol is a Expert Advisor (EA) designed for trading the Gold (XAUUSD) market. It uses a unique strategy for capturing price impulses (impulse scalping) that occur during sharp price movements over short timeframes (seconds), as well as trend filtering on higher timeframes. The advisor is designed to profit from the high volatility of precious metals, combining entry accuracy with strict risk control. Only 5 copies at premium price, then the price will increase! Exclusive to XAUUSD: The
Universal Strategy EA - Multi-Timeframe Multi indicator filtering system A sophisticated automated trading system that combines multi-timeframe MACD analysis along with multiple indicators that can be set to true or false with advanced pattern recognition and comprehensive risk management. This EA operates as a standalone system with built-in signal detection, requiring no external indicators.  All indicators can be a combination of filtering system with adjustable timeframes to filter from inc
Automated trading system. Trend Advisor big_Source MT5 uses 2 EMA indicators and an RSI indicator. Safe, doesn 't use a martingale or a grid of warrants. The expert uses standard stop loss, teak profit and trailer stop. Requirements Optimized for GOLD (XAUUSD). The Expert Advisor trades on M30 timeframes. The minimum deposit is $ 500. Compatible with four- and five-digit accounts. Compatible with all brokers, including American ones, that are subject to the FIFO rule. Input Parameters L
CalcWave EA: A Robust, Indicator-Free Trading Solution (Only for EURUSD daily & H1 chart) CalcWave is a professionally engineered Expert Advisor that relies purely on mathematical models and money management rules—no chart indicators are used for trade execution. Backed by over 20 years of trading experience, this EA treats trading as a business, not gambling, and adapts to today’s dynamic markets. Key Features Uses advanced price-action and statistical algorithms instead of visual indicators Co
Gold Crazy EA   is an Expert Advisor designed specifically for trading Gold H1/ EU M15. It use some indicators to find the good Entry. And you can set SL or you can DCA if you want. It can be an Scalping or an Grid/ Martingale depend yours setting. This EA can Auto lot by Balance, set risk per trade. You also can set TP/ SL for earch trade or for basket of trade. - RSI_PERIOD - if = -1, then the default strategy works, if >0, then the RSI strategy works - MAX_ORDERS - to trade with only 1 order,
Open Season is a fully automated Expert Adviser that allows 'active' and 'set and forget' traders to trade high probability EURUSD H1 price action breakouts. It detects price action set ups prior to the London Open and trades breakdowns. The EA draws from human psychology to trade high probability shorts Every trade is protected by a stop loss In-built time filter Three position sizing techniques to suit your trading style Two trade management techniques The EA does not use a Martingale system T
LineTrader2.0MT5 MT4:  https://www.mql5.com/en/market/product/67566 リアルタイムでの実際のアカウント上の専門家の作業の監視: 1. 5,000ドルの残高を開始するリアルアカウントは、2020年5月に開始されました。 https://www.mql5.com/en/signals/773977 2. 2022年4月に開始された、10,000ドルの残高を開始するリアルアカウント: 顧問の仕事の背後にある考え方: 誰もが価格が一方向に無限にそして修正なしに行くことは決してないことを知っています。 テクニカル分析のルールは、歴史が常に繰り返されることを示しています。 これは、価格が一定期間後に安値と高値を繰り返すことを意味します。 また、様々な金融商品の価格行動チャートを見てみると、市場が一定の価格帯で横ばいになっている時間の約90%、市場には下降または上昇傾向がある時間の10%しかないことがわかりました。 この理解に基づいて、我々は潜在的な利益で取引操作を開き、記録するアルゴリズムを開発しました。 EAの設定
MangoFX XMAS EA is an automated trading robot that identifies trade opportunities using the Xmas Candles indicator method. It operates in two modes: Standard Mode · Detects patterns on chart internally · Opens a Buy trade on the first Lime (bullish) candle following a pattern · Opens a Sell trade on the first Red (bearish) candle following a pattern · Sets Stop Loss at the nearest swing high or low · Sets Take Profit based on your chosen Risk-to-Reward Ratio (RRR) Simple Opposite Mode (Alter
High-risk, high-reward M15 GBP-basket Expert Advisor for MetaTrader 5. London Zoo is built for traders who want one-chart automated GBP-basket execution with locked strategy logic, broker-side trade protection, campaign tracking, and simple named risk modes. The EA runs from one chart, scans the configured GBP basket internally, waits for completed M15 candle conditions, checks exposure and broker conditions, and manages trades with a fixed target and broker-side emergency stop. Important: The e
Gold Crowd Density Flip
Murtadha Majid Jeyad Al-Khuzaie
Gold Crowd Density Flip Expert Advisor is a powerful, market-ready trading system designed exclusively for XAUUSD (Gold) on the 15-minute timeframe. Built with precision logic and advanced filters, this EA is engineered to capture explosive breakout opportunities during periods of market compression, while maintaining strict risk management and professional-grade trade execution. Gold is one of the most volatile and liquid instruments in the financial markets, and trading it successfully requi
FREE
Hamster Scalping mt5
Ramil Minniakhmetov
4.71 (241)
Hamster Scalpingは、マーチンゲールを使用しない完全に自動化された取引アドバイザーです。夜のスキャルピング戦略。 RSIインジケーターとATRフィルターが入力として使用されます。アドバイザには、ヘッジ口座タイプが必要です。 実際の作業の監視、およびその他の開発については、https:// www.mql5.com/en/users/mechanic/sellerを参照してください 。 一般的な推奨事項 最小デポジット$ 100、最小スプレッドのECNアカウントを使用し、eurusd M5 gmt +3のデフォルト設定。 入力パラメータ EAは、4桁と5桁の両方の引用符で機能します。入力パラメータでは、5文字の値をポイントで示し、すべてを4文字で自動的に再計算します。 NewCycle-モードがオンの場合、アドバイザーは停止せずに動作します。モードがオフの場合、一連の取引の完了後、アドバイザーは新しい注文を開きません。 期間インジケーター1-最初のインジケーターの期間。 アップレベル-アドバイザーが売りを開始する最初のインジケーターの上位レベル。 ダウンレベル
Neural Nexus MT5
TICK STACK LTD
4.43 (7)
Buy Any 2 Products, Get 1 Free For a limited time, purchase any two TickStack EAs and choose a third one completely free — including a full lifetime license with unlimited activations. Neural Nexus MT5 Expert Advisor - Advanced Mean Reversion Grid System.  The Next Evolution in Automated EURUSD Trading Learn how I personally manage risk when using grid systems:  https://www.mql5.com/en/blogs/post/767250 Join my open group for questions related to any of my products:  https://www.mql5.com/en/mes
次は、日本語への正確な翻訳です。 統計的エッジ・トレーディングの8つの柱 はじめに トレードにおいて、過去が未来を予測することはありません。しかし、時間に刻まれたパターンは、繰り返される時を待つ市場のリズムを明らかにします。このガイドでは、「統計的エッジ・トレーディングの8つの柱」を紹介します。これは、過去のデータを実行可能なトレード・インテリジェンスへと変換する包括的なフレームワークです。 このシステムの核となるのは「ヒストリカル・データ(過去のデータ)」です。一過性のインジケーターや遅行シグナルとは異なり、過去のパターンは金融市場の季節的な鼓動を明らかにします。それは、人間の商取引、機関投資家の行動、そして経済的必然性という不変のサイクルに影響され、数十年にわたって繰り返されてきたパターンです。 農家を例に考えてみましょう。彼らは収穫の時期を知っています。なぜなら、自然は太陽と降雨の予測可能なサイクルに従っているからです。金融市場も同じように機能します。決算報告、財政予算、ポートフォリオのリバランスなどが、価格変動に季節的なパターンを生み出します。これが、グローバル市場を流れる資金
Edge EA Pro MT5
Aleksandr Zheltikov
4.67 (3)
Edge is a fully automated trading system that finds trading opportunities and places trades by combining technical indicators, price action analysis, wave analysis and all-day market pattern analysis using Fibonacci areas. Based on historical market data, the system's thinly layered multilayer neural network is trained to identify patterns and relationships that can be used to predict future price movements. The neural network processes various inputs, including price data, technical indicators
このプロダクトを購入した人は以下も購入しています
Scalping Robot Pro is a professional trading system designed specifically for fast and precise scalping on XAUUSD using the M1 timeframe. The system is built to capture short term market movements with accurate execution and controlled risk management. It focuses on real time price behavior, momentum shifts, short term volatility, and selective grid based trade management techniques to identify high probability trading opportunities in the gold market. Scalping Robot Pro is optimized for traders
MY LAST STRATEGY One engine. Every candle. Every session. Phase 1 – Limited Release Only 179/ 200  copies left. Once all copies are sold, this product will be delisted and no longer available for purchase. All Phase 1 buyers are invited to our private Discord server , where they receive continued updates, optimizations, and direct feedback support. Contact us after purchasing the product for comprehensive instructions and guidance on how to use one of our Slap all News products. TEN YEARS, DIST
XG Gold Robot MT5
MQL TOOLS SL
4.26 (111)
The XG Gold Robot MT5 is specially designed for Gold. We decided to include this EA in our offering after extensive testing . XG Gold Robot and works perfectly with the XAUUSD, GOLD, XAUEUR pairs. XG Gold Robot has been created for all traders who like to Trade in Gold and includes additional a function that displays weekly Gold levels with the minimum and maximum displayed in the panel as well as on the chart, which will help you in manual trading. It’s a strategy based on Price Action, Cycle S
We proudly present our cutting-edge robot, the  Big Forex Players EA  designed to maximize your trading potential, minimize emotional trading, and make smarter decisions powered by cutting-edge technology. The whole system in this EA took us many months to build, and then we spent a lot of time testing it. This unique EA includes three distinct strategies that can be used independently or in together. The robot receives the positions of the  biggest Banks  (positions are sent from our database t
Syna
William Brandon Autry
5 (27)
Syna 5 – 永続的インテリジェンス。真の記憶。ユニバーサル・トレーディング・インテリジェンス。 ほとんどのAIツールは一度回答すると、すべてを忘れます。何度も何度もゼロからやり直すことになります。 Syna 5は違います。 すべての会話、分析したすべてのトレード、なぜエントリーしたか、なぜ見送ったか、そしてその後マーケットがどう反応したかを記憶しています。毎セッションの完全なコンテキスト。トレードを重ねるごとに蓄積されるインテリジェンス。 これはマーケティングのためにAI機能を付け足しただけのEAではありません。 これは、インテリジェンスがリセットを止め蓄積を始めた時のトレーディングの姿です。 私たちは2024年末にMean Machineでこの変革を始めました。リアルな最先端AIをライブのリテールトレーディングに導入した最初期のシステムの一つです。 Syna 5は次なる飛躍です。 従来のEAは静的です。固定されたロジックに従い、マーケットが変化すると取り残されます。 Syna 5は時間とともにインテリジェンスを蓄積します。実際の結果から学び、変化する状況を認識し、思考と応答の
AiQ
William Brandon Autry
4.87 (38)
AiQ Gen 2 登場 – より速く。よりスマートに。かつてないほど高性能に。 私たちは2024年末にMean Machineでこの変革を始めました。リアルな最先端AIをライブのリテール取引に導入した最初期のシステムの一つです。 AiQ Gen 2はそのラインにおける次の進化です。 AiQ Gen 2は全く異なるレベルのスピードのために構築されています。指値注文がそのエッジの核にあり、モメンタムが拡大する前に精密にポジションを取り、そしてアダプティブ・インテリジェンスに引き継ぎます。 ほとんどのAIツールは一度回答すると、すべてを忘れます。 AiQ Gen 2は違います。 すべての指値注文セットアップ、各配置や調整の背後にある推論、なぜトリガーされたか、なぜ見送ったか、そしてマーケットがどう反応したかを記憶しています。毎セッションの完全なコンテキスト。時間とともに蓄積される永続インテリジェンス。 これはマーケティングのためにAIを付け足しただけのEAではありません。 これは精密な指値注文執行を中心に構築された高速専門インテリジェンスです。 従来のEAは固定されたロジックの中に閉じ込
Waka Waka EA MT5
Valeriia Mishchenko
4.13 (40)
8+ years of live track record with +12,000% account growth: Live performance MT 4 version can be found here Waka Waka is the advanced grid system which already works on real accounts for years. Instead of fitting the system to reflect historical data (like most people do) it was designed to exploit existing market inefficiencies. Therefore it is not a simple "hit and miss" system which only survives by using grid. Instead it uses real market mechanics to its advantage to make profit Supported cu
Golden Pickaxe MT5
Valeriia Mishchenko
3.56 (9)
EA has high-performance live track records of different set files: Live performance MT 4 version can be found here Golden Pickaxe is a mean-reversion grid trading system that uses machine learning technology to place high-profit potential trades on the Gold market. It uses real market inefficiencies to its advantage to have an edge over the market. The EA has 5 predefined set files, which are essentially 5 different trading systems on gold . You may choose the default option (XAU Risky) or have
Night Hunter Pro MT5
Valeriia Mishchenko
3.92 (37)
EA has a live track record with many months of stable trading with  low drawdown: All Pairs 9 Pairs Night Hunter Pro is the advanced scalping system which utilizes smart entry/exit algorithms with sophisticated filtering methods to identify only the safest entry points during calm periods of the market. This system is focused on a long-term stable growth. It is a professional tool developed by me years ago that is constantly updated, incorporating all the latest innovations in the trading area.
Bonnitta EA MT5
Ugochukwu Mobi
3.38 (21)
Bonnitta EA は、保留ポジション戦略 (PPS) と非常に高度な秘密取引アルゴリズムに基づいています。 Bonnitta EA の戦略は、秘密のカスタム指標、トレンドライン、サポートおよびレジスタンス レベル (価格アクション)、および上記の最も重要な秘密の取引アルゴリズムを組み合わせたものです。 3 か月以上のリアルマネーテストなしで EA を購入しないでください。ボニッタ EA をリアルマネーでテストするのに 100 週間以上 (2 年以上) かかりました。結果は以下のリンクで確認してください。 BONNITTA EA は愛とエンパワーメントから作られています。 少数の購入者のみを対象とした価格設定と著作権侵害アルゴリズムの実装です。 Bonnitta EA は、22 年間で 99.9% の品質を持つ本物のティックを使用してテストされ、実際の市場状況に近いスリッページとコミッションでストレス テストに合格しました。 Expert Advisor には、完全な統計制御による統計収集およびスリッページ制御のアルゴリズムが含まれています。 この情報はブローカーのトリックか
Scalp Master Expert Advisorは、トレンド相場におけるスキャルピング戦略のために設計された完全自動取引システムです。流動性の高い市場で短期的な取引機会を特定し、取引の質とリスク管理を重視しています。このEAは、裁量判断なしでルールベースの取引を好むトレーダーに適しています。 以下のようなスプレッドが狭く流動性の高い銘柄で最も効果を発揮します: XAUUSD(ゴールド) EURUSD GBPUSD USDJPY BTCUSD USTEC(米国テック指数) その他の主要・マイナー通貨ペア(低スプレッド・安定した約定環境) この戦略はトレンド市場専用に設計されており、レンジ相場や不安定な値動きなどの低品質な取引環境を避けることを目的としています。 主な特徴: 完全自動取引システム(手動操作不要) 移動平均線とRSIフィルターによる勝率向上と低確率トレードの回避 重要経済指標時のリスクを軽減するニュースフィルター搭載 ダイナミックにポジションを管理する高度なトレーリングシステム リスク管理とドローダウン削減に重点 Scalp Masterは取引前および取引中に市場状況を
Perceptrader AI MT5
Valeriia Mishchenko
4.67 (6)
80 consecutive months in profit with low drawdown: Live performance MT4 version can be found here Perceptrader AI is a cutting-edge grid trading system that leverages the power of Artificial Intelligence, utilizing Deep Learning algorithms and Artificial Neural Networks (ANN) to analyze large amounts of market data at high speed and detect high-potential trading opportunities to exploit. Supported currency pairs: NZDUSD, USDCAD, AUDNZD, AUDCAD, NZDCAD, GBPCHF Timeframe: M5 Features: Trend , Mome
Famous EA – 実運用で検証済みのパフォーマンス Famous EAは、安定した結果と高度な取引執行を求める本格的なトレーダーのために開発された高性能エキスパートアドバイザーです。価格アクション、トレンドラインの動き、そして独自のフィルターアルゴリズムを組み合わせ、高確率のエントリーとエグジットを規律ある形で捉えます。 戦略概要 Famous EAは以下を使用して動作します: リペイントしない独自インジケーターロジック 動的なトレンドライン/サポート・レジスタンス検出 マルチタイムフレームの価格アクション分析 独自のノイズフィルタリングアルゴリズム この組み合わせにより、市場環境に適応しながら過剰取引を避け、構造の整ったセットアップに集中します。 主な特徴 100%自動化 — 手動操作不要 主要FX通貨ペアおよび貴金属に最適化(USDJPY、GBPJPY、XAUUSD、XAUJPYなど) 柔軟なリスク設定(保守的〜攻撃的) 大きなボラティリティを回避するスマートニュースフィルター(任意) 高度なトレーリングストップ&ブレイクイーブン機能 マーチンゲールなし、グリッドなし、ヘッ
AI Nodiurnal EAは、先進的なForexロボットであり、最先端の機械学習技術を活用して取引戦略を最適化し、動的な外国為替市場でのパフォーマンスを向上させます。用語「Nodiurnal」は、通常の昼間の取引時間だけでなく、非標準の時間帯にも適応して稼働し、外国為替取引に対する連続的かつ適応的なアプローチを提供する能力を反映しています。 設定:通貨ペアのデフォルト設定:EURUSD H1。特別な設定は購入後にのみ提供されます。 リアルタイムアカウントシグナルはこちら: https://www.mql5.com/ja/signals/1270367 MT4バージョンはこちら: https://www.mql5.com/ja/market/product/69905 マーケットローンチプロモ!残り3/10のコピーのみ:USD 5,500 次の価格:USD 7,500 最終価格:USD 10,000 主な特徴: 機械学習アルゴリズム:AI Nodiurnal EAの主力は、機械学習アルゴリズムの活用にあります。これらのアルゴリズムは膨大な量の歴史的な市場データを分析し、パターン、トレ
Minting
Zenzo Phathisani Mtungwa
*** 最良の結果と迅速なエントリーおよびエグジットのために、M1またはM5に適用してください *** Minting – The Gold Scalper(Lite Edition)   は、Ramulo Software Ltd. によって開発された、プロフェッショナル仕様で軽量かつ効率的なエキスパートアドバイザー(EA)です。ゴールド(XAUUSD)の高いボラティリティと収益機会を最大限に活かすために設計されており、EMAベースのインテリジェントな相場構造、ATRによるトレンド検出、段階的なUSDトレーリング、そして厳格なドローダウン管理を一体化した、シンプルで運用しやすいトレーディングシステムです。 Minting は Emerge エコシステムへの入り口となるEAです。安定性・透明性・継続的な口座成長を提供するため、あえてシンプルに設計されています。推奨される流れは、Minting で得た利益を使って、より高度なトレード知能、深いマーケットロジック、そしてより積極的な利益獲得能力を持つフラッグシップEA「Emerge」へアップグレードすることです。 このEAは、 まず資本
SPARTAN GOLD SNIPER AI - V7.2 ULTIMATE The All-In-One Gold Solution: Smart Scalping and Professional Swing Trading. Spartan Gold Sniper is not just an EA; it is a complete trading system designed specifically for XAUUSD (Gold). Version 7.2 introduces the Smart Adaptive Engine, making it the most flexible bot on the market for both small accounts and large Prop Firm capitals. Critical Requirements Latency: You must use a VPS with less than 20ms latency (Recommended: MQL5 Built-in VPS). Account:
Saiko Scalper v5
Samir Saleh Mohammed Hassan
SAIKO Scalper is an advanced algorithmic trading robot designed to detect and exploit real market momentum using tick-level impulse analysis. Instead of relying only on traditional indicators, the robot monitors consecutive price movements in real time and enters trades when a strong directional impulse is detected. This approach allows SAIKO Scalper to capture fast market opportunities while avoiding many false signals caused by normal price fluctuations. The robot includes multiple layers of
PivotStorm EA   is a breakout pending-order trading system for MetaTrader 5. It generates Buy Stop or Sell Stop pending orders based on confirmed pivot points, and incorporates position sizing, order quantity limits, cooling periods, trailing stops, order expiry, and peak‑equity drawdown shutdown to help users execute automated trading in a more disciplined manner. =================================================== Join the PivotStorm public channel for free usage assistance: Click here  . ==
Swingy3
Bashier Awny Husein Ismail Alhafy
Swingy3: The Institutional Pivot & Swing Execution Engine Swingy3 is an algorithmic trading system designed for MetaTrader 5, focusing on high-conviction price action swings and institutional-grade risk management. Unlike standard retail indicators, Swingy3 analyzes market structure through dynamic pivot points and multi-timeframe confluence to identify entries where momentum and exhaustion align. The Strategy The core of Swingy3 is its advanced Pivot Analysis engine. It detects institutional "S
Expert advisor trades by pivot levels, support and resistance levels based on pivot levels. Also expert advisor takes into account volatility filter, uses standard Martingale and anti-Martingale systems, drawdown protection, standard trailing stop, trading time and trading Trade Order   – direction of trading (only buy, only sell or buy and sell) Use Volatility Filter   – enabling/disabling of volatility filter using Volatility Filter   – value of volatility filter Count Of Days For Volatility F
Gold Catalyst EA MT5
Malek Ammar Mohammad Alahmer
高度な自動化ゴールド・トレーディングシステム Gold Catalyst EA MT5 は、 XAU/USD(ゴールド) に特化した 完全自動 のトレーディングソリューションです。 トレンド追随型の戦略 、 プライスアクションによるエントリー判断 、そして 動的なリスク管理 を組み合わせることで、実際の市場環境で2.5年以上にわたり継続的なフォワードテストが行われ、 安定かつ信頼性の高い パフォーマンスを示しています。現在も VPS 上で稼働し続けています。 このアルゴリズムの背後には 15年の市場経験を持つ科学者 がいます——観察、仮説、検証、実証。誇大広告ではなく、方法論です。EA は現在も継続的に開発・改良され続けています。 1. 戦略概要 Gold Catalyst EA MT5 は、以下の要素を組み込んだ システマチック なアプローチを採用しています: トレンド分析: あらかじめ定義された市場条件に基づき、有望な売買機会を特定。 プライスアクションのフィルタリング: 成功確率の低いシグナルを排除し、勝率の高いセットアップのみを実行。 ダイナミックなオーダー執行: リアルタイム
Quantum Candlestick Collider — Institutional-Grade Precision for XAUUSD Quantum Candlestick Collider is a next-generation automated trading system engineered specifically for XAUUSD (Gold) on the M15 timeframe. Built on a proprietary quantitative engine and advanced candlestick intelligence, this EA delivers exceptional entry precision, adaptive market awareness, and institutional-level risk control — designed to perform even under extreme market volatility. Real trading environment Transpa
GOLD GRABBER Israel L. MT5 Grid-Hedge EA. WARNING: EA has Optimised  sets for GOLD (XAUUSD) ONLY (Minimum Capital: $1000) Download sets below: Use these sets for XAUUSD:  https://drive.google.com/drive/folders/1FBfc-eE7B7APhZ-P754R76d3xih8OnXX?usp=sharing Professional Grid-Hedge Trading System with Advanced Risk Management This sophisticated Expert Advisor employs a dual-directional grid strategy designed for consistent performance in volatile markets. The system opens positions in both directi
Stealth 150 DE40
Szymon Jan Szarowski
4 (1)
年率340%のパフォーマンス、申し訳ありません! はい、その通りです:この年率340%というバックテスト結果は、ほとんど信じられないほど優れています。でも、誤解しないでください——これはマーケティングトリックではなく、正確なプログラミングと誠実なバックテストの成果です。もちろん、こんな夢のようなリターンが永遠に続くわけではありません。なぜなら、どんなEAもバックテストで数年経てばロット数の上限に必ずぶつかるからです。 それでも、 Stealth 150 DE40 はアルゴリズムに“自由に動かせる”環境を与えれば、何が可能かを示しています。 というわけで、パフォーマンスについてはご容赦ください——それでは本題のエキスパートアドバイザーをご紹介します。 Stealth 150 DE40——DAX(DE40, .DE40Cash, GER40)用ブレイクアウト型エキスパートアドバイザー 見えない。止まらない。徹底的に透明。 Stealth 150 DE40は何をするのか? Stealth 150 DE40は、DAX(DE40, .DE40Cash, GER40)専用の全自動トレ
Velora MT5
Ahmad Aan Isnain Shofwan
The Intelligent Grid EA — A Team of Smart Modules Following the 5-star success of its MT4 predecessor, Velora has been completely rebuilt for MT5 with a fundamental shift in design. Most grid EAs are one engine doing many jobs. Velora is different. Inside Velora, there is a team. Four smart modules, each with one specialty, working together so the system stays adaptive at every stage of a trade — from the moment of entry, to scaling decisions, to the exit. Meet the team: VSE — Velora Smart Entr
Benefit EA Uses only hedging accounts.     Benefit EA is a non-indicative flexible grid adviser with special entry points that provide a statistical advantage, revealed through the mathematical modeling of market patterns. The EA does not use stop loss. All trades are closed by take profit or trailing stop. It is possible to plan the lot increments. The "Time Filter" function is set according to the internal time of the terminal as per the displayed time of the instrument's server, not the oper
Launch offer. The price rises step by step as the number of sales grows. Every purchase includes all future updates through MQL5 Market. Mercaria Unicorn is an adaptive grid trading system for Gold (XAUUSD) on MetaTrader 5, developed by practicing traders for all experience levels. Overview Mercaria Unicorn is an adaptive trading system for Gold (XAUUSD) and other CFD instruments. Unlike standard grid robots with fixed parameters, it automatically adjusts the number of levels, the lot size, and
Apex Alpha Quant  is a professional Expert Advisor built exclusively for XAUUSD trading, featuring a strict non-grid, non-martingale, single-position architecture. The system focuses on precision execution, prioritizing quality over frequency. By design, the EA does not trade excessively, waiting instead for high-probability setups that align with our specific market structure analysis. The EA is engineered around market structure dynamics and liquidity-driven price behavior, including volatilit
CaicaiLS Pro - Advanced Pair Trading & Statistical Arbitrage (Version 9.0) The CaicaiLS Pro is a quantitative Expert Advisor designed for Long & Short operations (Pair Trading) using Statistical Arbitrage . Developed for traders seeking precision, it tracks correlation and cointegration anomalies across multiple asset pairs simultaneously, seeking performance in both mean reversion and momentum breakouts. Its advanced architecture features the introduction of Shadow Execution technology. The mat
作者のその他のプロダクト
Pivot Grid EA – User Manual Overview Pivot Grid EA is a fully automated Expert Advisor that builds a two-sided grid of pending limit orders based on daily Pivot levels. The EA uses Buy Limit and Sell Limit orders exclusively and never enters the market with market orders. At the beginning of each trading day, it calculates the current daily Pivot levels and automatically creates the trading grid accordingly. The strategy uses a predefined Martingale lot progression, where each successive grid le
フィルタ:
レビューなし
レビューに返信