Optimised Wilders Trend Following

# Optimised Wilders Trend Following AutoAdjusting VixControlled Expert Advisor

## Overview

The Optimised Wilders Trend Following AutoAdjusting VixControlled Expert Advisor is an advanced trading system for MetaTrader 5 that implements a sophisticated trend following strategy based on Welles Wilder's concepts, enhanced with modern risk management techniques. This EA combines multiple innovative features to adapt to changing market conditions while maintaining strict risk control parameters.

## Application and Optimization

The Optimised Wilders Trend Following EA requires careful optimization for each specific financial instrument (underlier) as market behaviors can vary significantly across different assets. Using the MetaTrader Strategy Tester is essential to fine-tune the EA parameters for optimal performance on each instrument.

### Optimization Process

Each underlier might respond differently to market conditions and parameter settings. It's crucial to conduct thorough backtesting with historical data that represents various market conditions. Here's a detailed approach to optimizing the EA:

1. **AutoAdjusting ACC Feature Testing**:
- Test with AutoAdjustAcc = true vs. false
- When enabled, experiment with different AtrHigherTimeframe settings (H1, H4, H12, D1)
- Optimize the AutoAdjustPeriod parameter (range: 100-300)
- Adjust AtrRefreshPeriod to find the optimal refresh frequency for your instrument

2. **Higher ATR Value Optimization**:
- Test different ATR calculation periods
- Instruments with higher volatility may require longer ATR periods to smooth out noise
- Lower volatility instruments might benefit from shorter ATR periods for more responsive signals

3. **Fixed ACC Parameter Testing**:
- With AutoAdjust OFF, test a range of fixed ACC values (typically between 5.0-15.0)
- More volatile instruments generally perform better with lower ACC values
- Less volatile instruments may require higher ACC values for effective trend following
- Create optimization matrices with different ACC values against different timeframes

4. **StopLoss Configuration Testing**:
- Test with UseStopLoss = true vs. false
- When enabled, optimize the AF_MIN and AF_MAX parameters
- Adjust K_Smooth parameter (range: 2.0-7.0) to find the optimal sigmoid steepness
- For instruments with frequent gap movements, test different StopLevelBuffer values

5. **VIX Control Level Optimization**:
- Test with UseVixFilter = true vs. false
- Optimize the VixMinimumLevel parameter (typically between 15.0-25.0)
- Different asset classes may require different VIX thresholds:
* Equity indices might perform better with higher VIX thresholds (19.0-22.0)
* Forex pairs might need lower thresholds (16.0-19.0)
* Commodities may require custom thresholds based on their correlation with VIX

### Optimization Tips

- **Use Forward Testing**: After backtesting, always validate your optimized parameters with forward testing or out-of-sample data
- **Avoid Over-Optimization**: Focus on parameter ranges rather than exact values to avoid curve-fitting
- **Consider Market Regimes**: Test your settings across different market regimes (trending, ranging, volatile, calm)
- **Balance Performance Metrics**: Don't optimize solely for profit - consider drawdown, Sharpe ratio, and win rate
- **Instrument Correlation**: For portfolio trading, consider how parameters perform across correlated instruments

### Recommended Optimization Workflow

1. Start with default parameters and run a baseline test
2. Perform single-parameter optimization for the most critical parameters (ACC, VixMinimumLevel)
3. Run multi-parameter optimization with narrow ranges around the best single-parameter results
4. Validate results with out-of-sample testing
5. Periodically re-optimize as market conditions evolve

By thoroughly optimizing these key parameters for each specific underlier, traders can significantly enhance the performance of the Optimised Wilders Trend Following EA across different market conditions.

## Core Strategy

At its core, the EA uses a trend following approach based on the Stop-And-Reverse (SAR) principle. The system tracks significant price levels and calculates dynamic reversal points using Average True Range (ATR) to determine market volatility. The EA maintains a position in the market at all times (either long or short) and switches direction when price crosses the calculated SAR level.

## Auto Adjusting Feature

One of the most powerful aspects of this Expert Advisor is its Auto Adjusting Acceleration Factor (ACC) feature. This innovative mechanism allows the EA to dynamically adapt to changing market conditions across different timeframes.

### How the Auto Adjusting Feature Works:

1. **Timeframe Correlation Analysis**: The EA calculates the ATR (Average True Range) on two different timeframes:
- A higher timeframe (configurable, default is H12)
- The M1 (1-minute) timeframe

2. **Ratio-Based Adjustment**: The system calculates the ratio between these two ATR values:
```
pendingACC = ATRHigher / ATRM1
```
This ratio represents the relative volatility between the timeframes and becomes the new Acceleration Factor.

3. **Intelligent Application**: The calculated ACC value is not applied immediately but stored as a "pending" update that takes effect only when a position change occurs. This ensures smooth transitions between different volatility regimes.

4. **Validation and Fallback**: The system includes comprehensive validation to ensure the calculated ACC value is reasonable. If any issues are detected (division by zero, invalid values), the EA falls back to the initial ACC value.

