Cheetah Gold Scalper

Cheetah Gold Scalper - XAUUSD Expert Advisor for MetaTrader 5

Tick-based XAUUSD scalping robot for MetaTrader 5 hedging accounts. The default limits are two baskets per day and up to two positions per basket. Fewer entries, including no trades, are possible.

Cheetah Gold Scalper is an automated trading robot for XAUUSD on MetaTrader 5 (MT5). It trades one situation: a fast move in gold that the strategy attempts to trade for a reversal. When price travels a set distance within about a minute and is still accelerating, the EA opens against the move, adds at most one more position while the move extends, and manages both as a single basket until the move gives back part of what it gained.

The name reflects how it trades. A cheetah makes one or two attempts a day and rests in between. This gold EA is limited to two baskets per trading day by default, and that limit has a large effect on results.

The documented default uses fixed lots per position. In Fade mode, the basket can add a second position while the impulse continues against the first entry, increasing exposure. Stop losses are placed after fills; rejected modifications, gaps and slippage can prevent the intended protection. Review basket exposure and stop placement in Strategy Tester before use.


How it works

Entry. Price movement is measured tick by tick over a rolling 60 second window rather than on candle closes. The trigger is a fixed price distance, so the EA responds to real volatility events rather than to ordinary market noise. A move must still be accelerating to qualify, so moves that have already finished are skipped.

Scaling. A signal opens up to two positions. Both must fill within five seconds of each other and within a limited price band, and the second is only added while the move is still extending. The two positions are then handled as one basket.

Exit. The basket is closed by a proportional profit trail. The trail becomes active once the basket is sufficiently ahead, then closes both positions after a defined share of the peak profit has been given back. Smaller trades are given room, larger ones are allowed to continue.

Risk control. Each position has a stop loss placed from its actual fill price. There is a daily limit on the number of baskets, a spread filter, two configurable trading sessions, and optional daily loss and daily profit limits. Position size is a fixed lot by default, with optional percent-of-balance sizing.


On-chart dashboard

A small panel on the chart shows the current state: armed, in a trade, cooling down, outside session hours or finished for the day. It also shows current spread, baskets used today, open positions, floating profit, profit realised today, balance, equity and peak drawdown.


Strategy Tester results

The figures below come from the MetaTrader 5 Strategy Tester. They are backtest results and not results from a real account.

Settings: 100% real tick data, XAUUSD M1, 7 May 2026 to 25 July 2026, 250 USD starting deposit, 1:500 leverage, fixed 0.01 lot.

199 trades, 69.3% won, profit factor 2.56, net result 336.82 USD, maximum balance drawdown 9.24%, largest single loss 4.40 USD, longest losing run 6 trades totalling 21.99 USD. By month: May 140.75, June 65.07, July 129.48.


Walk-forward check

Backtest settings can be fitted to the data they were chosen on, so a separate check was run. All parameters were selected using May and June data only, then applied without changes to July, which was not used during that selection.

July result: 64 trades, 81.2% won, profit factor 3.91, net result 129.48 USD, maximum drawdown 22.25 USD.

These are also Strategy Tester results.


Requirements

Symbol: XAUUSD, which is what the settings are calibrated for.
Timeframe: any, because the logic reads M1 data and ticks internally.
Account type: hedging. The two-position basket does not behave correctly on a netting account.
Broker: ECN or Raw spread is preferred. The EA skips entries when the spread is too wide.
The reported backtest used a 250 USD deposit and 0.01 lot per position. This is a test condition, not a guarantee that this capital is sufficient for your broker or risk settings.
A VPS is recommended, since the EA reacts to ticks and latency affects fills.

The symbol-adaptation input rescales price-based settings. The supplied configuration is calibrated for XAUUSD; automatic scaling does not establish suitability for other instruments.


Setup

Attach the EA to an XAUUSD chart on a hedging account. Any timeframe is fine. Keep the default settings, which are the tested configuration. Compare your broker's server time with the two session windows and adjust them if the times do not match. Run the EA on a demo account first.


Input parameters

Money and sizing
InpFixedLot - Lot per position. Default 0.01. Set to 0 to size by risk instead.
InpRiskPercent - Percent of balance risked per basket. Used only when InpFixedLot is 0.
InpMagic - Magic number. Change it if another EA runs on the same account.
InpDeviationPoints - Maximum accepted slippage on market orders, in points.

Signal
InpMode - Fade trades against the impulse, which is the tested setting. Momentum trades with it.
InpVelWindowMs - Length of the measurement window in milliseconds. Default 60000.
InpVelMinAbs - Distance price must travel within that window to produce a signal.
InpVelMaxAbs - Moves larger than this are skipped.
InpVelTriggerATR - Optional volatility-based floor added to the trigger. 0 disables it.
InpRequireAccel - When enabled, the recent half of the window must lead the move.
InpAccelFrac - Share of the move the recent half must account for.

Filters
InpAtrPeriod - ATR period used by the volatility filters.
InpMinATR - Skip trading below this volatility. 0 disables.
InpMaxATR - Skip trading above this volatility. 0 disables.
InpUseTrendFilter - Optional higher timeframe trend agreement. Disabled by default.
InpTrendTF - Timeframe used by the trend filter.
InpEmaTrend - EMA period used by the trend filter.

Basket entry
InpMaxBurst - Maximum positions per signal. Default 2.
InpScaleBurstByImpulse - When enabled, stronger moves open more positions.
InpMaxBurstSpread - Maximum price spread allowed across the basket.
InpBurstWindowSec - Seconds within which all positions of a basket must fill.
InpBurstMinGapMs - Minimum delay between fills, in milliseconds.
InpBurstNeedsExtension - Add the second position only while the move extends.

Exit, profit trail
InpTrailStartPerPos - Profit per position at which the trail becomes active. Default 2.00.
InpTrailGiveBackPct - Share of peak profit given back before closing. Default 65.
InpTrailMaxGiveBackPerPos - Optional cap on that give-back. 0 disables.
InpTrailMinLockPerPos - Minimum profit the trail keeps per position.
InpHardTPPerPos - Optional fixed take profit per position. 0 disables.

Exit, break-even
InpBreakEvenEnable - Move the stop to break-even. Disabled by default.
InpBreakEvenAtPerPos - Profit per position that triggers the move.
InpBreakEvenLock - Profit kept by the break-even stop.

Stops and time
InpSL_ATR - Stop loss as a volatility multiple. 0 uses the fixed distance below.
InpFixedSLPrice - Fixed stop loss distance per position. Default 3.50.
InpMinSLPrice - Lower bound on the stop distance.
InpMaxSLPrice - Upper bound on the stop distance.
InpBasketSLPerPos - Emergency stop on total basket loss. 0 disables.
InpStallSec - Close the basket if profit has not reached a new high for this many seconds. 0 disables.
InpMaxHoldSec - Close the basket after this many seconds regardless. 0 disables.

Sessions, broker server time
InpUseSessions - Restrict trading to the two windows below.
InpSess1StartHour - First session start hour. Default 1.
InpSess1EndHour - First session end hour. Default 8.
InpSess2StartHour - Second session start hour. Default 15.
InpSess2EndHour - Second session end hour. Default 22.
InpTradeMonday - Enable or disable Monday.
InpTradeFriday - Enable or disable Friday.
InpFridayCutoffHour - Stop opening trades on Friday after this hour.

