VIX Engine EA

VIX Engine EA is based on a fundamental golden rule: every trade opened is a fully assumed trade . Without Stop Loss, no loss is ever crystallized — positions are held until the return to equilibrium ( Zero Point ) .

Advisor (EA) is specifically designed for trading the VIX volatility index and any instrument operating within bounded price ranges . It relies on an automated, intelligent, and self-adapting buying grid, framed by configurable price levels (floor and ceiling), with rigorous capital management based on the Zero Point concept .

It also integrates a unique High Availability ( HA) system allowing multiple servers to operate in Master/Slave mode , ensuring continuity of trading even in the event of hardware failure or internet outage.

Recommended external parameters : Capital 10,000 € - InpTradingTimeframe=PERIOD_M1 InpPointZero=9.0 - InpLotMode=LOT_AUTO - InpMinGridStepPips=500 - InpMinRangePips=4000 - InpHardFloor=12 - InpHardCeiling=28 - InpPriceSource=PRICE_SOURCE_MANUAL - InpTPPerTradePips=500 - To speed up backtests , remember to disable InpShowDebug (InpShowDebug=false)

Operating principle — The self-adaptive grid

The core of VIX Auto EA is a grid of market buy orders , automatically placed at regular intervals between a floor (Hard Floor) and a ceiling (Hard Ceiling) price. No trade is ever executed outside this zone: if the price moves out of the zone, take-profit orders continue to function normally, but any new buy orders are blocked until the price returns to the zone. This approach protects capital by preventing the accumulation of positions at unfavorable prices .

The distance between two trades is not fixed: it is calculated dynamically at each tick by the CalculateAutoStep function, which simulates the maximum number of trades that can be funded with the remaining capital, then divides the price range by this number. The resulting grid step is always greater than or equal to the configured minimum (InpMinGridStepPips), ensuring a grid density consistent with the available capital.

Capital Management and Protection Zero Point

Each new entry is subject to a security check ( CheckSecurityRequirement ) which calculates the total cumulative risk of all open positions, plus the risk of the new position. This risk is calculated as the difference between the opening price of each trade and the Zero Point ( InpPointZero), multiplied by the volume and the monetary value of one point. As long as this cumulative risk remains below the allocated capital , the entry is authorized . The reference capital can be the actual account balance or a configured fixed capital ( InpCapitalFixe ) , allowing for the simulation of regular withdrawals of profits .

Three batch management methods

FIXED_LOT — The lot size for each trade is identical and constant, defined by InpLotSize. This is the simplest and most predictable mode .

PROGRESSIVE LOT — The optimal lot size is recalculated in increments of InpLotIncrement. The EA progressively tests increasing lot sizes and selects the largest lot size that still allows funding for the entire grid within the configured area . This mode allows exposure to automatically increase as capital grows .

LOT_AUTO — A continuous variant of the progressive method: the optimal lot size is calculated without steps (no 0.1 lot increments), aiming for the true maximum that can be financed at any given time. This is the most aggressive method in terms of capital utilization.

Five price sources for the trading zone

The trading zone (floor/ceiling) can be defined in five different ways , selectable via InpPriceSource :

PRICE_SOURCE_MANUAL — HardFloor and HardCeiling levels are entered manually. This is the default mode , ideal for VIX whose historical zones are well known (e.g., 12–28 ) .

PRICE_SOURCE_MEDIAN_BOTH — The floor and ceiling are dynamically calculated as the median of the last N lowest and N highest prices over the configured timeframe . The area automatically adapts to changing market conditions .

PRICE_SOURCE_MEDIAN_MAX_MANUAL_MIN — The ceiling is calculated using a dynamic median , the floor is entered manually. This is useful for allowing the upper part of the area to adapt while maintaining a fixed safety floor .

PRICE_SOURCE_MANUAL_MAX_MEDIAN_MIN — Reverse of the previous one : the ceiling is manual, the floor is median . Ideal for fixing a protective ceiling while allowing the bottom of the area to adapt.

PRICE_SOURCE_CENTERED_ON_PRICE — The zone is dynamically centered on the current price with a half-range defined by InpMinRangePips. The zone follows the price continuously, always bounded by the HardFloor and HardCeiling guardrails.

Calculation of dynamic medians

Median levels are calculated using the `CalculateMedianValue` function, which collects the most recent InpMedian_HighBars and InpMedian_LowBars over the InpMedian_Timeframe, sorts the values, and returns the statistical median (insensitive to extreme values , unlike a mean). A percentage offset (`InpMedian_HighOffsetPct` / `InpMedian_LowOffsetPct`) can be applied to widen or narrow the calculated area . The median history can be plotted directly on the graph ( ` InpShowDebugHistory`) as colored trend lines .