5. **Periodic Recalculation**: The ACC value is recalculated periodically (configurable, default is hourly) to ensure it remains relevant to current market conditions.

This auto-adjusting mechanism allows the EA to:
- Use wider stops in volatile markets
- Use tighter stops in calmer markets
- Automatically adapt to changing market conditions without manual intervention
- Optimize risk management across different market phases

## VIX Control Feature

The VIX Control feature adds another layer of market awareness by incorporating volatility index data into the trading decision process.

### How the VIX Control Works:

1. **Market Volatility Assessment**: The EA monitors the VIX (Volatility Index) level from a specified symbol and timeframe.

2. **Minimum Threshold Filter**: New positions are only opened when the VIX level is above a configurable minimum threshold (default is 19.0).

3. **Risk Management Integration**: This feature acts as a market filter that prevents the EA from entering new positions during periods of low volatility, which often correspond to choppy, directionless markets.

4. **Configurable Parameters**: Users can:
- Enable/disable the VIX filter
- Adjust the minimum VIX level threshold
- Specify the VIX symbol name and timeframe to use

The VIX Control feature significantly improves the EA's performance by:
- Avoiding trading during unfavorable market conditions
- Reducing the number of false signals in low-volatility environments
- Focusing trading activity on periods with higher directional movement potential
- Adding a macroeconomic dimension to the trading strategy

## Advanced Trade Management

The EA implements sophisticated trade management techniques to optimize performance and minimize risk:

### Dynamic Stop Loss Management

1. **Adaptive Acceleration Factor (AFX)**: The EA uses a sigmoid-based transition function to calculate an adaptive acceleration factor that adjusts the stop loss distance based on price movement:
```
AFX = CalculateAFX(currentPrice, SIC_SNAP, ATR_SNAP, currentACC, AF_MIN, AF_MAX, FLIP, K_Smooth)
```

2. **Bound-Based Stop Loss Adjustment**: The system implements upper and lower bounds based on the ATR and tracks when these bounds are breached:
```
upperBound = SIC_SNAP + ATR_SNAP * currentACC
lowerBound = SIC_SNAP - ATR_SNAP * currentACC
```
Once a bound is breached, the stop loss is adjusted using a different algorithm to lock in profits.

3. **Trailing Stop Logic**: For long positions, the stop loss is continuously raised as the price moves favorably. For short positions, the stop loss is continuously lowered.

4. **Position Modification Management**: The EA includes sophisticated logic for position modifications:
- Cooldown periods between modification attempts
- Tracking of consecutive modification failures
- Fallback to more conservative stop loss values when needed
- Validation of stop loss levels against minimum distance requirements

### Risk Management Checks

The EA implements multiple risk management checks:

1. **Position Sizing**: Position size is calculated based on:
- Account balance
- User-defined risk percentage
- Current market volatility (ATR)
- Symbol-specific parameters (tick size, tick value, lot step)

2. **Margin Requirements**: Before opening a position, the EA verifies:
- Required margin for the trade
- Available free margin (with a 10% buffer)
- Rejection of trades with insufficient margin

3. **Stop Level Validation**: The system ensures stop loss levels are valid:
- Checks against minimum stop level requirements
- Adds configurable buffer to minimum stop level
- Implements waiting mechanism for market to move if stop level is too close
- Adjusts stop loss automatically if market doesn't move enough

4. **Two-Step Order Placement**: Optionally uses a two-step order placement process:
- First places the order without stop loss
- After a configurable delay, adds the stop loss
- This helps avoid issues with brokers rejecting orders with tight stop losses

5. **Slippage Control**: Configurable maximum allowed slippage in points

### Memory and Resource Management

The EA includes features for efficient operation:

1. **Memory Monitoring**: Optional monitoring of memory usage with configurable logging intervals
2. **Indicator Handle Management**: Efficient creation and release of indicator handles
3. **Optimized Calculations**: Heavy calculations (like AFX) are only performed when needed

## Technical Implementation Details

### Key Components:

1. **ATR Calculation**: Smoothed Average True Range calculation with configurable alpha factor
2. **SIC (Significant Close)**: Tracks significant price levels based on position direction
3. **SAR (Stop-And-Reverse)**: Dynamic calculation of reversal points
4. **AFX Calculation**: Sigmoid-based adaptive acceleration factor
5. **Position Management**: Comprehensive position tracking and modification

### Error Handling:

1. **Division by Zero Protection**: Multiple checks to prevent division by zero errors
2. **Parameter Validation**: Extensive validation of calculated values
3. **Retry Mechanisms**: Retry logic for indicator buffer copying
4. **Fallback Values**: Default values used when calculations fail

## Conclusion

The Optimised Wilders Trend Following AutoAdjusting VixControlled Expert Advisor represents a sophisticated trading system that combines classic trend following principles with modern adaptive techniques. The Auto Adjusting feature and VIX Control mechanism provide significant advantages in adapting to changing market conditions, while the comprehensive trade management system ensures disciplined risk control.