Risk limits
InpMaxSpreadPoints - Skip entries when the spread is wider than this.
InpMaxBasketsPerDay - Baskets allowed per trading day. Default 2. Raising it reduces results in testing.
InpMaxDailyLossUSD - Stop trading for the day after this loss. 0 disables.
InpMaxDailyProfitUSD - Stop trading for the day after this gain. 0 disables.
InpRearmSec - Seconds to wait after a basket closes before looking for a new signal.

Symbol adaptation
InpAutoScaleToSymbol - Rescale price-based settings to the attached symbol. Keep enabled.
InpCalibPrice - Reference price the defaults were calibrated at. Default 4000.

Dashboard
InpShowDashboard - Show the on-chart panel.
InpShowLogo - Show the logo watermark.
InpDashX - Panel horizontal offset in pixels.
InpDashY - Panel vertical offset in pixels.
InpCompanyName - Text shown on the first line of the panel header.
InpWebsite - Optional second header line. Empty by default.

Other
InpVerboseLog - Write detailed entries to the Experts log, useful when reporting an issue.
InpComment - Comment attached to each order.


Frequently asked questions

Which broker and account type do I need? Any broker offering XAUUSD on a hedging MetaTrader 5 account. A raw or ECN spread account is preferred because the EA trades intraday and skips entries when the spread widens.

Does it work on other symbols? The supplied settings are calibrated for XAUUSD only. Other instruments require separate testing; automatic scaling does not verify trading behavior or results.

How many trades will I see? Two baskets per trading day at most with the default settings, and often fewer. The EA waits for a specific condition and stays flat otherwise.

Can it add exposure to a losing entry? Yes. The documented Fade configuration can open a second position while the impulse extends against the first. Fixed lots do not remove the risk of this basket exposure.

Can I use it on a small account? The tested configuration uses a fixed 0.01 lot from a 250 USD deposit.


Please read

