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
BFG 9000 is a unique system that trades your account 100% hands-free with   live-proven algorithms . Validated in live trading for 12 months. No Grid, no Martingale. The craziest part is however the ability to   manage your own trade decisions . The built-in AI takes your trades and manages them into profit. Safe Haven BFG includes a very stable algorithm that runs on 100% autopilot. It does not use Grid and no Martingale - thus you can be very sure, that it won't destroy your account. The syst
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
Gifted FX
Michael Prescott Burney
Giftex FX Portfolio for GBPUSD H1 Giftex FX Portfolio is a professional MetaTrader 5 Expert Advisor for GBPUSD on the H1 timeframe, running on the Expert Advisor HQ universal portfolio framework. It is designed for structured automated trading on GBPUSD H1, with clear on-chart feedback for entries, exits, protections, and live performance so you can see how the EA is operating in real time. Overview Giftex FX Portfolio combines its portfolio-style strategy logic for GBPUSD with the Expert Adviso
FREE
PythonX Grid Pro - Intelligent Gold Grid Trading System LIMITED-TIME OFFER: $29,999 → $2,999 | Save $27,000 Before the Price Returns to Normal Overview XAU Grid Pro is a fully automated Expert Advisor designed specifically for XAUUSD (Gold) trading. The EA combines a structured breakout grid with advanced basket management, dynamic risk controls, and automated protection mechanisms to capitalize on gold's strong directional movements while maintaining strict trade management. Built for traders
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.
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
Volatility 75 Pro Auto
RhasPro Innovatives
Volatility 75 Pro Auto (Contact for .set files) Professional Grid + Trend Expert Advisor for Deriv Synthetic Indices Volatility 75 Pro Auto (V75 Pro) is a professional Expert Advisor (EA) designed exclusively for trading Deriv Synthetic Indices on MetaTrader 5. Unlike conventional grid systems that rely solely on averaging positions, V75 Pro combines trend analysis, multi-timeframe confirmation, and multiple technical indicators to filter low-quality market entries before executing trades. The
Gold speedster
Simon Aderinola Akinteye
Gold Speedster EA — Precision. Speed. Profitability. THE EA MYFXBOOK LINK NOW WORKING Up almost 3% in just few days. MyFxbook link :                https://www.myfxbook . com/members/CannyFX/gold-speedster/12075079 Kindly remember to clear the space just before com/ above when pasting the link in your browser. Unleash the power of intelligent automated trading with Gold Speedster , a next-generation Expert Advisor engineered exclusively for XAUUSD (Gold) . Built for traders who demand performa
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,
ENGLISH DESCRIPTION (MQL5 Standard Optimized) Product Name: Inferno Storm AI Hybrid PRO V2.52A [Subtitle: 7-Layer Quant Engine | Nested SMC Matrix | Dual-MTF Confluence] Introduction: The Masterpiece Upgrade Welcome to the absolute pinnacle of algorithmic intelligence. Inferno Storm AI Hybrid PRO V2.52A is the culmination of our "Deep Think" cognitive framework. It does not just execute trades; it evaluates the market with the precision of an elite Institutional Quant. By fusing a brutal, micros
Goal Pilot
Pablo Eugenio Licon Nenclares
Goal Pilot MT5 Overview Goal Pilot is a professional Expert Advisor (EA) for MetaTrader 5 designed to help traders pursue a predefined income target while applying disciplined risk management. Unlike traditional Expert Advisors that focus solely on generating trading signals, Income Trading Bot combines automated trade execution with capital management, risk control, and progress tracking toward a user-defined financial objective. The EA continuously monitors market conditions, evaluates trading
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.69 (61)
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
Xauusd PropFirm
Cristiano Rodrigo Olegini
Built for FTMO Challenges, Funded Accounts and Personal Capital Velas Forex was developed for traders seeking consistency and disciplined risk management, whether trading FTMO Challenges , other prop firms , funded accounts , or personal capital . Its risk management system is designed to pursue consistent capital growth while prioritizing account preservation and respecting the risk limits defined by the trader. Ideal for: FTMO Challenges (any account size) Other Prop Firms Funded Accou
Golden Tree
Arthur Hatchiguian
4.11 (18)
Golden Tree is an aggressive multi-cycle scalper designed for Gold (XAUUSD) M1 . Each cycle is independent . It uses a sequence of orders and has its own TP and SL . It uses a martingale system. This EA uses strong recurrences of the past to take positions and achieve a high success rate . It is very important to read the blog post before you start. The minimum deposit is $100 for a 1:500 leverage. An autolot system is included . I recommend a 1:500 ECN account with a low spread and a fast VPS
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
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
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
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
RSI Cortex Ai
Michael Prescott Burney
RSI Cortex AI for MT5 RSI Cortex AI is a MetaTrader 5 indicator designed to help traders analyze momentum using a multi-factor ranking model instead of relying only on a fixed RSI threshold approach. It combines momentum features, directional ranking, confidence scoring, and adaptive filtering into a clean TradingView-style workspace for chart-based analysis. What the indicator does RSI Cortex AI evaluates momentum using a broader feature set than a standard RSI line. It is designed to help trad
FREE
Buyers of this product also purchase
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
Big Forex Players MT5
MQL TOOLS SL
4.76 (139)
We proudly present our cutting-edge robot, the  Big Forex Players EA  designed to maximize your trading potential, minimize emotional trading, and make smarter decisions powered by cutting-edge technology. The whole system in this EA took us many months to build, and then we spent a lot of time testing it. This unique EA includes three distinct strategies that can be used independently or in together. The robot receives the positions of the  biggest Banks  (positions are sent from our database t
Syna
William Brandon Autry
5 (27)
Syna - The AI That Stays With the Trade Most trading systems stop thinking after they enter. Syna doesn't. Most Expert Advisors analyze the market, place an order, and wait for either the stop loss or take profit to be reached. Syna was designed differently. It analyzes the opportunity before entry, remembers why the trade was opened, watches news and changing market conditions, manages positions as they develop, and can coordinate intelligence across multiple terminals, accounts, brokers, and
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
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
Perceptrader AI MT5
Valeriia Mishchenko
4.67 (6)
80 consecutive months in profit with low drawdown: Live performance MT4 version can be found here Perceptrader AI is a cutting-edge grid trading system that leverages the power of Artificial Intelligence, utilizing Deep Learning algorithms and Artificial Neural Networks (ANN) to analyze large amounts of market data at high speed and detect high-potential trading opportunities to exploit. Supported currency pairs: NZDUSD, USDCAD, AUDNZD, AUDCAD, NZDCAD, GBPCHF Timeframe: M5 Features: Trend , Mome
Famous EA
Ugochukwu Mobi
Famous EA   is a high-performance Expert Advisor built for serious traders who expect consistent results and intelligent trade execution. It merges price action, trendline dynamics, and a proprietary filter algorithm to spot high-probability entries and exits with discipline. Strategy Overview Famous EA operates using: Custom non-repainting indicator logic Dynamic trendline / support-resistance detection Multi-timeframe price action analysis Proprietary noise-filtering algorithm This blend lets
AI Nodiurnal EA MT5
Ugochukwu Mobi
5 (2)
AI Nodiurnal EA is an advanced Forex robot that leverages cutting-edge machine learning technology to optimize trading strategies and enhance performance in the dynamic foreign exchange market. The term "Nodiurnal" reflects its ability to adapt and operate not only during the typical diurnal (daytime) trading hours but also during non-standard periods, providing a continuous and adaptive approach to forex trading. Settings : Default settings on Currency Pair :  EURUSD H1 . Special setting is onl
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
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.
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
YZH AlgoCore
Yusuf Ziya Hazeral
5 (1)
YZH AlgoCore — One Robot, Six Instruments Smart Algorithms. Disciplined Execution. There are thousands of "gold robots" on the market. How many of them can run the same engine on XAUUSD, EURUSD, GBPUSD, GBPJPY, USDJPY and BTCUSD — with zero configuration changes? YZH AlgoCore is now a true multi-symbol system. Attach it to a chart and it simply knows: the robot detects the symbol automatically and loads its dedicated built-in profile. Timeframes, indicator configuration, scaling behavior — ever
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:
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
Gold Catalyst EA MT5
Malek Ammar Mohammad Alahmer
Advanced Automated Gold Trading System Gold Catalyst EA MT5 is a fully automated trading solution exclusively optimized for XAU/USD (Gold) . By combining trend-following methods , price action confirmations , and dynamic risk management , this EA has demonstrated stable, reliable performance over more than 2.5 years of continuous forward testing under real market conditions — and it is still running on a VPS to this day. Behind the algorithm is a scientist with 15 years of market experience : ob
Launch offer. The price rises step by step as the number of sales grows. Every purchase includes all future updates through MQL5 Market. Mercaria Unicorn is an adaptive grid trading system for Gold (XAUUSD) on MetaTrader 5, developed by practicing traders for all experience levels. Overview Mercaria Unicorn is an adaptive trading system for Gold (XAUUSD) and other CFD instruments. Unlike standard grid robots with fixed parameters, it automatically adjusts the number of levels, the lot size, and
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
Traders Toolbox
Jason Kisogloo
3 (2)
Traders Toolbox Premium is an All-in-One Tool  created based on extensive training on common trading strategies in order to automate those strategies and calculations . (designed and programmed by Jason Kisogloo) Fe atures: 19 Individual Signals - Each one of these signals can be biased in a neural network style configuration to constitute the final / overall result. Each signal has its own settings to be customised or optimised if needed. Comprehensive On Screen Display - Six snap away Panels
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
Win43 Scalper
Eadvisors Software Inc.
O novo s43 Scalper para Mini-Índice (WIN-IND) faz operações de curto prazo no timeframe 1min buscando pequenas variações do mercado, utiliza nova tecnologia de trade, os resultados no intraday são íncríveis, confira:      Após a instalação adicione no gráfico dos instrumentos win para visualizar os resultados no backteste. Recomendamos o timeframe de 1min.
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