This EA is particularly well-suited for traders who:
- Trade across multiple timeframes
- Seek a system that adapts to changing market conditions
- Want to incorporate volatility awareness into their trading
- Require sophisticated risk management
- Prefer a fully automated trading solution

By combining these advanced features, the EA aims to deliver consistent performance across various market conditions while maintaining strict risk management parameters.



Recommended products
Ma Cross T
Husain Raja P
Ma Cross T – Automated Trend-Following Trading Robot Ma Cross T is a fully automated trend-following trading robot developed for MetaTrader 5, designed to identify and trade market trends using a Moving Average crossover strategy. The robot continuously analyzes price data and automatically opens BUY or SELL positions when a confirmed crossover occurs between a fast and a slow moving average. This approach helps capture sustained market momentum while avoiding emotional or manual trading error
ST Matrix
Domantas Juodenis
ST MATRIX — Institutional Symmetrical Triangle EA MetaTrader 5 | Netting & Hedging | All Brokers | Version 1.01 WHAT IS ST MATRIX? ST Matrix is a professional Expert Advisor built around the Symmetrical Triangle — one of the most reliable compression breakout patterns in technical analysis. The EA enforces a strict 5-point structure (H1 → L2 → H3 → L4 → breakout), applies institutional-grade filters before every entry, and manages trades
GoldPilot
Shu Kai Shang
GoldPilot is an automated trading system (EA) specifically developed for XAUUSD trading on the MetaTrader 5 (MT5) platform. The EA is designed to adapt to changing market conditions through intelligent trade management and automated execution control. Its core focus is on maintaining stable operation while effectively managing market volatility and trading risk. Core Features: Fully automated market execution Dynamic trade management Intelligent market condition filtering Volatility-based opera
Trader AI
Nestor Alejandro Chiariello
Trader AI | Professional EURUSD Trend Specialist Trader AI is a state-of-the-art algorithmic trading system engineered exclusively for the EURUSD pair. Unlike conventional EAs, Trader AI utilizes an Automated Daily Analysis engine powered by neural networks to decode market structure and execute trades with surgical precision. 3 Years of Real Trading Account Solid Growth Results Daily AI Analysis Designed for the modern trader, this Expert Advisor merges Machine Learning with robust trend-foll
HuiAi
Saeid Soleimani
HUIAI Trading Robot LIVE TESTED - Contact me to see live performance Next Price 399$ HUIAI is an automated trading system designed for analyzing and trading Nas100 on the H1 timeframe. Technical Specifications Target Market: Nas100 Timeframe: H1 Recommended Minimum Balance: $100 Platform: MetaTrader 5 Core Features Risk Management System Automatic lot size calculation Trailing stop adjustment Spread analysis and adjustment Volatility-based risk optimization Technical Capabilities Automatic tim
QILIN IMPERIAL-GRID GOLD MECH    H1 SuperTrend Smart Grid with Crash Protection    Qilin Imperial-Grid Gold Mech ($1,499) is an advanced trend-following Smart Grid Expert Advisor. Inspired by the "Qilin" (Kirin), the ancient mythical creature that brings immense wealth and divine protection, this EA is designed to safely accumulate profit while avoiding catastrophic market crashes. While traditional grid systems are extremely dangerous and often blow accounts when the market trends strongly aga
This universal advisor is based on its own Algorithm, which is an incredibly effective tool due to the simultaneous operation of a trading strategy based on our  Indicator " Channel Sgnals ProfRoboTrading" and our proprietary signal filter system together with the Martingale method, which together work out a very interesting hedging system. Traders are also given the opportunity to set up their own risk management system with two filters to control deposit drawdowns . The advisor's algorithm is
Product Description Silver Trend Signal EA Pro is a repainting-safe Expert Advisor built around the Silver Trend Signal indicator.    The EA automatically identifies trade signals and executes orders without manual intervention, saving time and emotion-based trading errors.  The EA prioritizes reliability by executing trades only after a   confirmed closed bar , minimizing false signals. It includes comprehensive risk management features like stop loss, take profit, trailing stops, and break-
Aurora Flow
Viktoriia Liubchak
Aurora Flow Aurora Flow is an automated trading expert designed for trading gold (XAUUSD), specifically optimized for the M1 timeframe. The advisor focuses on intraday trading and is built to handle the high volatility characteristic of the gold market. The expert does not use grid trading and does not apply martingale strategies. All trades are executed with controlled and predefined risk. Main Characteristics Trading instrument: XAUUSD Timeframe: M1 Trading type: Intraday Account type: Hedge
Gold Sniper Sync Core
Mostafa Elsayed Hassan Mosa
Overview Xau Gold Sync-Core is an advanced algorithmic trading system developed specifically for the XAUUSD (Gold) pair on the M15 timeframe. Designed for MetaTrader 5, this Expert Advisor utilizes a dual-engine architecture to analyze market conditions, manage risk, and execute trades autonomously based on quantitative logic. The system is built to address the strict requirements of modern trading environments, offering built-in equity protection, dynamic lot sizing, and cross-engine risk man
Strategy: The strategy will follow the high Timeframe trend and find spikes in the smaller Timeframe. Stoploss and Takeprofit orders from 1-3 days. Maximum 3 Orders, the strategy uses a combination of EMA, Stochatic, Volatility, and Strength indicators Real Signal:   https://www.mql5.com/en/signals/2244878 Symbol:  The best Symbol (BTCUSD and Crypto) Volume: suggestion 0.05lot/1000$, dropdown about 30% Stoploss: Fixed or according to Signal Takeprofit:  Fixed or according to signal Auto Trailin
Atomic Xau
Ignacio Agustin Mene Franco
Atomic XAU - Expert Advisor Overview Atomic XAU is an automated trading system specifically designed to trade XAU/USD (Gold) on the M5 timeframe. This EA combines four professional technical indicators to identify high-probability trading opportunities with rigorous risk management. Trading Strategy The system uses multi-indicator confirmation through: MACD: Detects momentum changes and trend crossovers Bollinger Bands: Identifies overbought/oversold zones and volatility RSI: Confirms extreme
Breakout News
Surya Nurvina
Breakout News EA   is an automated scalping Expert Advisor for MetaTrader 5 specifically designed to capitalise on price volatility during scheduled high-impact news events. Unlike traditional breakout systems, this EA places both a   Buy Stop   and a   Sell Stop   order around the pre-news range, allowing it to catch directional moves immediately after the release. The EA is built for single‑pair trading with a strong focus on dynamic risk management, trailing stops, broker integrity monitoring
Intersection EA
Kalinka Capital OU
Intersection EA is a fully automated software (trading robot), executing trading orders on the currency market in accordance with the algorithm and unique trading settings for each currency pair. Intersection EA is perfectly suitable for beginner traders as well as for professionals who got solid experience in trading on financial markets. Traders and programmers of Kalinka Capital OU company, worked hard developing the Intersection EA forex robot, starting from the year 2011. Initially, this s
Supertrend G5 Pro
Van Minh Nguyen
5 (2)
Supertrend G5 Pro – Professional Trading System for XAUUSD Supertrend G5 Pro is a full-featured automated trading system optimized for XAUUSD, designed for intraday and short-term trading with a primary focus on the M5 timeframe (also effective on M1, M15, and H1 with parameter adjustments). As an advanced upgrade of Supertrend G5, Dynamic Lot Growth allows adaptive position sizing based on account performance , combined with built-in risk management and prop-firm compliant protections to suppo
Ultra Gold Grid Master Expert Advisor Ultra Gold Grid Master is an automated trading system designed for grid trading strategies on the XAUUSD symbol. The Expert Advisor implements multiple grid trading approaches with integrated risk management features. Product Overview This Expert Advisor provides automated grid trading functionality with configurable parameters for various trading styles. It is compatible with the MetaTrader 5 platform. Key Features Multiple grid trading modes: Buy only, Se
Launching the state of art,  Emperor Trend Dominator EA, the ultimate automated trading solution that is set to revolutionize your trading journey. Have undergone several years of testing covering many gaps in the market, designed specifically for the US30_SPOT with high precision and powered by cutting-edge technology,  Emperor Trend Dominator  EA  is your gateway to accessing reliable potential in the dynamic world of financial markets. Presenting a Limited-Time Offer: Emperor Trend, Now Avai
EVAutoTrader
Las Beach LLC
EV AutoTrader EV AutoTrader is a configurable Heikin Ashi–based utility Expert Advisor designed to help traders automate and refine their own trading approach. The EA uses changes in Heikin Ashi candle direction as the foundation for its trade-entry logic. Buy and sell trades are opened only after the required candle signal has been confirmed according to the selected settings. EV AutoTrader is primarily a trading utility. It is not a fixed-profit system, a guaranteed strategy, or a preset solu
is a fully automatic Forex trading Expert Advisor. The robot can run on any instrument, but the results are better with EURUSD on the H1 timeframe.  If you are a long-term investor looking at yearly profits with high Sharpe-ratio then Money magnet is a good option. Please check the comment part to share your settings with others and enjoy the latest optimal settings uploaded by other users.  Expert Advisor Advantages High Sharpe-ratio The EA does not use such systems as martingale, hedging,  gr
Gold Dream V
Dmitriq Evgenoeviz Ko
Gold Dream V is a fully automated Expert Advisor designed to trade in the direction of the market trend using a combination of price action analysis, volatility filtering, and moving average logic. EA is focused on a disciplined approach to operations, strict risk control and automatic lot size determination based on the account balance and the user-defined risk percentage. The system is optimized for efficient trading of gold (XAUUSD) and US dollar pairs, and is recommended for use on the H1 ti
Order Block AI
Ignacio Agustin Mene Franco
Concept and Strategy The OrderBlock TMA IA Xau is an automated Expert Advisor specifically designed for the XAU/USD (Gold) pair on the M1 timeframe. It combines two advanced technical analysis concepts: TMA (Triangular Moving Average): Dynamic support/resistance band and trend filter. It's a smoothed double SMA that generates trend lines and volatility bands with standard deviation. Order Blocks (Smart Money Concept): Intelligent detection of institutional order imbalance zones (bullish and be
Nexara AI MT5 – Super Intelligent AI Trading System Advanced AI-Powered Expert Advisor with Daily Profit Lock & Storm Protection Let’s change the world of trading forever. I’m Viccon Reynold Anak Robert from Malaysia, and after years of watching traders lose money to greedy grid EAs, over-optimized robots, and sudden drawdowns, I built something completely different. Nexara AI MT5 is not just another Expert Advisor. It is a next-generation intelligent trading brain that combines real DeepSeek AI
ABX Gold Momentum
Huu Thien Nguyen
1 (1)
ABX Gold Momentum – Adaptive Breakout EA (MT5) ABX Gold Momentum is a professional breakout trading algorithm designed for real market conditions, focusing on momentum moves and controlled risk management. Real Account Performance Growth: +198% Initial Deposit: $10,000 Current Equity: $184,548 Total Profit: $183,548 Max Drawdown: 36.3% Profit Trades: 52.7% No Martingale No Grid No Recovery strategies Pure breakout logic with disciplined execution. Core Engine Adaptive Pending Distan
BAXIA GOLDEN-SHELL MECH      Asymmetric Zero-Point Equilibrium Grid (No SL)    Baxia Golden-Shell Mech ($2,499) is an ultra-premium, highly durable Expert Advisor built for extreme market conditions. Inspired by the Chinese mythical Dragon-Turtle (Baxia)—a creature known for its impenetrable shell and ability to carry massive weight—this EA is designed to absorb market drawdowns and turn them into profit using "Zero-Point" mathematics. Traditional Stop Losses guarantee that you lose money. Bax
ArbitrageATR Recovery MT5
KO PARTNERS LTD
5 (1)
PLEASE NOTE : This expert advisor is designed exclusively for trade recovery and should not be used as a standard automated trading system. IMPORTANT : This EA represents one of the most comprehensive and robust recovery solutions currently available to the public. It is an essential tool for any trader seeking added protection during adverse market conditions. Safeguard your account and trade with confidence, knowing that this recovery system is engineered to help stabilize and preserve your e
Perfect Score EA — Precision Gold Trading System Perfect Score EA is a fully automated Expert Advisor developed exclusively for XAUUSD (Gold) on the H1 timeframe, designed to deliver precise execution, structured decision-making, and controlled risk in real market conditions. The system is built around a disciplined trading framework, combining multi-timeframe analysis with adaptive logic to identify high-quality opportunities while maintaining a consistent and measured approach to risk. Key Fea
Uriel Gold Oracle
Jose Aurelio Fiorio Weberhofer
Uriel Gold Oracle v3.7 — XAUUSD M30 Expert Advisor A research-grounded gold trading system. No martingale. No grid. No averaging. No lot-doubling. Every position carries a hard, volatility-scaled stop loss. Uriel Gold Oracle is built for traders who want a controlled, rule-based approach to gold on the M30 timeframe — not a high-risk recovery system that hides danger under a smooth equity curve. It opens a single position at a time, only when multiple independent filters agree, and protects eve
Dax30 Ea Mt5 Hk
Pankaj Kapadia
5 (2)
Dax30 Ea Mt5 Hk.: Version 8.01 For Dax40(De40)(Ger40) The Dax30 EA MT5 HK is a product for traders who are interested in trading in DE40(DAX40) index of CDF.  The Dax30 EA MT5 HK is likely an automated trading system that uses technical analysis and algorithms to trade the DAX40 index. By automating the trading process, the product aims to eliminate emotional and psychological biases from the decision-making process, potentially leading to more consistent and stable with low risk.  The Dax30 Ea
LT Stochastic EA
BacktestPro LLC
LT Stochastic EA is an expert advisor based on the on the Stochastic Oscillator indicator. It is one of the most used indicators by traders around the world. The LT Stochastic EA offer you the possibility to automate 4 different stochastic trading strategy (please refer to the attached pictures). Not only it is user friendly, it has also been designed to offer  great amount of flexibility to suit the need of everyone. IT comes in bult with many options such as:  Trading on Normal or Custom Symbo
BTC Quantum Velocity EA
BK CORP CLUB (PTY) LTD
BTCSD Quantum Velocity EA | Bitcoin Automated Trading System for MetaTrader 5 BTCSD Quantum Velocity EA is an automated Expert Advisor for MetaTrader 5 developed exclusively for trading BTCUSD. The EA focuses on a single trading instrument, using an algorithmic approach to automate trade execution, position management, and risk control. By concentrating on Bitcoin, the EA is designed to operate using trading logic developed specifically for the characteristics of the BTCUSD market. Supported In
Buyers of this product also purchase
Quantum Queen X MT5
Bogdan Ion Puscasu
5 (13)
The Legend Continues. The Queen Evolves. Welcome to Quantum Queen X — the next generation of the legendary GOLD trading system that builds upon the proven success of Quantum Queen. Quantum Queen X is built on the same proven core engine as Quantum Queen, introducing a powerful new Custom Mode that allows traders to choose exactly which strategies to enable or disable. Every strategy has been individually reviewed, refined, and optimized to deliver even better performance and adaptability across
Scalping Robot Pro MT5
MQL TOOLS SL
4.51 (129)
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
The Gold Reaper MT5
Profalgo Limited
4.46 (102)
PROP FIRM READY! ( download SETFILE ) WARNING: Only a few copies left at current price! Final price: 990$ Get 1 EA for free (for 3 trade accounts) -> contact me after purchase Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal Client Signal YouTube Reviews LATEST MANUAL Welcome to the Gold Reaper! Build on the very succesfull Goldtrade Pro, this EA has been designed to run on multiple timeframes at the same time, and has the option to set the trade frequency fro
TwisterPro Scalper
Jorge Luiz Guimaraes De Araujo Dias
4.46 (123)
Fewer trades. Better trades. Consistency above all. • Live Signal Mode 1  Live Signal Mode 2 Twister Pro EA is a high-precision scalping Expert Advisor developed exclusively for XAUUSD (Gold) on the M15 timeframe. It trades less — but when it does, it trades with purpose. Every entry passes through 5 independent validation layers before a single order is placed, resulting in an extremely high win rate on the Default configuration. TWO MODES: • Mode 1 (recommended) — Very high assertiveness, fe
Ultimate Breakout System
Profalgo Limited
5 (46)
IMPORTANT : This package will only be sold at current price for a very limited number of copies.    Price will go to 1999$ soon!   +100 Strategies included and more coming! BONUS : At 1499$ or higher price --> choose 5  of my other EA's for free!   ALL SET FILES COMPLETE SETUP AND OPTIMIZATION GUIDE VIDEO GUIDE LIVE SIGNALS REVIEW (3rd party) NEW - VERSION 5.0 - ONECHARTSETUP NEW - 30-STRATEGIES LIVE SIGNAL Welcome to the ULTIMATE BREAKOUT SYSTEM! I'm pleased to present the Ultimate Breakout
Adaptive Gold Scalper Important Pre-notice: This strategy requires a long period of practical verification, and favorable trading returns cannot be guaranteed in the short run. Traders must select brokers with ultra-low order latency, minimal slippage and zero/low stop level requirement; poor broker conditions will lead to disastrous trading results. I have over 14 years of professional trading experience. With proper brokerage conditions and sufficient running time, this fully automated scalpi
Gold Snap
Chen Jia Qi
4.47 (17)
Gold Snap — A Fast Profit Capture System for Gold Live Signal: https://www.mql5.com/en/signals/2362714 Live Signal2: https://www.mql5.com/en/signals/2372603 Live Signal v2.0: https://www.mql5.com/en/signals/2379945 Only 3 copies remaining at the current price. The price will be increased to $999 soon. Important: After purchasing, please contact us by private message to receive the user guide, recommended settings, usage notes, and update support.  https://www.mql5.com/en/users/walter2008 W
Zerqon EA
Vladimir Lekhovitser
3.18 (28)
Live Trading Signal Public real-time monitoring of trading activity: https://www.mql5.com/en/signals/2372719 Official Information Seller profile Official channel User Manual Setup instructions and usage guidelines: View user manual Zerqon EA is an adaptive Expert Advisor designed specifically for XAUUSD trading. The strategy is based on a Deep LSTM neural network model integrated through ONNX, allowing the system to process sequential market behavior and evaluate price dynamics in a st
Quantum King EA
Bogdan Ion Puscasu
4.96 (211)
Quantum King EA — Intelligent Power, Refined for Every Trader IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. Special Launch Price Live Signal:   CLICK HERE MT4 version : CLICK HERE Quantum King channel:   Click Here ***Buy Quantum King MT5 and you could get Quantum StarMan for free !*** Ask in private for more details! Rule your trading with precision and discipline. Quantum King EA brings the strength of
Goldwave EA MT5
Shengzu Zhong
4.73 (71)
Real Trading Account   LIVE SIGNAL IC MARKETS:  https://www.mql5.com/en/signals/2339082 This EA uses the same logic and execution rules as the verified live signal shown on MQL5.When used with the recommended, optimized settings on a reputable ECN/RAW-spread broker ( e.g., IC Markets or TMGM) , the EA's live trading behavior is designed to closely align with the trade structure and execution characteristics of the live signal. Please note that differences in broker conditions, spreads, executio
Mavrik Scalper
Vladimir Lekhovitser
4.5 (2)
Live Trading Signal Public real-time monitoring of trading activity: https://www.mql5.com/en/signals/2378119 Official Information Seller profile Official channel User Manual Setup instructions and usage guidelines: View user manual Mavrik Scalper represents a new generation of AI-driven trading systems built around a Hybrid Attention neural network architecture. Unlike conventional algorithmic strategies that rely primarily on fixed technical indicators or predefined market rules, Mav
Nexorion Initium Novum EA
Valentina Zhuchkova
5 (16)
NEXORION: Initium Novum — Deterministic Logic and Algorithmic Synthesis NEXORION is an institutional-grade analytical complex based on rigorous mathematical liquidity processing algorithms. The core concept of the project is "computational transparency": the expert advisor transforms chaotic price feeds into structured geometric zones, visualizing the decision-making process directly on the trading chart. Real-Time Monitoring https://www.mql5.com/es/signals/2372338 Technical System Specificatio
AXIO Gold EA
Shengzu Zhong
4.6 (10)
AXIO GOLD EA MT5 Live Signal Reference on MQL5 https://www.mql5.com/en/signals/2378982?source=Site+Signals+My AXIO GOLD EA MT5 is an automated trading system developed for XAUUSD Gold on MetaTrader 5. This EA uses the same logic and execution rules as the verified live signal shown on MQL5. When used with the recommended, optimized settings on a reputable ECN/RAW-spread broker such as TMGM , the EA's live trading behavior is designed to closely align with the trade structure and execution charac
Gold House MT5
Chen Jia Qi
4.53 (59)
Gold House — Gold Swing Breakout Trading  One EA. Three Trading Modes. Choose the One That Fits Your Style. No Grid. No Martingale. The price will increase by $50 after every 10 purchases. Final planned price: $1,999. Live Signals:  Profit Priority Mode: https://www.mql5.com/en/signals/2359124 BE priority Mode :  https://www.mql5.com/en/signals/2372604 Adaptive Mode:   https://www.mql5.com/en/signals/2379287  (High-Risk Configuration Reference – Potential profits and losses are amplified. N
Gold Neural Core
TICK STACK LTD
5 (3)
Gold Neural Core — Hyper-Scalping Grid System for XAUUSD 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/messages/014beab2560cdc01 Read the user guide to any TickStack grid system:  https://www.mql5.com/en/blogs/post/767232 Gold Neural Core is a high-frequency grid trading system engineered specifically for gold (XAUUSD), combining momentum and trend-bas
SomaOil
Andrii Soma
5 (2)
SomaOil is a multi-strategy breakout Expert Advisor for MetaTrader 5, built exclusively for WTI crude oil (XTIUSD). One chart, one EA, 20 independent strategies running together as a single diversified portfolio. Live Signal. To make it accessible at launch, I am using a transparent ramping-price model: Launch price: 100 USD (48 hours) Starting from Monday the price increases by 100 USD for every 10 copies sold Price increases happen at most once per day, even when more than 10 copies are sold t
Pulse Engine
Jimmy Peter Eriksson
3.94 (34)
UPDATE - ONLY A FEW COPIES LEFT AT CURRENT PRICE! The main goal of this system is long-term live performance without using any risky martingale or grid.  VERY LIMITED COPIES AT CURRENT PRICE Final Price $1499 [Live Signal]  |  [Backtest Results]  |  [Setup Guide]  |  [FTMO Results] A Different Approach to Trading Pulse Engine does not use any indicators or specific timeframes. It has a very unique approach that is not used by any other trading system on MQL5. It trades intraday directional patt
Cortex Aurex
Vladimir Mametov
5 (2)
It is a fully automated Expert Advisor for MetaTrader 5, built specifically for Gold / XAUUSD trading. Its logic is designed around the dynamic nature of the gold market: fast price movements, sharp reversals, and high volatility. The EA helps automate trading in an environment where reaction speed, discipline, and precise position management are especially important. The system is focused on disciplined trade management, fast reaction to market changes, and controlled exits. Its main idea is si
Quantum Emperor MT5
Bogdan Ion Puscasu
4.86 (507)
Introducing   Quantum Emperor EA , the groundbreaking MQL5 expert advisor that's transforming the way you trade the prestigious GBPUSD pair! Developed by a team of experienced traders with trading experience of over 13 years. IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. ***Buy Quantum Emperor EA and you could get Quantum StarMan for free !*** Ask in private for more details Verified Signal:   Click Here MT4 Version
Quantum Athena X
Bogdan Ion Puscasu
Smarter Control. Refined Precision. Welcome to Quantum Athena X — the next generation of the focused GOLD trading system that builds upon the precision, efficiency, and disciplined execution of Quantum Athena. Quantum Athena X is built on the same streamlined core engine and the same 6 carefully selected strategies as Quantum Athena. Each strategy has been individually refined and optimized for current GOLD market conditions, while the new powerful Custom Mode allows traders to choose exactly
Impulse MT5
Simon Reeves
5 (13)
Are you ready to power up your Gold trading? Impulse by Starpoint Trading — A six-strategy gold EA that waits for the perfect shot. Come chat with us in our public MQL5 channel!  https://www.mql5.com/en/channels/starpoint Impulse v2.00 is here! The biggest update in Impulse's history has arrived. Version 2.00 takes everything that made Impulse a disciplined, patient Gold trading system and elevates it across the board: A brand-new sixth strategy — Conviction Momentum joins the squad, hunting de
SixtyNine EA
Farzad Saadatinia
5 (3)
SixtyNine EA – A Gold Expert Advisor for MetaTrader 5, featuring 6 integrated strategy layers, predefined Stop Loss on every trade, and a clean trading structure without Martingale, Recovery systems, or Grid trading. Public Live Signal: $500 Start, Fixed 0.02 Lot, 500%+ Growth, 20 Weeks Live The public live signal is the central proof point of SixtyNine EA . The account started with a $500 balance , used a fixed 0.02 lot size per trade , and has been active for more than 20 weeks of live tradin
Wave Rider EA MT5
Adam Hrncir
4.88 (43)
Scalper speed with sniper entries. Built for Gold. Wave Rider 5.0 is out (see  Announcement ) $499  until Signal reaches 150% - then 599 USD Check the Live signal  or Manual  or  Broker performance Version 5.0 upgrade notice: Close all Wave Rider positions before updating. Strategy Magic Numbers and several input names changed. Review your settings and save a new preset because older sets or templates may not restore every option. New version runs best on VT Markets, Vantage, Blackbull, Fusion,
Chiroptera
Rob Josephus Maria Janssen
4.57 (46)
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
Quantum Bitcoin EA
Bogdan Ion Puscasu
4.77 (128)
Quantum Bitcoin EA : There is no such thing as impossible, it's only a matter of figuring out how to do it! Step into the future of Bitcoin trading with Quantum Bitcoin EA , the latest masterpiece from one of the top MQL5 sellers. Designed for traders who demand performance, precision, and stability, Quantum Bitcoin redefines what's possible in the volatile world of cryptocurrency. IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup i
Vex Gold EA
Lars Laeremans
5 (6)
VEX 2.00 is here. Now prop firm ready. 4 Months stable Live signal Now upgraded with an optional Prop Firm Mode. No grid. No martingale. One position at a time Live Trading Signal: BlackBull Live Signal   Blackbull High Risk Signal New public channel with upcoming updates and broker-by-broker comparisons https://www.mql5.com/en/channels/vexgoldea Setup instructions and usage guidelines View user manual Defined rules. Fixed risk. One position at a time. No AI, no machine learning, no
Obsidian Flow Atlas EA
Valentina Zhuchkova
5 (6)
Obsidian Flow Atlas EA Precision. Structure. Execution. Financial markets do not reward emotions. They reward discipline, structure, consistency, and the ability to make decisions based on objective data. Obsidian Flow Atlas EA was built around this philosophy. It is a fully automated trading system for MetaTrader 5, designed to operate on two of the most popular instruments in the financial markets: • XAUUSD (Gold) • EURUSD The system independently analyzes market conditions, opens and manages
XG Gold Robot MT5
MQL TOOLS SL
4.3 (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
Byrdi
William Brandon Autry
5 (19)
BYRDI - The Distributed Trading Network That Coordinates the Portfolio. Most Expert Advisors see one terminal, one account, and one set of positions. BYRDI sees the wider network. BYRDI connects separate MetaTrader 5 terminals into a coordinated trading mesh. Each node can keep its own account, broker, markets, strategy, AI model, capital allocation, and risk settings while sharing the information needed for wider portfolio awareness. The network can coordinate execution, limit duplicated expos
Aetherion Prime EA
Valentina Zhuchkova
AETHERION PRIME EA Precision Algorithmic Trading for XAUUSD on H1 Public live signal for real-time monitoring: https://www.mql5.com/ru/signals/2381671 Limited Launch Offer The first 7 copies are available for only $259 . Once these copies are sold, the price will increase immediately by $100 — to $359 . This introductory offer is intended for traders who want to join Aetherion Prime EA at the earliest stage and follow the development of the system through a public live signal from the very begi
More from author
# Power Assisted Trend Following Indicator ## Overview The PowerIndicator is an implementation of the "Power Assisted Trend Following" methodology developed by Dr. Andreas A. Aigner and Walter Schrabmair. This indicator builds upon and improves J. Welles Wilder's trend following concepts by applying principles from signal analysis to financial markets. The core insight of this indicator is that successful trend following requires price movements to exceed a certain threshold (typically a mul
FREE
A Trend Following Indicator that switches directions based on a Stop-and-Reverse Price (based on Wilders algorithm) and in parallel a Stop-Loss that contracts when the profit exceeds the risk capital ( ACC*ATR ) progressively up to user defined max % level ( AF_MAX ). The basis of this indicator is the Volatility method described in Wilders book from 1975 "New Concepts in Technical Trading Systems".  I have used this on Crypto and Stocks and Forex. The ACC (Acceleration Factor) is setup to run
Hidden Markov Model 4
Andreas Alois Aigner
HMM4 Indicator Documentation HMM4 Indicator Documentation Introduction The HMM4 indicator is a powerful technical analysis tool that uses a 4-Gaussian Hidden Markov Model (HMM) to identify market regimes and predict potential market direction. This indicator applies advanced statistical methods to price data, allowing traders to recognize bull and bear market conditions with greater accuracy. The indicator displays a stacked line chart in a separate window, representing the mixture weights of f
Filter:
No reviews
Reply to review