Past performance does not indicate future results. The testing described above covers eleven weeks on one instrument, with one month kept aside as an out-of-sample check. All figures are Strategy Tester results, not real account results, and none of them is a forecast. Use money you can afford to lose and test on a demo account first.
推荐产品
Course Robot EA
Vladimir Milovanov
See how an Expert Advisor makes a trading decision Course Robot EA is a free educational Expert Advisor for MetaTrader 5. It turns a simple trading idea into a complete algorithm you can run, test and study step by step. Think of it as a driving-school car with an extra set of pedals. The strategy stays easy to understand, while the safety checks show what a robot should do before it touches the market. How the strategy works The EA compares the two latest closed bars with a Simple Moving Averag
FREE
Gold AI Machine
Karan Vaghela
3 (4)
Gold AI Machine – Advanced Automated Trading System Gold AI Machine is a professional, fully automated trading robot developed exclusively for XAUUSD (Gold) . The system is optimized for the M5 timeframe and is designed to capture high-quality short-term market opportunities using advanced artificial intelligence–driven logic and disciplined trade management. Key Features Optimized exclusively for XAUUSD (Gold) Recommended timeframe: M5 Recommended minimum capital: 200 units For 3-digit Gold
FREE
MA Crossover ADX
MetaQuotes Ltd.
4 (13)
策略基于价格与均线指标交叉, 并以 ADX 指标确认。 交易信号: 买: 最后完成的柱线收盘价高于均线, 当前以及最后完成的柱线所对应的均线在增长。 卖: 最后完成的柱线收盘价低于均线, 当前以及最后完成的柱线所对应的均线在降低。 出于过滤假信号,使用移动方向指数 (DI+ 和 DI-) 来检查趋势能量 (ADX>ADXmin) 和趋势方向。 输入参数: Inp_Signal_ADX_MA_PeriodADX = 48; Inp_Signal_ADX_MA_MinimumADX = 13.0; Inp_Signal_ADX_MA_PeriodMA = 50; Inp_Signal_ADX_MA_StopLoss = 400; Inp_Signal_ADX_MA_TakeProfit = 900; Inp_Money_FixLot_Percent = 10.0; Inp_Money_FixLot_Lots = 0.1.
FREE
Gold Scalper for MT5 EA
Andrei Mikheev
4.43 (7)
Gold Scalper PRO Free Automated Gold Trading Expert Advisor for MetaTrader 5 Gold Scalper PRO is a free Expert Advisor developed for automated trading on XAUUSD (Gold) using the MetaTrader 5 platform. The EA combines automatic trade execution with built-in trade management and configurable risk settings to provide a structured approach to Gold trading. The EA is compatible with common broker symbol variations including XAUUSD, GOLD, XAUUSDm, XAUUSD.pro and other supported broker naming formats.
FREE
Use this expert advisor whose strategy is essentially based on the Relative Strength Index (RSI) indicator as well as a personal touch. Other free expert advisors are available in my personal space as well as signals, do not hesitate to visit and leave a comment, it will make me happy and will make me want to offer content. Expert advisors currently available: LVL Creator LVL Creator Pro LVL Bollinger Bands   Trading is not a magic solution, so before using this expert on a live account, carry
FREE
Gold Sparrow
Noriyuki Suzuki
5 (8)
Required reading: Live trading may involve significant drawdowns. Always trade with money you can afford to lose, and avoid setting the LotFactor too high (recommended 0.1–0.2). Please note that this is an experimental product, and it does not promise the stability or profitability you’d expect from a paid EA. By setting the parameter "UseRecentModel" to true, this EA can automatically download newly trained parameter values based on recent market data. Timeframe used 1H Minimum account b
FREE
NasCore Scalper
Mbuso Nkosi
3 (1)
Welcome to the future of algorithmic trading. The Nascore Scalper EA is a precision-engineered, AI-inspired scalping robot built exclusively for trading NAS100 (US Tech 100 Index) . It analyzes smart money footprints, breakout zones, and high-timeframe bias to capture high-probability scalping entries. Key Features: Optimized for NAS100 (US100) – Fast-moving Nasdaq-based index trading Smart Money Concepts – Integrates structure, breakout logic, and bias Minimal Margin Usage – Ideal for traders
FREE
The XU_H4_910440109_S_PS_CF_SQX is an algorithmic trading strategy for MetaTrader, tested on XAUUSD (Gold) using the H4 timeframe from April 1, 2004, to April 24, 2024.  There is no need to set up parameters, all settings are already optimized and fine-tuned. Recommended broker  RoboForex  because of EET timezone. You can find the strategy source code for StrategyQuant at the link:   https://quantmonitor.net/gold-bulls-power-trader/ Key details are: Parameters MagicNumber: 910440109 Main Ch
FREE
Peri Peri Gold MT5
Roberto Mubonane Muiambo
Recommendations Time Frame: 1H Minimum Deposit:$400 USD Currency Pair Gold / XAUUSD Setting: D efault Fully automatic adviser Peri Peri Gold do not use any dangerous trading methods: No Grid , No martingale. The strategy was Back-tested Stable from 2018 to 2023 using every tick based on real ticks in MT4 using Exness Real Ticks 100% tick quality. Live trading is going well on my Exness and ic markets  broker.
FREE
SmartGridCloserEA
Leszek Aleksander Mroczek
4.33 (3)
SmartGridCloserEA v.2 – Adaptive Grid Trading with Pair-Based Profit Closures Description: SmartGridCloserEA v.2 is a fully automated Expert Advisor for MetaTrader 5 that applies a dynamic BUY-only grid strategy across multiple asset classes such as Forex, Gold, and Indices . Unlike traditional grid EAs that rely on fixed take-profit levels, this robot introduces an intelligent system for pair-based position closures based on profit differences, helping to lock in gains even during ranging or c
FREE
Suvarna Scalper
Dhokiyas Money Map Investment Consultants - FZCO
Suvarna Scalper Suvarna Scalper 是一款专注于黄金交易的高级 Expert Advisor,专为 XAUUSD 设计。它适合希望使用自动化系统的交易者,具有简单设置,受控恢复逻辑以及清晰的图表监控。 这款 EA 并不是只为了在短期回测中看起来漂亮而设计。Suvarna Scalper 的主要优势是其注重长期生存能力的结构。Grid 交易本身具有风险,许多 Grid EA 可以在一段时间内盈利,但当市场出现强烈单边波动时可能失败。Suvarna Scalper 通过受控的篮子管理,更智能地应对黄金市场压力。 特别之处 Suvarna Scalper 的特别之处在于,它被设计用于在 Grid 交易环境中长期生存。在普通 Grid 交易中,账户经常会在强烈市场波动中被爆仓。该 EA 使用受控恢复,篮子盈利平仓,交易时间控制以及经纪商安全检查,以更实际的方式管理风险。 为什么这个 EA 强大 Suvarna Scalper 只专注于黄金。XAUUSD 是一个快速波动的交易品种,需要不同的交易逻辑。该 EA 使用内部 M15 条件,高周期趋势过滤以及恢复管理,以纪
FREE
Range Auto TP SL
Dilwyn Tng
4.57 (46)
Range Auto TP SL  is for you, 100% free for now, download it and give me a good review and you are free to use it for lifetime !!!! Range Auto TP SL is a EA to set Stop Loss and Take Profit level based on range using Average True Range (ATR). It works on both manually opened positions via PC MT5 Teriminals or MT5 Mobiles and EA/robots opened position. You can specify magic number for it to work on or it can work on all the positions. Many EA does not good Stop Loss and Take Profit function and
FREE
The EU_15_111517128_S_Op_CF_SQ3 is an algorithmic trading strategy for MetaTrader, tested on EURUSD using the M15 timeframe from April 1, 2004, to April 24, 2024.  There is no need to set up parameters, all settings are already optimized and fine-tuned. Recommended broker  RoboForex  because of EET timezone. You can find the strategy source code for StrategyQuant at the link:   https://quantmonitor.net/eurusd-bollinger-bands-breaker/ Key details are: Main Chart: Current symbol and timeframe
FREE
Morning Range Breakout (Free Version) Morning Range Breakout (Free Version) is a straightforward trading advisor that implements a breakout strategy based on the morning range. It identifies the high and low within a specified time interval (e.g., 08:00–10:00 UTC) and opens a trade on a breakout upward or downward. The free version includes core functionality without restrictions. All parameters and messages are in English, per MQL5 Market requirements. Key Features Detects morning range based
FREE
Triangle Hunter Pro
Mansoor Ali P Cheriaottayil
Triangle Hunter Pro  is a cutting-edge algorithmic trading system designed to capitalize on one of the most reliable chart patterns in technical analysis:  triangle consolidations . By combining triangle pattern detection, candlestick confirmation, and an optional adaptive grid system, this EA identifies high-probability breakout trades while prioritizing risk management. Perfect for volatile forex pair EURUSD on 30 -minute or higher timeframes, it balances aggressive profit potential with robus
FREE
MACD Trader FREE MT5
Konstantin Nikitin
4 (1)
This is an automated Expert Advisor that trades using the MACD and Envelopes indicators. The paid version is available here . The free version has the following limitations. No panel for opening orders. The trading is limited to the EURUSD currency pair and similar. Orders can only be opened with the minimum lot, no more than 5 orders can be opened in the same direction, to a total of 10 orders. Pause after closing of all orders is 6000 minutes. During the analysis, no more than 50 orders are ad
FREE
SimpleTrade by Gioeste
Giovanni Scelzi
4 (3)
Discover the power of automated trading with **SimpleTradeGioeste**, an Expert Advisor (EA) designed to optimize your trading operations in the Forex market. This innovative EA combines advanced trading strategies with proven technical indicators, offering an unparalleled trading experience. video backtest :  https://youtu.be/OPqqIbu8d3k?si=xkMX6vwOdfmfsE-A ****Strengths**** - **Multi-Indicator Strategy**: SimpleTradeGioeste employs an integrated approach that combines four main technical ind
FREE
Gives you a trading environment where you can do forward testing without the use of a live trading account. You will be able to trade the same Market without having to wait for the next day, but by just fast forwarding  on the strategy tester and going straight to that session. You can trade it over and over again without having to just look at the charts and have a bias analysis when  back testing on a chart that is not moving
FREE
RAlabs Arbitrage Parser
Andrey Kolesnik
5 (1)
RAlabs Arbitrage Parser — High-Precision Market Data Collector Reliable and efficient Expert Advisor for collecting real-time market data from MetaTrader 4 and MetaTrader 5 terminals. Designed for traders, quantitative analysts, and developers who need clean, structured price data for analysis, arbitrage, or algorithmic trading. Overview RAlabs Arbitrage Parser is a lightweight and fully autonomous tool that records streaming Bid/Ask prices into CSV files with millisecond precision. The EA ru
FREE
神经网络顾问两条均线与学习模式。教育顾问这些例子,你在现实生活中赚取利润。顾问可以工作在任何文书,在任何时间框架。 交易算法中固有的EA 。 两均线分析产生神经网络的核心,它提供了买进或卖出的指令。 在第一层的输入值提供两条均线,快速( FMA )和慢( SMA ) ,第二层,负责的购买, ( Ñ买) 2神经元的计算和出售Ñ卖,决定购买的第三层或销售。 神经网络的框图,图中所示的。 教育顾问。 在训练模式中顾问“记住”用户在均线图表货币仪器值标记。而在未来,在正常操作中,认识到“存储”值均线。 培训辅导员必须请参阅图表至少一长一短贸易。 «卖» ,分别用箭头指示悠久贸易,短期贸易使用箭头«卖» 。参展图表上,可以更多的箭头,箭头越多,将不再是一个学习的过程。查找图形上的任何其他对象的数据以外的射手是不可取的。教学终端的公共文件夹后,将创建一个文件夹“ NN 2MA ”,这将是文件的“ HHHHHH_NN_2MA.bin ”设置训练好的神经网络。 XXXXXX - 在文件名是该工具的名称。顾问,在正常操作中,将数据从文件加载。如果文件没有找到,它会使用默认设置。默认情况下,辅导员培训
FREE
Trade Anomalo BTC Multi Grid
Alessandro Virgilio
5 (3)
Trade Anomalo BTC Multi Grid EA   Trade Anomalo  BTC Multi Grid  is an advanced, fully automated Multi-Grid Expert Advisor meticulously designed to navigate the volatility of BTC and other major pairs. Introduces highly requested features, including Multi-Window Time Management and an interactive, upgraded on-chart dashboard. Unlike traditional grids that get trapped in one direction,   Parallel Pro   utilizes a dual-engine architecture (Grid A and an optional inverted mirror Grid B) to simultan
FREE
TradeGreat Bot
Mykyta Nikolaiev
TradeGreat Mean Reversion EA TradeGreat is an automated trading system built around statistical price behavior analysis relative to a Moving Average (MA) . The system evaluates price deviation from the average value using proprietary mathematical models rather than traditional indicator-based signals. The strategy relies on quantitative analysis of market behavior, where the Moving Average serves as a reference point, while entry and exit decisions are determined by internal mathematical calcul
FREE
PZ Goldfinch Scalper EA MT5
PZ TRADING SLU
3.33 (57)
这是我著名的剥头皮机Goldfinch EA的最新版本,它是十年前首次发布。它以短期内突然出现的波动性扩张为市场提供了头条:它假设并试图在突然的价格加速后利用价格变动的惯性。这个新版本已经过简化,使交易者可以轻松使用测试仪的优化功能来找到最佳交易参数。 [ 安装指南 | 更新指南 | 故障排除 | 常见问题 | 所有产品 ] 简单的输入参数可简化优化 可定制的贸易管理设置 交易时段选择 工作日选择 金钱管理 谨防... ick牛黄牛是危险的,因为许多因素都会破坏收益。可变的点差和滑点降低了交易的数学期望,经纪人的低报价密度可能导致幻像交易,止损位破坏了您获取利润的能力,并且网络滞后意味着重新报价。建议注意。 回溯测试 EA交易仅使用报价数据。请以“每笔交易”模式回测。 它根本不使用HLOC(高-低-开-关)数据 交易时间无关紧要 为了获得更好的性能,请为您希望在每个刻度线模式下交易的每个交易品种运行云优化。稍后分享! 输入参数 触发点:触发点差所需的价格变动。 (预设= 10) 最小时间窗口:价格波动发生的最短时间。 (默认= 3) 最长时间窗口:价格波动发生的最长时间。
FREE
Gold Rush XAU
Cydell Marc-anthony Kendall Thomas
Gold Rush EA Lite — Advanced XAUUSD Trading System for MT5 This is the Lite version of Gold Rush EA. It has limited features compared to the full version: – Runs only on XAUUSD M15 – Maximum lot size capped at 0.10 Key Features Specialized for Gold (XAUUSD) — Optimized to exploit gold’s volatility and liquidity. Multi-Timeframe Confirmation — Signal timeframe (default H1) with execution on lower timeframe (default M15). ARM → TRIGGER → EXECUTE Workflow ARM : Detect overbought/oversold extreme
FREE
SpikeBoom
Kabelo Frans Mampa
A classic buy low & sell high strategy. This Bot is specifically Designed to take advantage of the price movements of US30/Dow Jones on the 1 Hour Chart, as these Indices move based on supply and demand. The interaction between supply and demand in the US30 determines the price of the index. When demand for US30 is high, the price of the US30 will increase. Conversely, when the supply of shares is high and demand is low, the price of t US30  will decrease. Supply and demand analysis is used to i
FREE
StrategyQuant Vortee Free MT5
StrategyQuant s.r.o.
4.5 (2)
The Expert Advisor tool has been developed for Nasdaq, based on Vortex and pending orders. The stop loss is based on fixed pips. It has been backtested on more than 10-year long M1 data with high quality of modeling. The enclosed screenshots demonstrate the complexity and coverage of the test by Monte Carlo analysis with 200 simulations. T he Expert Advisor passed via Cluster Analysis, Optimization profile, System parameter Permutation. There is no need to set up parameters - all settings are al
FREE
This Expert advisor trades any Asset class, Try it on any market, When you download PM so you can be added to my channel for all support related issues. There are three trading strategies available  * The Wyckoff trading strategy, Channel trading and trend trading.  Input Parameters Lots   - the volume of position to open; Stop Loss BUY (in points)   - the stop loss of BUY positions; Stop Loss SELL (in points)   - the stop loss of SELL positions; Take Profit BUY (in points)   - the take profit o
FREE
MA Udemy
Jefferson Judge Metha
This Expert Advisor (EA) is a comprehensive project linked to an Udemy course designed to guide you through the step-by-step process of uploading your product to the MQL5 Marketplace. The course not only teaches you the technical aspects of EA development but also includes practical insights into creating a market-ready product, adhering to MQL5's strict publishing standards, and optimizing your chances of success in the marketplace.
FREE
BitGameBot
Galin Vasilev
BitGame Bot is a MetaTrader 5 Expert Advisor based on sigma-style trading logic. The robot is designed for XAUUSD / Gold and uses structured price movement, volatility and market deviation to search for trading opportunities according to predefined entry and risk-management rules. The system includes two trading modes: - Current mode - Alternative mode Both modes are designed for Gold trading. Users can test both presets in the Strategy Tester and choose the one that best matches their broker
FREE
该产品的买家也购买
Quantum Titan MT5
Bogdan Ion Puscasu
4.78 (36)
Quantum Titan 将机构级交易引入 Quantum 生态系统,为精准度、纪律性和经证实的实时市场表现树立了新的标准。 Titan 是为那些对黄金智能交易系统有更高期望的交易者而开发的,代表了量子交易技术的下一个发展阶段。 全球终身授权数量严格限制在 1000 个。 当1000份全部售罄后,《量子泰坦》将不再发售。 特价上市优惠价。最终价格 1999 美元。 只需5万美元初始投资即可获得实时信号:   点击此处 Quantum Titan MQL5 公共频道:   点击此处 ***购买 Quantum Titan MT5,即有机会免费获得 Quantum Emperor、Quantum King、Quantum Bitcoin、Quantum Baron、Quantum Valkyrie、Quantum OmniGold、Quantum Athena X 或 Quantum Starman!*** 详情请私信咨询! 隆重推出量子泰坦 Quantum Titan 是我从未打算公开发布的黄金级智能交易系统。 几个月来,我一直用自己的资金私下交易 Titan,并且
Quantum Commander
Bogdan Ion Puscasu
4.67 (12)
量子生态系统正进入一个全新的战场——一位全新的指挥官即将掌舵。量子指挥官专为美国30指数开发,是一款全自动智能交易系统,专为全球最具活力的市场之一而打造。 在充斥着黄金EA的世界中,Quantum Commander脱颖而出。 在推出几款以黄金为重点的产品之后,我们正凭借 US30 进入新的领域——这是一种新的工具、一种不同的策略,也是一个为 Quantum 生态系统带来真正多元化的强大机会。 特价上市优惠价。最终价格 1999 美元。 实时信号:   点击此处 量子指挥官MQL5公共频道: 点击此处 ***购买 Quantum Commander MT5,即有机会免费获得 Quantum Emperor、Quantum King、Quantum Bitcoin、Quantum Baron、Quantum OmniGold、Quantum Athena X 或 Quantum Starman!*** 详情请私信咨询! 量子指挥官登场 量子指挥官的创建只有一个目的。 分析 US30,识别既定市场趋势中的回调,自动执行,并以速度和纪律管理每个仓位。 US30 指数以强劲
Quantum Queen X MT5
Bogdan Ion Puscasu
5 (53)
传奇仍在继续。女王不断进化。 欢迎来到 Quantum Queen X——传奇黄金交易系统的下一代产品,它建立在 Quantum Queen 已证明的成功之上。 Quantum Queen X 基于与 Quantum Queen 相同的成熟核心引擎构建,引入了强大的全新自定义模式,允许交易者精确选择要启用或禁用的策略。 每项策略都经过单独审查、改进和优化,以在不同的市场环境下提供更佳的性能和适应性。默认预设也得到了增强,现在包含 9 项精心挑选的策略,而非之前的 7 项,从而提供更广泛的市场覆盖和更多交易机会,同时保留了使 Quantum Queen X 成为 MQL5 平台上最成功的黄金智能交易系统的严谨交易理念。 IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions 折扣价   价格 。     每购买 10 件,价格将上涨 50 美元。最终价格为 1999 美元。 实时信号 IC Ma
The Gold Reaper MT5
Profalgo Limited
4.48 (105)
道具公司已准备就绪!( 下载道具文件 ) 警告: 目前仅剩少量存货! 最终价格:990美元 免费获得 1 个 EA(适用于 3 个交易账户)-> 购买后请联系我 超值组合优惠   ->   点击这里 加入公开群组: 点击此处   实时信号 客户端信号 YouTube 评论 最新手册 欢迎来到黄金收割者! 这款EA是在非常成功的Goldtrade Pro的基础上开发的,设计用于同时在多个时间框架上运行,并且可以选择将交易频率设置为从非常保守到极度波动。 该EA使用多种确认算法来寻找最佳入场价格,并在内部运行多种策略来分散交易风险。 所有交易都有止损和止盈,但同时也使用追踪止损和追踪止盈来最大限度地降低风险,并最大限度地提高每笔交易的潜力。 该系统基于非常流行且行之有效的策略:交易突破重要支撑位和阻力位的交易机会。   黄金非常适合这种策略,因为它是一种波动性很高的货币对。 系统会根据您的账户规模和最大允许回撤设置自动调整交易频率和手数! 回测结果显示增长曲线非常稳定,回撤幅度控制得非常好,恢复速度也很快。  这款EA已经针对黄金进行了最长时间的压力测试,使用了多个经纪商的多个价格
Aikon MT5
William Brandon Autry
5 (5)
AIKON — 告诉您的交易系统您想要什么。 您知道自己希望交易系统做什么。找到正确的设置不应该成为最困难的部分。 告诉 Aikon 您的目标。让它构建您的配置、研究事件、监控市场、管理仓位或协调您的账户。 它可以检查实时系统、解释建议,并准备修改供您确认——即使您正在使用手机。 提出要求。查看。确认。Aikon 执行。 您的策略。您的资金。您的规则。您的控制权。 QUICK START — 第一步很简单。 从一个 AI 供应商、一个模型和一个 API key 开始。统一设置流程可以使用这一连接初始化 Aikon 的主要智能角色。 然后选择您的开始方式: 使用现成配置 — Forex Single Entry + Stop Loss、Gold Single Entry + Stop Loss 或 Forex Recovery。 通过 Ask Aikon 构建配置 — 描述您的目标并讨论建议设置。 自行配置 — 创建 Trading Constitution 并直接选择控制参数。 您可以自己选择交易品种、向 Aikon 询问建议,或选择 AIKON CHOOSES 进行持续的 AI 管理
Ultimate Breakout System
Profalgo Limited
5 (51)
重要的 : 此套装仅以当前价格限量发售。    价格很快就会涨到1999美元!   已包含 300 多种策略 ,更多策略即将推出! 额外福利 :  从我的其他 EA 中免费 选择 5 款!   所有设置文件 + 完整设置和优化指南 视频指南 实时信号 第三方评论 新增 - 44 种策略实时信号 欢迎来到终极突破系统! 我很高兴地向大家介绍终极突破系统,这是一款经过八年精心开发的复杂且专有的智能交易系统 (EA)。 该系统已成为MQL5市场上多款表现优异的EA的基础,其中包括备受赞誉的Gold Reaper EA。 它曾连续七个多月位居榜首,此外还有 Goldtrade Pro、Goldbot One、Indicement 和 Daytrade Pro。 终极突破系统并非仅仅是另一款EA(电子交易系统)。 它是一款专业级工具,旨在帮助交易者在任何市场和时间框架内创建无限数量的突破策略。 无论您是专注于波段交易、超短线交易还是构建多元化投资组合,该系统都能提供无与伦比的灵活性和定制化功能。 可能性无穷无尽! 对于自营交易公司的交易员来说:   有了这个系统,您终于可以创建自己独
Scalping Robot Pro MT5
MQL TOOLS SL
4.34 (162)
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
Aura Gold Pro Edition
Stanislav Tomilov
5 (3)
旨在主导黄金市场。 官方信息 卖家简介 官方频道 用户指南 限时价格 — $799 Aura Gold Pro Edition 在 9 月底之前仅售 $799。 从 10 月 1 日起,价格将上涨至 $999 — 请在涨价前购买您的版本。 实时交易信号  Roboforex   https://www.mql5.com/en/signals/2366593 FPMarkets   https://www.mql5.com/en/signals/2358523 ICTrading   https://www.mql5.com/en/signals/2380859 描述 Aura Gold PRO Edition 是一款精心设计且可靠的黄金市场交易算法。我们打造的系统专注于长期稳定性和资金保护,避免不必要的风险。该EA的实时信号展现出卓越的业绩和稳步增长,证实了其底层逻辑的有效性。该系统的核心优势之一是其高恢复系数,使其能够快速、稳健地克服正常的资金回撤,并持续创造利润。 AURA GOLD PRO EDITION 的核心原则是绝对的风险控制。无论任何情况,每一笔交易都始终受到止损保护
XG Gold Robot MT5
MQL TOOLS SL
4.33 (112)
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
Quantum Emperor MT5
Bogdan Ion Puscasu
4.84 (506)
介绍     QuantumEmperor EA 是一款突破性的 MQL5 专家顾问,它正在改变您交易著名的 GBPUSD 货币对的方式!由拥有超过13年交易经验的经验丰富的交易者团队开发。 IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. ***购买 Quantum Emperor EA,即可免费获得  Quantum StarMan  !*** 私信询问更多详情 已验证信号:   点击此处 MT4版本:   点击这里 量子 EA 通道:       点击这里 每购买 10 件,价格将增加 50 美元。最终价格为 1999 美元 量子皇帝EA     采用独特的策略,将单笔交易连续拆分成五笔较小的交易。这意味着每次 EA 执行一笔交易时,它都会自动将其拆分成五个较小的仓位。 量子皇帝EA     量子帝王EA凭借其卓越的亏损交易处理方法,在众多专家顾问中脱颖而出。
Scalping Index Pro MT5
MQL TOOLS SL
5 (3)
Scalping Index Pro is a professional trading system designed specifically for fast and precise scalping on US30 and DE40 using the M1 timeframe . The system has been developed specifically for the unique behavior of major stock indices, focusing on short term price movements, rapid momentum changes, market volatility, and selective grid based trade management techniques to identify high probability trading opportunities . Scalping Index Pro is optimized for traders who prefer dynamic trading wit
AXIO Gold EA
Shengzu Zhong
4.6 (10)
AXIO GOLD EA MT5 MQL5 實盤信號參考 https://www.mql5.com/en/signals/2378982?source=Site+Signals+My AXIO GOLD EA MT5 是一款專門為 MetaTrader 5 上的 XAUUSD 黃金開發的自動交易系統。 該 EA 使用與 MQL5 上已驗證實盤信號相同的邏輯和執行規則。當使用推薦的優化設定,並運行在信譽良好的 ECN/RAW 原始點差經紀商,例如 TMGM 時,該 EA 的實盤交易行為設計目標是盡可能貼近該實盤信號的交易結構和執行特徵。 請注意,經紀商條件、點差、執行品質、交易品種規格、滑點、延遲、VPS 環境以及帳戶設定方面的差異,都可能導致個人帳戶結果有所不同。 AXIO GOLD 不使用危險的馬丁格爾加倉法,不使用過度網格擴展,也不會在虧損交易中不斷加倉攤平。 目前產品價格以 MQL5 Market 頁面顯示為準。未來價格可能會根據產品開發、更新、維護以及支援工作量進行調整。 購買後,請透過 MQL5 私訊聯絡我,以取得使用者手冊、推薦設定和安裝指導。 開發者介紹 我是 MetaT
Chiroptera
Rob Josephus Maria Janssen
4.5 (50)
Prop Firm Ready! Chiroptera is a non-martingale, non-grid, multi-currency Expert Advisor that operates in the quiet hours of the night. It uses single-placed trades (of all 28 pairs!) with tactically placed Take Profits and Stop Losses, that are continuously adjusted to maximize gains and minimize losses. It keeps track of past and upcoming news reports to ensure impacts are minimized and carefully measures real-time volatility to prevent impacts due to unpredictable geo-political disturbances c
Byrdi
William Brandon Autry
5 (19)
BYRDI — 协调整体投资组合的分布式交易网络。 大多数智能交易系统只能看到一个终端、一个账户以及一组持仓。 BYRDI 看到的是整个更广泛的网络。 BYRDI 将多个独立的 MetaTrader 5 终端连接成一个协调运行的交易网络。每个节点都可以保留自己的账户、经纪商、市场、策略、AI 模型、资金分配和风险设置,同时共享实现整体投资组合感知所需的信息。 网络可以协调执行、限制重复风险暴露、在符合条件的节点之间分配交易机会,并在其他受支持节点可用时提供故障转移。 单个节点可以作为完整交易系统运行。多个节点则可以作为一个统一的分布式网络协同运行。 BYRDI 能做什么 BYRDI 用于协调多个终端、经纪商、账户、市场和策略之间的交易活动。 它可以帮助整个网络了解: 哪些持仓和挂单已经处于活动状态。 哪些交易品种和货币已经存在风险暴露。 哪些节点在线、可用并符合执行条件。 每个节点可以交易哪些市场。 每个账户还剩多少可用容量。 新的交易机会应该分配到哪个节点。 每个节点仍然对自己的账户和所选交易配置负责。 节点保持独立,网络获得协调能力。 为什么交易网络很重要 运行多个账户或多个智能
Zxcvbnm
Inrexea Limited
ZXCVBNM MQL5 CLIENT Standalone Edition This is the self-contained MQL5 Market edition: the entry model is compiled into the file and runs entirely on your terminal. No key, no server, nothing to configure beyond markets and lot size. Buyers are invited to our private Discord server for setup help and direct feedback support. Contact us to get the Database Edition (only available with a verified Discord account) Eligible buyers may choose the Database Edition of this product , or of one of our
Short description Counter-trend EA for AUDCAD/AUDNZD/NZDCAD. Low-risk mean reversion with controlled martingale and funding-account presets. Live monitoring Signal: https://www.mql5.com/en/signals/2257448 What it is A counter-trend mean-reversion Expert Advisor designed to produce steady monthly returns under conservative risk. Built for traders who prioritize capital protection (including funding account rules) and prefer transparent, testable logic. How it trades Entry logic: Sells/buys sho
Golden Blitz MT5
Lo Thi Mai Loan
4.43 (14)
EA Golden Blitz– 一个安全且高效的黄金交易解决方案   启动促销! 当前价格仅剩 1 份!  最终价格:$1999.99 你好!我是EA Golden Blitz,是Diamond Forex Group家族中的第二款EA,专为黄金交易(XAU/USD)设计。凭借卓越的功能和安全优先的理念,我承诺为交易者提供可持续且高效的黄金交易体验。   EA Golden Blitz 有何独特之处?   - 动态止损(SL):EA 根据最近K线的价格范围设置止损(SL)。这一功能确保SL能够灵活适应市场变化,更有效地保护您的账户。   - 多样化交易策略:EA配备了3种交易策略,每种策略最多可同时开启3个订单,总计最多可进行9笔交易。   - 灵活的移动止盈:提供利用移动止盈锁定利润的功能。您可以根据个人偏好完全自定义该功能。   - 安全至上:每笔交易均设置了预设止损(SL),以保障您的账户免受意外风险的侵害。   EA Golden Blitz 的工作原理   1. 无风险策略:      - 不使用马丁策略或网格交易。      - 不执行无止损交易。  
Harmonizer EA MT5
Amir Hossein Moharreri
4.55 (11)
Harmonizer EA 是一款强大的网格交易工具,使用先进算法计算每笔交易的入场位置。它并非针对历史数据过度优化,而是利用市场波动率进行自我优化。通过使用市场波动率,该算法能够快速高效地适应市场变化。这意味着它既能够抓住市场机会,又能够在预设参数范围内有效控制风险。 不过,使用此 EA 时请务必谨慎,并且只投入您能够承受风险的资金。我们建议您先进行历史回测,并尝试不同设置,以找到最适合您的参数。 实时表现 推荐交易品种:AUDCAD、NZDCAD(AUDNZD 可选) 推荐时间周期:M15(15分钟图表) MT4 版本 功能特点 比类似 EA 更便宜且更优秀 支持多个交易品种 单图表设置 实盘与回测新闻过滤器 实时性能监控 未针对历史数据过度优化 不局限于特定品种 开发者支持 使用要求 对冲账户 对点差不敏感,但建议使用 ECN 账户 在 VPS 上持续运行(确保交易不中断) 杠杆 1:200 或更高 推荐设置 将 EA 挂载到 AUDCAD 的一个 15 分钟(M15)图表上,建议至少使用 500 美元启动。不过,为了降低风险,建议从 1500 美元开始。不需要 .set 文件。
DAX Robot MT5
MQL TOOLS SL
5 (3)
DAX Robot is an advanced automated trading system developed specifically for the DAX 40 Index on the H1 timeframe. Designed to handle the fast paced nature of one of Europe's most actively traded indices , the robot continuously analyzes market conditions and automatically executes trades based on its built in trading logic. The system focuses on identifying high probability trading opportunities by combining trend analysis, market momentum, and volatility based conditions. DAX Robot is designe
Nexorion Initium Novum EA
Valentina Zhuchkova
3.16 (31)
NEXORION: Initium Novum — 确定性逻辑与算法综合体系 NEXORION 是一款基于严密流动性处理数学算法的机构级分析系统。该项目的核心理念是“计算透明化”:交易型 EA 将混沌的价格流转化为结构化的几何区域,并将决策过程直接在交易图表上进行可视化呈现。 实时信号监控 https://www.mql5.com/en/signals/2378408 系统技术规格 交易资产 :XAUUSD (黄金) 运行周期 :H1 (1小时图) 核心方法论 :机构流动性分析与确定性逻辑 (Institutional Liquidity Analysis & Deterministic Logic) 决策依据 :流动性池与平衡水平的数学计算 数学架构与可视化 本系统的关键创新在于 动态计算映射 (Dynamic Computation Mapping) 。算法不仅是分析价格,更是通过以下模块构建市场的数学模型: 流动性追踪 (Liquidity Tracking) :基于市场阶段的深度分析,精确识别买方流动性 (BSL) 与卖方流动性 (SSL) 区域。 平衡态分析 (Equilib
Big Forex Players MT5
MQL TOOLS SL
4.76 (141)
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
KINGDOM KNIGHT GOLD — XAUUSD H1 Portfolio EA The market is full of kings. Kings promise.   Knights deliver. Kingdom Knight is a XAUUSD portfolio EA built on one oath:   every single trade leaves the castle with a shield   — a hard stop loss, attached at the broker, on 100% of orders. No grid. No martingale. No averaging. No hidden floating losses. WHY THIS EA EXISTS Kingdom Knight was not built in a month. It survived five years of them. Five years of research. Entire systems that looked perfect
Qwertyuiop
Inrexea Limited
QWERTYUIOP MQL5 CLIENT One chart. Five markets. Defined risk on every trade. Standalone Edition This is the self-contained MQL5 Market edition: the entry model is compiled into the file and runs entirely on your terminal. No key, no server, nothing to configure beyond markets and lot size. Buyers are invited to our private Discord server for setup help and direct feedback support. Contact us to get the Database Edition (only available with a verified Discord account) Eligible buyers may choose
XT Bitcoin Robot MT5
MQL TOOLS SL
4.6 (5)
XT Bitcoin Robot is an advanced  automated trading system  designed specifically for  BTCUSD traders  who want to take advantage of Bitcoin's market volatility without the need for constant market monitoring. The robot continuously analyzes market conditions and automatically executes trades based on its built in trading logic, helping traders stay active in the market 24 hours a day without manual intervention. The system is designed to identify trading opportunities and manage positions accor
My Last Strategy
Inrexea Limited
5 (6)
MY LAST STRATEGY One engine. Every candle. Every session. Phase 1 – Limited Release Only 10   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, DISTILLED
Bitcoin Scalping MT5
Lo Thi Mai Loan
5 (5)
[ IMPORTANT ] REAL CLIENT FEEDBACK :  https://www.mql5.com/en/market/product/127498/comments#comment_58814415 [ IMPORTANT ]  UPDATED (1 YEAR PERFORMANCE):  https://www.mql5.com/en/market/product/127498/comments#comment_59233853 [ IMPORTANT ]  UPDATED (1 YEAR 6 MONTHS PERFORMANCE):  https://www.mql5.com/en/market/product/127498/comments#comment_60000067 [ IMPORTANT ]  UPDATED  (2026/09):  https://www.mql5.com/en/market/product/127498/comments/page2#comment_60389797 介绍 Bitcoin Scalping MT4/MT5 –
Pulse Pro MT5
Mian Rameez Ali
Two lines, always circling — 21 and 49. Most of the time they say nothing. Then they cross, and the system stops waiting. It closes what it was holding, opens what the cross demands, and sets its stop and target without asking twice. Risk is sized off the account itself, not fixed guesses — one bad calculation and it simply declines to trade at all. No indecision, no averaging in. Every new bar gets exactly one verdict. Built for any symbol, any timeframe. Fast against slow — the rest is ari
XIRO Robot MT5
MQL TOOLS SL
5 (35)
XIRO Robot is a professional trading system created to operate on two of the most popular and liquid instruments on the market:  GBPUSD, XAUUSD and BTCUSD . We combined two proven and well tested systems, enhanced them with multiple new improvements, optimizations and additional protective mechanisms, and integrated everything into one advanced and unified solution. As a result of this development process, XIRO Robot was created. Robot was designed for traders who are looking for a reliable and
Aero MT5
Volodymyr Babak
透明的定价模式。  价格随每个销售阶段上调。下一阶段: $1000 . Live Signal +14 Months • Low Risk Live Signal +8 Months • Medium Risk Live Signal New • $100 000 Account Darwinex Aero 的工作原理 Aero 是一款面向 XAUUSD(黄金) 的全自动 EA,基于 突破策略 构建。 黄金的突破提供了最佳的入场机会之一:关键位几乎每天都会被突破——问题在于,远非每一次突破都能延续。 这正是 Aero 要解决的问题: 它是一套先进的系统,用于识别在统计上值得交易的突破——胜率更高,期望值站在交易一方。 这一筛选由 kNN(k 近邻算法) 完成——一种机器学习方法,使用超过 10 年的黄金价格数据训练而成。 当某个价位被突破时,系统会将当前市场状态与数千个历史案例进行比对,以验证每一笔交易的准确性。 同一时间只持有一笔仓位——不用马丁格尔,不用网格,不做摊平。 适配自营交易公司 正因如此,Aero 可以在自营账户上使用而无需担心违规——它的交易方式如下: 不使用违
Alpha Trades
Andriy Sydoruk
Alpha Trades Author: Andrii Sydoruk Version: 1.0 Release date: 31.10.2025 Description Alpha Trades is a trading expert designed to operate under various market conditions. The system uses an adaptive analytical approach that allows it to adjust to the current market structure. The algorithm is built as a multi-level strategy combining regression analysis, dynamic volatility filters, order series management, and money management. Key Features Adaptive analytics — determines the trading direction
作者的更多信息
Apex Drawdown Zero
Tshivhidzo Moss Mbedzi
Current setup: Version 9.20 Use XAUUSD, EURUSD or EURJPY on H1. Earlier comments describing M15 settings, monthly growth targets or a March 2026 expiry relate to older releases and are not the setup guide for Version 9.20. Use the current description and settings for the version installed in your terminal. For version or activation questions, contact me through MQL5 private messages. Drawdown Zero is the product name, not a guarantee of zero drawdown or loss-free trading. Apex Drawdown Zero V9 —
SMC Fibonacci OTE
Tshivhidzo Moss Mbedzi
SMC Fibonacci OTE for MetaTrader 5 Automated chart analysis for traders who use market structure and Fibonacci retracements. This indicator draws analytical levels and alerts; it does not place or manage orders. SMC Fibonacci OTE is a technical indicator for MetaTrader 5 designed for traders following Smart Money Concepts (SMC) . It automates the detection of market structure shifts and maps the Optimal Trade Entry (OTE) zone, providing you with clear entry, stop loss, and multiple take-profit l
Super Signals Channel
Tshivhidzo Moss Mbedzi
Super Signals Channel Indicator Its channel is a non-repaint indicator that reacts more with recent price movements. For this reason, the Super Signals Channel Indicator is a better match for short-term or day trading strategy. The Super Signals Channel only plots swing trading opportunities. So most of its trade signals appear during consolidation or sidelined periods of the market. Super Signals Channel Indicator for MT4 Explanation The green band below the price shows the dynamic support le
FTMO Smart Trader EA
Tshivhidzo Moss Mbedzi
4 (3)
介绍 FTMO Smart Trader EA:您应对 Prop Firm 挑战的终极解决方案 您想通过像 FTMO、FundedNext 或 The Funded Trader Program 这样的 Prop Firm 挑战吗?FTMO Smart Trader EA 是专门为实现这一目标而设计的。凭借令人印象深刻的  胜率和仅  的回撤,该专家顾问精心制定了满足这些 Prop Firm 严格要求的策略。 限时优惠:在价格上涨至 $1,000 之前,以 $600 的价格购买仅剩的 4 份副本! FTMO Smart Trader EA 的关键功能: 高级算法:专家顾问采用先进的技术和复杂的算法,确保做出快速准确的交易决策。 全面的风险管理:通过先进的风险管理协议,您可以确保您的资金始终安全。 多时间框架和多货币对分析:FTMO Smart Trader EA 分析多个时间框架和货币对,以做出最佳可能的交易决策。 单图表设置:只需在 EURUSD 上运行 EA,它将为您交易一个符号。 与 Prop Firm 账户兼容:FTMO、MFF、ROYAL、The Funded Trader
Atm Gbpusd Robot v1
Tshivhidzo Moss Mbedzi
ATM GBPUSD Robot v1 for MetaTrader 4 Atm Gbpusd Robot v1 automates trading on GBP/USD using the M15 chart timeframe. It is intended for traders who want to evaluate an automated GBP/USD setup in MetaTrader 4 before using it on their own account. Platform and setup Platform: MetaTrader 4. Symbol: GBP/USD. Chart timeframe: M15. Use broker conditions with a low GBP/USD spread and sufficient free margin for your selected trading volume. Before purchasing Download the Market demo and run it in Strate
Super Signals Channel Indicator A professional non-repainting channel indicator designed for swing trading and short-term trading strategies. The indicator identifies dynamic support and resistance levels and generates clear buy/sell signals with visual arrows on the chart. KEY FEATURES • Non-Repainting Signals - All signals remain fixed once generated • Dynamic Channel Bands - Automatically adjusts to market volatility • Clear Visual Arrows - Green arrows for buy signals, red arrows for sell si
Auzar
Tshivhidzo Moss Mbedzi
5 (1)
Auzar MT5 – AI Prop Firms Forex Robot for Gold (XAUUSD) Scalping The Auzar MT5 Expert Advisor is a next-generation AI-powered trading system developed for MetaTrader 5 (MT5) . It provides a scalping solution for Gold (XAUUSD) , specifically engineered to meet the requirements of prop firm trading environments such as FTMO , Funded Next , and My Forex Funds (MFF) . Built on neural network technology , Auzar adapts dynamically to evolving market conditions, delivering precision, consistency, and
F T M O Range Breakout Pro MT5
Tshivhidzo Moss Mbedzi
1 (1)
FTMO Range Breakout Pro is a professionally developed Expert Advisor designed for breakout trading in structured environments such as evaluation accounts. Built for MetaTrader 5, it adapts to varying broker conditions using a proprietary range detection algorithm and risk control system. This EA offers configurable settings tailored for traders who aim to follow strict drawdown and execution criteria often found in prop firm accounts. Key Features Smart Range Detection – Dynamically identifies a
Gold Maximizer
Tshivhidzo Moss Mbedzi
Gold Maximizer is an Expert Advisor for MetaTrader 5 that trades support and resistance breakouts on XAUUSD. It combines nine independent breakout strategies on one chart. Each strategy works on its own timeframe, watches its own price levels, and opens at most one position at a time. Trading strategy The EA identifies recent highs and lows over different lookback periods and places pending stop orders beyond those levels. When price breaks out of its recent range, the pending order is trigge
SessionsPro
Tshivhidzo Moss Mbedzi
Sessions Pro is a trading sessions indicator for MetaTrader 5 that draws the London, New York, Tokyo and Sydney sessions with their high/low ranges, session VWAP, an economic calendar news filter, a candle countdown timer and a live dashboard panel. One indicator instead of the five most traders stack on a chart. It works on any symbol - forex, indices, metals, crypto - on every timeframe from M1 to H12. All four sessions are fully configurable: rename them, change their hours, restrict them t
Regression Breakout Map
Tshivhidzo Moss Mbedzi
Regression Breakout Map is a breakout indicator for MetaTrader 5 built around an adaptive linear regression channel. It finds periods where volatility has contracted, marks the breakout when price leaves the channel, and then draws the complete trade map on your chart: entry, stop loss, and a TP1 / TP2 / TP3 target ladder with a stop that ratchets forward as each target is reached. It works on any symbol - forex, indices, metals, crypto - on every timeframe from M1 to H12, and it does not repa
SMC Reversal Map
Tshivhidzo Moss Mbedzi
SMC Reversal Map is a Smart Money Concepts (SMC) indicator for MetaTrader 5 that marks change of character reversals - the moment market structure breaks and the trend in control loses it. It does something most SMC tools do not: before it shows you a signal, it looks up how the most similar setups in your chart's own history actually turned out, and tells you the result as a confidence score you can act on. It works on any symbol - forex, indices, metals, crypto - on every timeframe, and it d
Savanna Gold Trend
Tshivhidzo Moss Mbedzi
Savanna Gold Trend - XAUUSD Expert Advisor for MetaTrader 5 Trend-continuation trading robot for gold on MT5. Pyramids into a running move, never averages down, stop loss on every position. Savanna Gold Trend is an automated trading robot for XAUUSD on MetaTrader 5 (MT5). It waits for price to break out of its recent range in the direction of the higher timeframe trend, opens a position, and then adds further positions only while that move keeps running in profit. Each position is then manage
Apex Helios
Tshivhidzo Moss Mbedzi
APEX HELIOS - ONE QUALIFIED TRADE PER DAY ON GOLD Most gold robots trade constantly. Apex Helios does the opposite. It maps the opening range of each session, waits for one qualified break from that range, and then does nothing for the rest of the day. If no setup meets its quality thresholds, it does not trade at all. One position at a time. A stop loss attached from the moment it opens. Risk on any single trade capped by design. BUILT FROM A TRADE LOG, NOT FROM AN IDEA Version 11 is no
Trident Pressure
Tshivhidzo Moss Mbedzi
Trident Pressure Three pressure layers. One exhaustion state machine. A signal you can wait for. An oscillator that reaches an extreme tells you nothing about timing. Markets stay extreme for days. Trident Pressure is built around the opposite idea: the tradeable moment is not when pressure peaks, it is when pressure releases . Three layers, read separately Z-Pulse — fast, reactive range position. Moves with the current swing. Its job is to be early. Z-Trend — a macro-weighted blend of three ran
筛选:
无评论
回复评论