Minimum range and forced zone

If the natural distance between the floor and ceiling is less than the configured InpMinRangePips , the GetEffectiveRange function automatically forces a minimum range centered on the current price. This forced range remains bounded by the hard guardrails, preventing any inconsistent configuration . This mechanism ensures that there is always sufficient range to place at least a few grid levels.

Two exit modes (Take Profit)

MODE_NONE — Individual Take Profits : Each position closes independently as soon as the price reaches its individual Take Profit level (InpTPPerTradePips converted to real price ) . This is the most reactive mode , which collects profits position by position as the VIX rises .

CUMULATIVE MODE — Cumulative Take Profits : No position is closed individually. The Expert Advisor (EA) monitors the sum of floating pips across all open positions. As soon as this sum reaches InpTPPerTradePips (taking into account the number of positions), all positions are closed simultaneously via CloseAllPositions . This mode maximizes overall profit by waiting until the entire portfolio is sufficiently profitable before exiting.

High Availability ( HA ) System — Master / Slave

VIX Auto EA's most advanced feature : an automatic failover system between multiple servers, designed to ensure that only one EA trades at a time, even in the event of a failure. Up to four servers can be configured with their Tailscale IDs and IP addresses. A PHP server hosted on OVH (InpHA_OVH_BaseURL) serves as the central registry: each server sends a regular heartbeat ( InpHA_HeartbeatSec) and consults the registry to determine which server has the highest priority and is still alive (HA_GetHighestPriorityAlive). If the current master has not responded for InpHA_TimeoutSec seconds, the next server in priority automatically takes over as master ( HA_WriteMaster) . If the current master trader experiences a loss of internet connection , they automatically switch to slave mode for security reasons , preventing double trading. The HA (MASTER/SLAVE/internet loss) status is displayed in real time on the graphical dashboard.

Full graphical dashboard

A configurable information panel (colors, font sizes, position, width, automatic or fixed height) displays in real time : the asset and the magic number , the broker time and the spread, the number of open positions and the long break-even level, profits and losses over 7 periods ( previous month , current month, 14 days, 7 days, yesterday , today, floating) with dynamic green/red coloring, the HA status, the active trading zone (min/max), the account leverage, the current lot size and mode, and finally the detailed trade - by-trade cost to Zero Point for each open position. Six horizontal lines are drawn on the chart: active ceiling (yellow), active floor (cyan), next buy level (orange-red), Zero Point (purple), upper guardrail (orange), and lower guardrail (orange).

Monthly report and OnTester score

At the end of each backtest, if InpReportMonthly is enabled , the Expert Advisor (EA) generates a complete monthly report of gains and losses, sorted chronologically , with the month name in French . The OnTester function returns the net return as a percentage of the initial capital, which can be used directly as a selection criterion in the MetaTrader 5 optimizer.

Essential parameters summarized​​​​

Setting​​

Role​​

InpHardFloor / InpHardCeiling

Fixed trading zone (e.g., 12–28 for the VIX)

InpPointZero

Reference price for calculating total risk

Fixed Capital Inp

Capital allocated ( 0 = actual account balance )

InpLotMode

Fixed / Progressive / Auto

InpMinGridStepPips

Minimum distance between two trades

InpPriceSource

Source of levels (manual / median / centered )

InpExitMode

Individual or cumulative practical work

InpTPPerTradePips

Target profit per trade (or cumulative profit )

InpHA_Enabled

Activation of the Master / Slave system


Compatibility and recommendations

VIX Auto EA is optimized for the VIX (CBOE Volatility Index) but works on any instrument with a bounded and predictable price range . It is recommended for traders with sufficient capital to cover the entire calculated grid between HardFloor and HardCeiling, which the EA automatically verifies before each entry . The HA system requires an accessible PHP server (OVH or equivalent ) and Tailscale connectivity between machines. Compatible with MetaTrader 5 and all brokers.


Recommended products
The Bitcoin Reaper
Profalgo Limited
3.71 (34)
LAUNCH PROMO: Only a very limited number of copies will be available at current price! Final Price: 999$ NEW (from 349$) --> GET 1 EA FOR FREE (for 2 trade account numbers). Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here LIVE SIGNAL LIVE SIGNAL V2.0 UPDATE 2.0 INFO Welcome to the BITCOIN REAPER!   After the Tremendous success of the Gold Reaper, I decided it is time to apply the same winning principles to the Bitcoin Market, and boy, does it look promising!   I have been
NHK Local Time Scale NHK Local Time Scale displays your PC/local time directly on the MT5 chart , alongside the broker's native chart time. The trader can easily compare both time zones for any candle. Benefits for Traders: Quickly convert Broker Time ↔ Local/PC Time . Helps accurately set News Stop/News Filter times. Makes London, New York, Asian and other trading sessions easier to identify in your local time. Helps verify that EA session and news time settings are correct. Reduces mistakes ca
FREE
BTC Master Pro
Farzad Saadatinia
4.58 (12)
BTC Master Pro – Your trusted partner in disciplined Bitcoin trading. The new version is now enhanced with OpenAI artificial intelligence , delivering smarter execution and improved trade filtering in volatile crypto conditions. This professional Expert Advisor is built specifically for Bitcoin (BTCUSD) trading on MetaTrader 5 , focusing on structured execution, controlled exposure, and intelligent risk management. Price: $499  →  Next: $699  →  Final: $999 LIVE SIGNAL HERE OpenAI-Powered Exec
Agarwal Meridian BTC Trend A fully automated, rules-based trend-following system for BTCUSD on the 1-hour timeframe. The strategy executes a staged 3-position structure with defined take-profits and a hard stop-loss on every trade. There is no martingale, no grid, no averaging down, and no discretionary override. It is a position-trading system that produces approximately 9–10 signals per year, designed to run unattended, 24 hours a day, without monitoring. How it works The system identifies con
Introducing the Professional Manager Trader  – a powerful tool designed to enhance your trading experience. Developed with the expertise of a skilled full-time trader, this trading interface effectively manages your trades and capital. Its strategy is built on breakouts and incorporates personally developed confirmation indicators, which have a proven track record of success. With a strong focus on risk and money management, the  Professional Manager Trader holds the key to successful trading.
TITAN TREND ARCHITECT — The Ultimate Strategy Builder EA "Don't just buy an EA. Buy the Blueprint. Build Your Own Edge." > Inspired by the market's leading Strategy Builder EAs, but forged with TumWebTH's unmatched Aegis Shield technology. Are you tired of buying black-box Expert Advisors where you have no control over the entry logic? Titan Trend Architect- changes the game. It is a No-Code Strategy Builder- that allows you to Mix & Match Entry Triggers, Trend Filters, and Exit Logic direct
Gyroscopes mt5
Nadiya Mirosh
5 (2)
Gyroscope        professional forex expert   (for EURUSD, GBPUSD, USDJPY, AUDUSD, USDCHF, EURGBP, EURJPY, NZDUSD, USDCAD, EURCHF, AUDJPY, CADJPY pairs)   alyzing the market using the Elliot Wave Index. Elliott wave theory is the interpretation of processes in financial markets through a system of visual models (waves) on price charts. The author of the theory, Ralph Elliott, identified eight variants of alternating waves (of which five are in the trend and three are against the trend). The mov
Introducing to your attention an innovative expert advisor created specifically for the most juicy and volatility  currency   basket: GBPUSD, XAUUSD and EURJPY. This EA is designed using the main features of this market's movement, making it an ideal choice for dynamic trading on high-trending and medium-volatile pairs. The advisor is focused on minimizing trading risks, aiming to reduce losses to a minimum. Main features: EA is designed to open and close orders at the begginning of trading ses
Gold Crazy EA MT5
Nguyen Nghiem Duy
Gold Crazy EA   is an Expert Advisor designed specifically for trading Gold H1/ EU M15. It use some indicators to find the good Entry. And you can set SL or you can DCA if you want. It can be an Scalping or an Grid/ Martingale depend yours setting. This EA can Auto lot by Balance, set risk per trade. You also can set TP/ SL for earch trade or for basket of trade. - RSI_PERIOD - if = -1, then the default strategy works, if >0, then the RSI strategy works - MAX_ORDERS - to trade with only 1 order,
Gold Gladiator: Multi-Level Breakout Precision Robot Gold Gladiator is a fully automated Expert Advisor built to catch decisive breakout moves the moment they happen. Instead of waiting on a single trigger, it stages multiple independent entry levels around price at once, ready to fire the instant the market commits to a direction: slicing into the move early rather than chasing it after the fact. Special launch discounted price - $129. The price will increase by $229 with every 5 purchases. Fin
VINOsentinelforXAUUSD
Vinothkumar Sukumar
️ VinoSentinel for XAUUSD Specialized SELL-Side Gold Scalping EA VinoSentinel is a specialized XAUUSD Expert Advisor designed exclusively for automated SELL-side trading. Instead of trying to trade every market direction, VinoSentinel focuses on one specific objective: Finding, executing and managing structured bearish opportunities on Gold. The EA combines three independent Sentinel signal engines with a unified trade-management and protection framework. It is built for traders who prefer
FREE
Introducing to your attention an innovative expert advisor created specifically for the most juicy and volatility    currency     basket: GBPUSD, XAUUSD and EURJPY. This system is designed using the main features of this market's movement, making it an ideal choice for dynamic trading on high-trending and medium-volatile pairs.   The signals are focused on minimizing trading risks, aiming to reduce losses to a minimum. Main features ESignals is designed to show open and close arrows at the beg
The Gold Phantom
Profalgo Limited
4.7 (44)
PROP FIRM READY!  --> DOWNLOAD ALL SET FILES WARNING: Only a few copies left at current price! Final price: 990$ NEW (from 399$ only) : Choose 1 EA for Free! (limited to 2 trade accounts numbers, any of my EAs except UBS) Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal Live Signal 2 !! THE GOLD PHANTOM IS HERE !! After the massive success of The Gold Reaper, I'm extremely proud to introduce its powerful brother: The Gold Phantom , a pure, no-nonsense breako
The Infinity EA MT5
Abhimanyu Hans
3.58 (62)
Contact me for discount before purchasing! AI-Driven Technology with ChatGPT Turbo Infinity EA is an advanced trading Expert Advisor designed for GBPUSD, XAUUSD and AUDCAD. It focuses on safety, consistent returns, and infinite profitability. Unlike many other EAs, which rely on high-risk strategies such as martingale or grid trading. Infinity EA employs a disciplined, profitable scalping strategy based on neural network embedded over machine learning, data analytics AI based technology provid
Breakout XAUUSD Pro with sophisticatedly calculated risk managing stop loss and lot sizing. No Martingale, No Hedging, No Gridding. Pure Trading Trades the daily range breakout with a stop loss that adapts to real market volatility — not a fixed number that gets blown out on a wild day. How It Works At a chosen server hour each day, the EA marks the previous day's high and low, then places pending Buy Stop and Sell Stop orders just beyond that range with a configurable point buffer. Whichever le
Market Maestro: Your Ideal Partner for Automated Forex Trading If you're looking for a reliable assistant for trading in the currency market, Market Maestro is exactly what you need. This modern Forex bot is built using the latest technologies and algorithms, allowing it to effectively analyze market data and make informed trading decisions in real-time. Key Features of Market Maestro 1. Multicurrency Capability for Broad Opportunities Market Maestro can work with a wide range of currency pairs,
Manyal trading system, CovEchoTrend Robot, focuses on reliability and flexibility. By employing statistical analysis methods to study the relationships between the base indicator and market patterns, the system enables a deeper understanding of market processes. Intelligent pattern analysis: The application of statistical data processing helps identify key trend reversal points more accurately, signaling significant market shifts. Informed decision-making is based on the intersection of indicato
Trade Extender
Loncey Duwarkah
5 (1)
Autonomously executes trades, overseeing the entire process from initiation to completion.  Free support via chat, email and remote assistance Originally built for XAUUSD (Gold). Settings changes for other symbols Powerful rules management Enhanced positioning features Risk Management / Dynamic lot sizing Quick Setup Symbols : XAUUSD Investment for all: Our trading bot is crafted to serve traders of all investment levels, ensuring accessibility to the forex market even for those with limited fu
Viking Alpha DAX Ivar Edition
Valdeci Carlos Dos Passos Albuquerque
Viking Alpha DAX — Germany 40 Expert Advisor for MetaTrader 5 LAUNCH PROMO Only 10 copies at launch price. Price increases with each sale. Launch price: $297 Next price: $497 Final price: $997 Live Performance: FX Blue — Vikingtradingbots What Makes Viking Alpha DAX Different Most DAX robots fail for one simple reason: they treat the Germany 40 like a forex pair. It isn't. The DAX has a heartbeat — a specific rhythm tied to the Frankfurt Stock Exchange opening, the European session structure, an
Sonic R Pro Enhanced EA - Version 2025 $249 Only for the First 5 Buyers! Live Signal Check the live performance of Sonic R Pro Enhanced: Live Sonic R Trading Strategy Sonic R Pro Enhanced is an upgraded version of the traditional Sonic R strategy, automating trades based on the Dragon Band (EMA 34 and EMA 89) and incorporating advanced algorithms to maximize performance. Timeframes: M15, M30 Supported Pairs: XAUUSD, BTCUSD, AUDJPY, USDJPY Trading Style: Swing Trading - Pullback & Counter-
Deep Trend Pro
Ignacio Agustin Mene Franco
DEEP TREND X — Expert Advisor with Artificial Intelligence for XAUUSD Deep Trend X is a 100% automated Expert Advisor, specifically designed for trading Gold (XAUUSD). It combines cutting-edge machine learning algorithms with institutional market analysis to detect highly accurate entries in both trending and ranging markets. ARTIFICIAL INTELLIGENCE CORE The EA's core engine integrates two AI models that self-train on each new candlestick: SVM RBF (Support Vector Machine with Radial Kern
Flip A
Jose Vinicio Vidal Cana
Flip-A trades gold by reading one thing: how much the daily candle body dominates its full range. When the market leaves a clear direction, it enters with the trend. When the day is indecisive, it stays out. And it trades one hour a day. That single decision defines this robot. Across 28 months of data we measured results hour by hour, and one session concentrated the best performance with the lowest risk. The rest of the day the robot sits idle. That is not a limitation: it is the reason its
Stormer RSI 2
Ricardo Rodrigues Lucca
This strategy was learned from Stormer to be used on B3. Basically, 15 minutes before closing the market, it will check RSI and decided if it will open an position. This strategy do not define a stop loss. If the take profit reach the entry price it will close at market the position. The same happens if the maximal number of days is reached. It is created to brazilian people, so all configuration are in portuguese. Sorry Activations allowed have been set to 50.
Psar Gold Matrix
Ignacio Agustin Mene Franco
PSAR VOLUME MATRIX — Expert Advisor for XAUUSD PSAR VOLUME MATRIX is a scalping Expert Advisor designed exclusively for the XAU/USD (Gold) pair. It combines two of the most reliable indicators in technical analysis—the Parabolic SAR and Tick Volume—to precisely filter entries and trade only when the market presents favorable trend and liquidity conditions. The system works with pending grid stop orders, placing staggered entry levels above and below the current price. Each trade has a fixed s
80% from database analysis, 20% use brokers' data, always do not rely on brokers' data all the time. This is one of the concepts to create our database products. Concept of PenataQ EA: PenataQ EA is a fully automated trading system that operates without the need for any user input. The system employs a simple yet effective trading strategy that does not involve the use of a martingale approach. However, the most critical aspect of the system's development was determining when, why, and how it
Expert. Automatic and manual trading. Ready-made trading system based on Elliott waves and Fibonacci retracement levels . It is simple and affordable. Display of the marking of Elliott waves (main or alternative option) on the chart. Construction of horizontal levels, support and resistance lines, a channel. Superposition of Fibonacci levels on waves 1, 3, 5, A Alert system (on-screen, E-Mail, Push notifications).    visual panel for opening orders in manual trading. visual panel for setting up
THE 8 PILLARS OF STATISTICAL EDGE TRADING:  Introduction In trading, the past doesn't predict the future. But patterns embedded in time reveal the rhythm of markets waiting to repeat. This guide introduces you to the Eight Pillars of Statistical Edge Trading—a comprehensive framework that transforms historical data into actionable trading intelligence. At the heart of this system stands Historical Data. Unlike fleeting indicators or lagging signals, historical patterns reveal the seasonal heart
Magtron AI
Premananth R
Magtron AI: Multi-Layer Confirmation Trading Robot Magtron AI is a fully automated Expert Advisor built around a multi-layered confluence engine. Rather than reacting to a single signal, it waits for several independent conditions to line up before ever placing an order: combining a higher-timeframe structural filter, a trend-alignment check, and a momentum-conviction filter into one disciplined decision process. Only when its confirmation stack agrees does it arm a trade, and it manages that tr
Ksm: Smart Solution for Automated Forex Trading Ksm is a tool designed for automating Forex trading, using modern methods of time-series data analysis to work with multiple currency pairs across different timeframes. Key Features and Benefits Multi-currency support : Ksm enables trading across multiple currency pairs, helping traders adapt their strategies to various market conditions. New currency pairs can be easily added. Time-series data analysis : Utilizing advanced algorithms, Ksm analyzes
This is a fully automated and advanced Expert Advisor (EA), specifically designed for the MetaTrader 5 platform. This bot is tailored for traders who prioritize quality and high-precision setups over trade quantity. It avoids opening random trades, patiently waiting and filtering market conditions through strict criteria to ensure the market trend aligns with the strategy with the highest possible probability of success. The EA stands out for its exceptional ability to snipe trades, entering th
Buyers of this product also purchase
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
Waka Waka EA MT5
Valeriia Mishchenko
4.13 (40)
8+ years of live track record with +12,000% account growth: Live performance MT 4 version can be found here Waka Waka is the advanced grid system which already works on real accounts for years. Instead of fitting the system to reflect historical data (like most people do) it was designed to exploit existing market inefficiencies. Therefore it is not a simple "hit and miss" system which only survives by using grid. Instead it uses real market mechanics to its advantage to make profit Supported cu
GoldFlow Pro1
Minh Tu Nguyen
5 (2)
An order-flow Expert Advisor built for one market only: XAUUSD. GoldFlow Pro reads the live GOLD market tick by tick — price movement, momentum, and liquidity behavior — and acts only when its conditions are met. Precise entries. Defined risk. Disciplined management on every position. MQL5 Signal — Live Monitoring https://www.mql5.com/en/signals/2384830 Introducing GoldFlow Pro GoldFlow Pro was developed around a single idea: instead of reacting to lagging indicators, read what the market is act
Syna
William Brandon Autry
4.87 (30)
Syna 7 - The AI Trading Operator That Stays With the Trade. Most trading systems make an entry decision and then fall back to fixed rules. Syna 7 remains involved. Syna is an autonomous AI trader, trading assistant, and position-management system designed to operate from analysis through exit. It can analyze current market conditions, evaluate news and volatility, remember the original trade reasoning, monitor open exposure, and continue reassessing the position as conditions change. Trading do
Perceptrader AI MT5
Valeriia Mishchenko
4.67 (6)
80 consecutive months in profit with low drawdown: Live performance MT4 version can be found here Perceptrader AI is a cutting-edge grid trading system that leverages the power of Artificial Intelligence, utilizing Deep Learning algorithms and Artificial Neural Networks (ANN) to analyze large amounts of market data at high speed and detect high-potential trading opportunities to exploit. Supported currency pairs: NZDUSD, USDCAD, AUDNZD, AUDCAD, NZDCAD, GBPCHF Timeframe: M5 Features: Trend , Mome
NextGen PRO
Muhammad Maaz
NextGen PRO NextGen PRO is an automated Expert Advisor designed for trading XAUUSD (Gold) on MetaTrader 5. It uses a trend-following approach with Buy Stop and Sell Stop pending orders, grid-based order placement, batch lot progression, money-based risk management, daily limits and weekend trading restrictions. Strategy The EA determines the market direction using the closed M5 candle and two moving averages. When the market is identified as an upward trend, the EA places Buy Stop orders above
Golden Pickaxe MT5
Valeriia Mishchenko
3.56 (9)
EA has high-performance live track records of different set files: Live performance MT 4 version can be found here Golden Pickaxe is a mean-reversion grid trading system that uses machine learning technology to place high-profit potential trades on the Gold market. It uses real market inefficiencies to its advantage to have an edge over the market. The EA has 5 predefined set files, which are essentially 5 different trading systems on gold . You may choose the default option (XAU Risky) or have
Night Hunter Pro MT5
Valeriia Mishchenko
3.92 (37)
EA has a live track record with many months of stable trading with  low drawdown: All Pairs 9 Pairs Night Hunter Pro is the advanced scalping system which utilizes smart entry/exit algorithms with sophisticated filtering methods to identify only the safest entry points during calm periods of the market. This system is focused on a long-term stable growth. It is a professional tool developed by me years ago that is constantly updated, incorporating all the latest innovations in the trading area.
Foli Pivots MT5
John Folly Akwetey
Expert advisor trades by pivot levels, support and resistance levels based on pivot levels. Also expert advisor takes into account volatility filter, uses standard Martingale and anti-Martingale systems, drawdown protection, standard trailing stop, trading time and trading Trade Order   – direction of trading (only buy, only sell or buy and sell) Use Volatility Filter   – enabling/disabling of volatility filter using Volatility Filter   – value of volatility filter Count Of Days For Volatility F
Velora MT5
Ahmad Aan Isnain Shofwan
The Intelligent Grid EA — A Team of Smart Modules Following the 5-star success of its MT4 predecessor, Velora has been completely rebuilt for MT5 with a fundamental shift in design. Most grid EAs are one engine doing many jobs. Velora is different. Inside Velora, there is a team. Four smart modules, each with one specialty, working together so the system stays adaptive at every stage of a trade — from the moment of entry, to scaling decisions, to the exit. Meet the team: VSE — Velora Smart Entr
Scalp Master Expert Advisor is a fully automated trading system designed for scalping strategies in trending market conditions. It is built to identify short-term trading opportunities in liquid markets while maintaining a strong focus on trade quality and risk control. The EA is suitable for traders who prefer a systematic and rule-based approach without manual intervention. Recommended Pairs: XAUUSD & BTCUSD It performs best on instruments with tight spreads and strong liquidity, including: XA
PivotStorm
Li Yin Fang
PivotStorm - Adaptive XAUUSD Market Structure Breakout EA Professional Automated Trading System for MetaTrader 5 PivotStorm is a professional XAUUSD Expert Advisor designed for traders who prefer structured breakout trading based on confirmed market levels. The system combines market structure analysis, intelligent pending-order execution and multi-level risk management to provide a disciplined automated trading approach for the gold market. Unlike simple breakout robots that react to every pri
SPARTAN GOLD SNIPER AI - V7.2 ULTIMATE The All-In-One Gold Solution: Smart Scalping and Professional Swing Trading. Spartan Gold Sniper is not just an EA; it is a complete trading system designed specifically for XAUUSD (Gold). Version 7.2 introduces the Smart Adaptive Engine, making it the most flexible bot on the market for both small accounts and large Prop Firm capitals. Critical Requirements Latency: You must use a VPS with less than 20ms latency (Recommended: MQL5 Built-in VPS). Account:
CaicaiLS Pro - Advanced Pair Trading & Statistical Arbitrage (Version 9.0) The CaicaiLS Pro is a quantitative Expert Advisor designed for Long & Short operations (Pair Trading) using Statistical Arbitrage . Developed for traders seeking precision, it tracks correlation and cointegration anomalies across multiple asset pairs simultaneously, seeking performance in both mean reversion and momentum breakouts. Its advanced architecture features the introduction of Shadow Execution technology. The mat
Neurolite EA gbpusd
Aliaksandr Salauyou
The Neurolite Expert Advisor offers trade decisions based on a neural network trained using a 10-year history of real tick data. The trading is performed only on GBP/USD. Its main peculiarity is a small amount of input parameters so as to facilitate the working process of users. The Neurolite EA will fine-tune all the parameters for you. Trading Strategy The system does NOT use dangerous strategies such as averaging or martingale, but strictly adheres to the neural network instructions. Stop lo
Neurolite EA eurusd
Aliaksandr Salauyou
The Neurolite Expert Advisor offers trade decisions based on a neural network trained on 5-years of real tick data. Trading is performed only on the EUR/USD currency pair. Its main peculiarity is a small amount of input parameters so as to facilitate the working process of users. The Neurolite EA will fine-tune all the parameters for you. This Expert Advisor is based on the previously released Neurolite EA gbpusd , which was adjusted for successful trading on the EUR/USD currency pair. Trading
A scalper system only work during Asian hours. Several unique indicators to detective the price fluctuation. Dynamic TP/SL level according to market conditions. Fixed stoploss to protect the capital, very low risk of losing a lot of money. No need to obtain SET files. The parameters are the same for each currency pair. It is optimized to work on EURAUD . It is recommended to use Eagle Scalper on M15 chart. It is recommended to run it on a real ECN broker with very low spread . It is recommended
Snake EURUSD
Thurau Baerbel
Snake EURUSD Real EA is a fully automatic Forex Trading Expert Advisor. The robot can run on any pair, but the results are better on EURUSD M15. The system can run with any broker that also provides Floating Spread. Advantages The EA does not use systems like martingale, hedging, etc. The EA uses SL and Trailing Stop to make a profit. In addition, you can also set TP (EURUSD at 93 for me). Best test results with 99.0% in the backtest. It is not necessary to close the EA during the press release
BenefitEA Mt5
Vsevolod Merzlov
Benefit EA Uses only hedging accounts.     Benefit EA is a non-indicative flexible grid adviser with special entry points that provide a statistical advantage, revealed through the mathematical modeling of market patterns. The EA does not use stop loss. All trades are closed by take profit or trailing stop. It is possible to plan the lot increments. The "Time Filter" function is set according to the internal time of the terminal as per the displayed time of the instrument's server, not the oper
On Control EA MT5 V2 Game-Changing Software For The Forex Market  On Control EA was created to help traders like you maximize their income. How would you like to gain access to a world-class proprietary piece of software designed for one purpose, to improve your Forex strategy? Let’s be honest, it can be hard to understand which technical analysis & trading signals you should follow. With On Control EA, you now have a powerful tool that will enhance your Forex trading strategy & elevate your in
The adviser uses a strategy based on the use of 7 Envelopes  indicators, on each timeframe (M5, M15, M30, H1, H4) there are 7 Envelopes indicators. Trading is based on the “Price Action” strategy, the adviser searches for a simultaneous signal on 5 time frames: M5, M15, M30, H1, H4 and then opens an order. The EA uses the built-in Martingale and Averaging algorithm. The adviser uses economic news to achieve more accurate signals. Hidden Take Profit, Break Even and Trailing Stop are used. Attenti
MoneyMaker stableATM Lite is an automatic intelligent trading system for foreign exchange! Lite edition just support MetaTrader 5! The purpose of MoneyMaker stableATM Lite is to stabilize profits, not to give you the ability to get rich overnight! MoneyMaker stableATM Lite is only applicable to EUR / USD currency trading, and cannot be used for other currency exchange trading, other CFD product trading, and commodity tradingor futures commodity trading! MoneyMaker stableATM Lite is only suitabl
NorthEastWay MT5
PAVEL UDOVICHENKO
4.5 (8)
NorthEastWay MT5 it is a fully automated “pullback” trading system, which is especially effective in trading on popular “pullback” currency pairs: AUDCAD, AUDNZD, NZDCAD. The system uses the main patterns of the Forex market in trading – the return of the price after a sharp movement in any direction. Timeframe: M15 Base currency pairs: AUDNZD, NZDCAD, AUDCAD  Additional pairs: EURUSD, USDCAD, GBPUSD, EURCAD, EURGBP, GBPCAD After buying EA, be sure to write to me in private messages, i will add
Bonnitta EA MT5
Ugochukwu Mobi
3.38 (21)
Bonnitta EA  is based on Pending Position strategy ( PPS ) and a very advanced secretive trading algorithm. The strategy of  Bonnitta EA  is a combination of a secretive custom indicator, Trendlines, Support & Resistance levels ( Price Action ) and most important secretive trading algorithm mentioned above. DON'T BUY AN EA WITHOUT ANY REAL MONEY TEST OF MORE THAN 3 MONTHS, IT TOOK ME MORE THAN 100 WEEKS(MORE THAN 2 YEARS) TO TEST BONNITTA EA ON REAL MONEY AND SEE THE RESULT ON THE LINK BELOW. B
RSAS By Capitarc
Abdur Rafi Ahmad
CAPITARC`s RSAS Expert Advisor for MT5   RSAS MT5   -is a professional expert advisor used by our investment firm it is based on price action and Relative Strength Index (RSI) indicator.  This product is with dynamic overbought and oversold levels that automatically adapts to the ever changing markets, while the standard MT5 RSI maintains levels static levels and do not change. This allows the expert to adapt to the ever-changing market without the need to constantly optimize, just make sure yo
Shadow Legends MT5
Zarui Ogannisian
Shadow Legends MT5 EA.-it's a fully automated expert Advisor designed to trade EURUSD. It is based on machine learning analysis and genetic algorithms.  The Expert Advisor contains a self-adaptive market algorithm that uses price action patterns. The expert Advisor showed stable results for EURUSD in the period 2000-2021.  No dangerous money management techniques, no Martingale, no netting, scalping or hedging.  Suitable for any brokerage conditions.Test only on real accounts.Recommended broker
Golden Lucks
Godbless C Nygu
The GOLDEN LUCKS is a cutting-edge Expert Advisor that pushes the boundaries of modern trading by integrating advanced artificial intelligence with the latest trading technologies. Built on the state-of-the-art GPT-4o platform, it leverages the unparalleled power of neural networks to adapt dynamically to ever-changing market conditions. What sets this EA apart is its use of advanced discrete Fourier visualization within the ATFNet framework. This innovative feature equalizes the frequency spec
Reactor MT5   is a fully automatic Expert Advisor for   Intraday   Trading.  it is   based on  m any indicators . The Expert was tested on the whole available historical period on   EURUSD, GBPUSD, USDCAD, AUDUSD and USDJPY M15  currency pair with exceptional results. You can download the demo and test it yourself. My tests were performed with the real tick date with   99,90% accuracy , actual spread, and additional slippage. The basic strategy starts with Market order in counter trend and tren
QuantXProTrader EA
Netlux Digital Kft.
QXS PRO TRADER Expert Advisor QuantXProTrader is an Expert Advisor based on Profitable Price Action strategy. It is compatible with our QXS Trend indicator and work automatically by Trend detection on Multiple assets. Each and Everything in this EA is perfect Just you need to set input parameters. Take Profit, Stop loss, Trailing Stop, Trailing Step, Lot Size Adjust it as per your account capital and equity. Recommended TIMEFRAMES are: M15, M30 and H1  Before Installing Expert Advisor on chart
TickToker
Oxana Tambur
>>>>>>>>>>>>>> more then 90% discount ($ 3750 >>> $ 345), Special offer is valid for 3 months from the start of sales <<<<<<<< <<<<<<<< The trading robot has been trading on a real account since 2018. We will show our account to everyone who plans to buy a trading robot. To do this, contact us. TickToker is a fully automatic Expert Advisor designed for the    EUR/GBP,EUR/SGD,AUD/NZD,EUR/CHF   currency pairs.  Does not use Martingale and Grid, all trades are covered by Stop Loss and Take Profit.
More from author
MultiStrat Engine EA is based on a fundamental golden rule: every trade opened is a fully assumed trade . Without Stop Loss, no loss is ever crystallized — positions are held until the return to equilibrium ( Zero Point ) . An Expert Advisor (EA) designed to fully automate position management across all types of financial instruments (Forex, stocks, indices, commodities ). It incorporates an exceptionally rich modular architecture, combining over 28 distinct trading modes, dynamic risk manageme
Filter:
No reviews
Reply to review