• Overview
  • Reviews
  • Comments (1)

Forex GPT MA

This advisor independently creates a neural network and is trained during operation or when launched in the strategy tester; the network is created from the average price values (based on the Moving Average indicator).

See my profile for my other products.

The advisor does not use third-party libraries, does not connect anything, all calculations occur inside the advisor, with the ability to save neural network data and all its parameters when training, restarting or transferring to another terminal using files created during its operation!

1. Basic principle of operation.

2. Construction of a neural network.

3. Checking neural network options.

4. Block for opening and calculating virtual orders.

5. Filter for analyzing and selecting virtual orders.

6. Description of input parameters.


1. Basic operating principle.

This advisor uses and creates a neural network in its work using the average price values. For the average price we use the Moving Average indicator. On each new bar, the advisor builds a grid of cells based on past data, checking whether the cell contains an average price. To build a network, we use the x and y coordinate axis; when the average price is in a cell, it writes - 1 into it; if there is no price, then - 0. In this way, a variant of the network is formed, and this happens on each new bar, then the adviser checks it in its neural network Is there such a location option and if not, then it adds this option to the network and gives a signal to open virtual orders, and if it already exists, then the virtual order calculation block begins to open virtual orders and track price changes and records either profit or loss for each option which is on the net. Thus, the advisor virtually calculates each option and accumulates the history of transactions for each option of the neural network.

Next, virtual orders are filtered by 3 filters and, when the criteria are reached and signals from the network are available, they are placed into trading. When this option is enabled, the advisor can save all work data to files for learning from history or for transferring to another terminal.


2. Construction of a neural network.

To understand how the advisor builds its neural network, let’s look at picture No. 1 https://c.mql5.com/31/1112/forex-gpt-ma-screen-2118.jpg :

So we see a price chart with the Moving Average indicator with the value period=2 and a lined grid (red lines) of network cells. Along the X axis we take bars, which can be used in steps or each bar, in the figure step=4 is used. Along the Y axis we take values from the opening price of the current bar, build a grid upward by adding delta, and downward by subtracting delta.

It turns out like this: the advisor looks at the current bar and if there are values of the Moving Average indicator in the cell, then the advisor writes 1 to this cell, if there is no value of the Moving Average indicator there, then writes 0.

The construction of the network proceeds from the upper left cell from left to right down row by line, when the advisor option Filesave=true is enabled, the data of the neural network is written to the file row by row, each line in the file is a version of the network rectified into one line in the order of its construction - the upper left cell from left to right down picture No. 2 https://c.mql5.com/31/1112/forex-gpt-ma-screen-3578.png .

In this figure, the contents of the *_neural.csv file stores variants of the neural network; each line is 1 variant of the neural network with values 0 and 1.

In this case, this is the formation of a network x=4 y=11 and delta=70, to see visually you need to break the 1st line by x=4 y=11 – picture No. 3: https://c.mql5.com/31/ 1112/forex-gpt-ma-screen-6086.png

The same can be seen in the enabled information panel mode Enable panel=true

This example clearly shows how a network is formed from x=4 y=11 and step=1 – picture No. 4: https://c.mql5.com/31/1112/forex-gpt-ma-screen-1840.png

Bars are formed like this from right to left 0,1,2,3 and on the network the right column in the middle costs 1, then the second column in the middle also costs 1 and in the 3rd column 1 costs higher than the 1 that were before, because the price there is higher than them and in the left column 1 is even lower than those units since the price there was lower than those values.

This is how a neural network is formed, which is stored as an array of data in the advisor’s memory and, with the Filesave=true option enabled, is uploaded every Monday to the MQL4/files/ files when trading and when testing in tester/files/.


3. Checking neural network options.

After 1 variant of the neural network has been formed, the advisor monitors the new network variant on each new bar, if it differs from what already exists, the advisor adds it to its database while opening virtual orders in both directions, thus the advisor tracks both sell and buy for each network option, and then, when analyzing which sell or buy option will have a good rating, he will trade. At each bar, the advisor checks, as if building a network, and looks at how the indicator is located there and, in accordance with this, makes a decision; if there is no such option, then it adds, if there is, it opens virtual orders. This continues while the advisor is working.


4. Block for opening and calculating virtual orders.

The advisor implements a mechanism for opening and analyzing already open virtual orders. Using arrays of variables, the advisor tracks signals from the neural network block and, upon receipt, begins to monitor how the price changes with each bar, using the values of the 1st bar open, high, low, close. Taking into account the direction of trade, the block calculates the profit of each order and calculates each network option. The calculations use the values of maximum profit and minimum for drawdown, profit factor, profit and loss, and the number of orders for each network option. Thus, if there are 20 options in the neural network, then in the block of virtual orders there will be 20 options for the variables SL, TP, PF, DD, ordercount for sell and the same values for buy. All these values are stored in the EA’s memory as an array of data; when the Filesave=true option is enabled, the EA uploads these values to the following files: MQL4/files/ when trading and when testing in tester/files/:

*_buy_d1_v1.csv, *_buy_d1_v2.csv and their copies just in case.

*_sell_d1_v1.csv, *_ sell _d1_v2.csv and their copies just in case.

Each line is the values of SL, TP, PF, DD, ordercount for one network option. (see picture picture No. 5: https://c.mql5.com/31/1112/forex-gpt-ma-screen-3958.png )

*_data.csv – information about the upload date, the number of network options and how much profit by filters is written here, the overall balance. Using this file, we are guided from what date to what date the adviser has accumulated history for restarting or when transferring after training on history.


5. Filter for analyzing and selecting virtual orders.

All network options are considered virtual orders. Despite the fact that each network option keeps statistics on two directions of trade at once, both buy and sell. All values can be good and bad, unprofitable and positive; to find the best options, a filter is made that selects the best from all values according to a certain criterion. 3 types of filtering are implemented:

The following calculations are used for filters:

Filtr1 - By maximum profit.

Filtr2 - By maximum profit*profit factor.

Filtr3 - By maximum profit*profit factor*number of orders.

Each filter can be turned on and off; when the filters are turned on, it is possible to open 3 orders at once.


6. Input parameters

Magicnumber - number to identify your orders;

Lot - Lot size;

On/off MM - enable or disable money management;

Risk % - Percentage of the deposit for MM;

Enable Panel - Enable the information panel;

panel fon Color - Background color of the information panel;

panel text Color - Information panel text color;

breakeven on/off - enable breakeven;

breakeven distance - distance to switch on for transferring SL to +;

breakeven pips - how many points to set SL to +;

ON or OFF Trailing - enable trailing stop;

MinProfit for Trailing - distance for enabling the transfer of SL to +;

TrailingStop - how many points to set SL to +;

TrailingStep - how many points to move SL to +;

Filesave - When enabled, the advisor will save all parameters to files in *.scv format - when testing, in the terminal folder tester/files/folder with advisor parameters/filename*.scv. When trading in the MQL4 terminal folder/Files/ folder with advisor parameters/filename*.scv

Filename - file names for saving information: Filename_buy.csv, Filename_buy_copy.scv, Filename_sell.csv, Filename_sell_copy.scv, Filename_data.csv, Filename_data_copy.scv, Filename _neural .csv, Filename _neural _copy.scv;

PF - minimum profit factor value for filtering virtual orders;

MA - period of the Moving Average indicator for determining the neural network;

SL* - Stop Loss value - 16 calculation options;

TP* - Take Profit value - 16 calculation options;

k_sl_tp - coefficient for multiplying SL TP values;

delta - range of price values in points to form a network along the Y axis;

step - step in bars to form a network along the X axis;

Input net_x - number of cells along the X axis;

Input net_y - number of cells along the Y axis;

profittestmax - minimum profit for virtual orders to start opening real orders;

dd_max - maximum drawdown for virtual orders, more than which will not be filtered for selection for real trading;

NumberOfTry - number of attempts to open and modify orders;

Slippage - slippage;


Result:

After the virtual orders have been filtered, there is another option: profittestmax, where the profit is indicated in the deposit currency, for example it costs 50, which means real trading will begin only when the profit of virtual orders for the network options exceeds these values.

It turns out that the advisor seems to be optimizing the parameters himself, calculating all the SL TP options and selecting the best options from them and then toruget based on them.

When the Filesave=true option is enabled, files are written once a week - on Monday morning.

If you ask why the network consists only of a maximum of x=4 and y=13, then the answer is: the larger the size of the network, the more options it has that will be less repeated in history and therefore there will be little statistics on them, this also increases resources and time computer operation for searching and training the network, and there is another important parameter: the possibility of storing variables is also not unlimited and is limited by the capabilities of the MQL4 programming language. With huge amounts of testing and optimization, the maximum parameters were left exactly x=4 and y=13.


Recommended products
Magic Grid
Aliaksandr Charkes
4.5 (22)
Magic Grid is an indicator-free advisor that uses a grid strategy. The strategy is based on automatic reopening of grid pending orders, after closing their market positions (by Take-Profit, Stop-Loss or manually). Pending orders are placed with a specified step from the initial prices, which can be entered manually or generated automatically ( one time at the beginning of the trade ). The robot can trade on any time frame, on any currency pair, on several currency pairs, and on any number of di
FREE
The MelBar HedgeScalper FinTech RoboTrader MAXIMUM LOTSIZE : 100 Lots (US$10,000,000) per TRADE/POSITION FULLY TRIED, TESTED, PROVEN & VERIFIED ON A REAL LIVE TRADING ACCOUNT! TRY OUT THE DEMO! The Experienced Trader & Global Money Manager Version. 89% Trade Winning Percentage. 32.679% Profit Gain or ROI in 2 Trading Days. Profit Factor 3.59 Average Trade Length 1h 22m. The MelBar HedgeScalper FinTech RoboTrader is easy to use. Has the Advantage of Retiring Unnecessary "Debt
| Fully-automated Smart Money Concept (ICT) inspired trading solution with multi-strategy capabilities | Built by a grid trader >> for grid traders.  This is MT4 version, click  here  for  Blue CARA MT5  (settings and logics are same in both versions)     Real monitoring signal  -->  Cara Gold Intro Blue CARA EA   ('CARA') - short for  C omprehensive  A lgorithmic R esponsive A dvisor is a next-gen  multi-currency    multi-timeframe  EA base on the widely known (and perhapse most popular) Inn
MMM Zig Zag Strategy: The Expert Advisors uses its built-in Zig Zag indicator to determine the prices trends and calculates the signal to decide to open buy or sell positions. It sends an order, closes or moves the Trailing Stop loss position as the indicator works. You can define the time period of each day of the week the EA should not trade (the bad time to trade). Usually the period of day when the impact news are published. General Inputs: Closes orders with any profit of value (currency):
GMMA Trade X is an EA based on GMMA. GMMA parameters such as MovingAveragePeriod1-24, MovingAverageMAShift1-24, MovingAverageShift1-24 and CandlestickShift1-24 can be adjusted. GMMA Trade X applies BTN TECHNOLOGY's state-of-the-art intelligent technology to help you create optimal results for your trades. May your dreams come true through GMMA Trade X. Good luck. = == == Inquiries = == == E-Mail:support@btntechfx.com
Forest
Vadim Podoprigora
Forest is a Trend Expert Advisor based on the analysis of a unique mathematical model of trend lines, which allows you to determine the trend movement. The Expert Advisor is most suitable for the currency pair "USDCHF" on period "H1". The EA can work on any type of accounts, and with any brokers. The EA uses mathematical analysis to open trades and applies loss control to open trades. At its core, the EA does not use any risky systems with the increase in the volume or increase in the number of
TropangFX v1
Jordanilo Sarili
PROMO: SPEND MORE TIME WITH YOUR FAMILY. ENJOY LIFE… DO NOTHING. We would like to share our coding skills to fellow traders and most especially to people from all walks of life to have the opportunity to trade or invest using auto-trading way to provide other source of income while letting the robot and your money works for you.  Recommendations: Timeframe:   H1 (Any Timeframe) Supported currency pairs:   EURUSD , EURCHF,   USDCAD, AUDCAD, EURAUD and many more except *** JPY*** Pairs ...
Forex Fibonacci
Yuriy Kuzmin
4.43 (7)
After purchasing, you can request and receive any two of my products for free! После покупки вы можете запросить и получить два любых моих продукта бесплатно! The trading robot is designed for trading in the Forex market. Safety in trading: constant stop loss, take profit, protection from increased spread. The advantage of the advisor is trading Money Management (money management system) automatic lot calculation based on the size of your deposit, automatic installation and movement of Fibona
JBSar EA Robot
Jordanilo Sarili
PROMO: SPEND MORE TIME WITH YOUR FAMILY. ENJOY LIFE… DO NOTHING. We would like to share our coding skills to fellow traders and most especially to people from all walks of life to have the opportunity to trade or invest using auto-trading way to provide other source of income while letting the robot and your money works for you.  The trade strategy is based on Averaging and uses a little bit combination of martingale and grid strategy. Methodology   – Trading entails technical analysis with m
Price 177 is set for a limited time then price 315 The uniqueness of this expert is that he uses one common set. for most Expert Advisors, this is not applicable and will not work because most Expert Advisors have either sets that you can download yourself or embedded in the code for each currency pair. This Expert Advisor uses only 1 set for all 20 currency pairs. the adviser can work with a small deposit starting from $50. I differ from many developers in that I continue. improve yo
H4 GBPUSD Trend Scalper is a trend signal scalper The EA trades according to the trend strategy using original built-in indicator for opening and closing orders. The external inputs for limiting trading on Fridays and Mondays are available. The purpose of the strategy is to use the current trend with the most benefit. According to the results of testing and working on demo and real accounts, the best results achieved by using the Н4 timeframe on the GBP/USD pair Works on MetaTrader 4 Build 971+
EA KOGORO TREND PROFITABLE HIGHER, FLEXIBLE AND SAFER EA KOGORO is a robot that operates on the most basic principle of the market: "Trend is Friend" combined with the improved Martingale principle with many times more safety than conventional Martingale. - EA KOGORO is a fully automatic EA robot for established pairs. - The principle of order balancing, low DD protects accounts better for high profits. - Opening and closing orders is really flexible. - Safer, high profit. - Manage
Forex GPT Full
Evgeniy Kuzevanov
Этот советник расширенная версия Forex GPT MA  который самостоятельно создает  сразу 4  нейронных сети  и обучается во время работы или при запуске в тестере стратегий, сеть  создается из значений средней цены (на основе индикатора Moving Average). Другие мои продукты смотрите тут . Советник не использует сторонних библиотек, ни чего не подключает, все расчеты происходят внутри советника, с возможностью сохранения данных нейронной сети и всех его параметров при обучении, перезапуске или переносе
торговая система с риском 1% чем больше денег на счете тем больше лот но риск 1% Начальный депозит 50.00 Спред 10 Чистая прибыль 6.71 Общая прибыль 51.97 Общий убыток -45.26 Прибыльность 1.15 Матожидание выигрыша 0.02 Абсолютная просадка 26.79 Максимальная просадка 29.21 (55.47%) Относительная просадка 55.47% (29.21) Всего сделок 427 Короткие позиции (% выигравших) 219 (72.60%) Длинные позиции (% выигравших) 208 (72.12%) Прибыльные сделки (% от всех) 309 (72.37%) Убыточные сделки (%
Ilanis
Mikhail Sergeev
4.61 (28)
Ilanis is and Expert Advisor for stock trading, it can be used for trading on Forex and other markets, including commodities, metals and index markets. To determine the market entry, the EA uses the modern and ultra-light adaptive indicator FourAverage. Principle of position maintaining is similar to that of the popular Forex robot Ilan, using averaging. But unlike Ilan, Ilanis uses an accurate entry into the market. The robot pays a lot of attention to position control, if the price goes in the
MavericksProPlus
Langtha Prosanta Daudung
The  MaverickProPlus  is a fully automated EA design for trading EURUSD pair. It is design to trade along the trend and also trade during reversal. It uses adaptive grid strategy. In adaptive grid strategy the distance between the trade is not fixed, the entry of next trade is base on most favorable market condition to close the trade in profit. So the risk associated with normal  grid/Martingale  strategy is considerably reduced by adopting adaptive grid distance strategy.  Back tested for 5 y
Dr Trade Pro MT4
Julia Lopez
5 (3)
Introducing Dr Trade Pro, a meticulously designed EA crafted for intelligent and consistent trading. Our expert advisor relies on precision, utilizing trend recognition and accurate market analysis to execute trades seamlessly. Dr Trade Pro is equipped with a strategic backup plan for each trade, emphasizing profitability while minimizing potential losses. What sets Dr Trade Pro apart is its adaptability to diverse market conditions, making it resilient to news and market volatility – a crucial
PipFinite EA Breakout EDGE
Karlo Wilson Vendiola
5 (4)
The Official Automated Version of the Reliable Indicator PipFinite Breakout EDGE EA Breakout EDGE takes the signal of PipFinite Breakout EDGE indicator and manages the trade for you. Because of numerous financial instruments to consider, many traders want the signals to be fully automated. The EA will make sure all your trades are executed from entry to exit. Saving you time and effort while maximizing your profits. The Edge of Automation Effortless price action trading is now possible
Gyroscopes
Nadiya Mirosh
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 mo
Boster
Langtha Prosanta Daudung
The  Boster  is a fully automated EA design for trading EURUSD pair. It is design to trade along the trend and also trade during reversal. It uses adaptive grid strategy. In adaptive grid strategy the distance between the trade is not fixed, the entry of next trade is base on most favourable market condition to close the trade in profit. So the risk associated with normal  grid/Martingale  strategy is considerably reduced by adopting adaptive grid distance strategy.  Back tested for 10 years (20
<Basic logic > The Golden attacker Super is designed to follow the trend. The entry is made following market big trend and if the order was in the wrong directions, the grid order is placed. However Grid order is also follow the trend to reduce the draw down. Grid order is placed in the same direction of the Trend. There is no tp/sl , instead if the market trend changes, the order is closed with opposite signal. <The best pair and time frame> XAUUSD M5 <Myfxbool> Check here <Setfile>
GridMasterFx
Sergey Kruglov
GridMasterFx is an innovative tool for automated forex trading, which is based on a combination of a grid strategy and a unique trend calculation algorithm using the Moving Average indicator. This strategy allows the Expert Advisor to open and close positions on time, use the analysis of the current trend and instantly respond to market changes. GridMasterFx Expert Advisor is an excellent choice for successful automation of your forex trading process. It easily adapts to various market condit
This scanner is a tool used to support trading with the Ichimoku method. Its basic features are: 10 trading setups implemented in accordance with the Ichimoku technique, the possibility of simultaneous scanning, all financial instruments available on the platform, the possibility of simultaneous scanning, in all timeframes available on the platform, two trading modes available: Manual and AutoTrading, the ability to open in Manual mode from the level of the chart, the ability to determine the si
Magic EA MT4
Kyra Nickaline Watson-gordon
3 (1)
Magic EA is an Expert Advisor based on Scalping, Elliot Waves and with filters such as RSI, Stochastic and 3 other strategies managed and decided with the robot smartly. Large number of inputs and settings are tested and optimized and embedded in the program thus inputs are limited and very simple. Using EA doesn't need any professional information or Forex Trading Knowledge. EA can trade on all symbols and all time frames, using special and unique strategies developed by the author. The EA
Black Out EA
Jason Thato Hartley
Thank you for visiting us. We would like to introduce our new BLACK OUT EA which comes along with a moving average indicator for better trading This EA open and closes trades for you, no need to stress yourself. You can trade on any broker using any time frame . there are no restrictions!! You can easily increase your Lot size on the EA settings Backtest was done for two months. stay tuned for more !!!
The Infinity Expert Advisor is a scalper. When the resistance and support levels are broken, trades are opened in the direction of the price movement. Open positions are managed by several algorithms based on the current market situation (fixed stop loss and take profit, trailing stop, holding positions in case of trend indication, etc.). Requirements for the broker The EA is sensitive to spread, slippages and execution quality. It is strongly recommended not to use the EA for currencies with
Project Gold
Zhi Cheng Guan
Dear Investor, I'm developing this amazing trading strategy, I´ve developed this trading system which enable you get tremendous profit with little risk.  My main goal when developing a system is stable growth under any market condition. All my systems have to pass strict criteria in terms of historical data. It: Trades the XAUUSD with a focus on long-term stable growth. Uses no martingale nor any grid or "recovery" methods . Every trade is protected with a stop loss. Didn´t have a losing year
BBMA Grid Combination
Kahfi Pangariduwan
5 (1)
BBMAGC   BBMAGC  is an automatic trading system with a work strategy obtained from famous BBMA indicator combine with advance grid system . This EA use dangerous trading systems like martingale and grid so please understand the risk before using this EA Time Frame: H1 Symbol: best result on EUR/USD, GBPUSD, GBPCAD VPS recommended 4/5 digit broker Min Deposit 1000$ Low spread always better Since you using Grid system, always trade using money that you are willing to lose. When you use an expert a
Vizzion
Joel Protusada
Vizzion is a fully automated scalping Expert Advisor that can be run successfully using GBPJPY currency pair at H1 timeframe. Very Important This Expert Advisor can not run with any EAs in the same account. As part of the money management plan, it calculates and monitors the Margin Level % and assumes that all open trades are created by it. If you want an Expert Advisor that trades in a daily basis, this EA is not for you because using this requires a patience to wait for a few days or weeks o
Shark Surfer is a new generation Expert Advisor applying a well-established trend-following trading. The trade period recommended by the developer is H1. The product is good both for scalping, as well as medium- and long-term trading. Shark Surfer always sets take profit and stop loss to its deals. It provides the option to force close all open trades at the specified time before the market closes, which helps avoid unnecessary gaps on Monday. Shark Surfer trades on all symbols and timeframes. I
Buyers of this product also purchase
The Gold Reaper MT4
Profalgo Limited
4.86 (29)
PROP FIRM READY! ( download  SETFILE ) LAUNCH PROMO: Only a few copies left at current price! Final price: 990$ Get 1 EA for free (for 2 trade accounts) -> contact me after purchase Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal 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 from very conservative to extreme volatil
Gold Trade Pro
Profalgo Limited
4.59 (22)
LAUNCH PROMO: Only a few copies left at current price! Final price: 990$ Get 1 EA for free (for 2 trade accounts) -> contact me after purchase Ultimate Combo Deal -> click here New live signal:   https://www.mql5.com/en/signals/2084890 Live Signal Set Prop Firm Set JOIN PUBLIC GROUP:   Click here Parameter overview Gold Trade Pro joins the club of Gold trading EA's, but with one big difference: this is a real trading strategy. What do I mean with "real trading strategy"?  As you probably
GoldPulse AI
Babak Alamdar
5 (10)
Buy not a backtest, but a real trading system:     Live Signal 1     Live Signal 2 This price is temporary for the duration of the promotion and will be raised shortly Get 1 EA for free -> contact me after purchase There are only a few copies left at the current price, the next price is -->> 1480 $ Welcome to the GoldPulse AI Hey, I'm GoldPulse AI! This is the first smartest robot that trades gold or XAU with full pairs like XAUUSD, XAUEUR, XAUGBP, XAUAUD, XAUJPY, XAUCHF, XAUSGD, and XAU
Strategy Introduction The EA will find the best entry and exit points based on the data trained by the neural network and the current market trend. It includes multiple loss exit strategies to ensure capital safety. Because the market is full of uncertainties, it is impossible to enter at the most ideal point every time. Our EA uses a unique batch entry method, adding up to 5 entry points. Even occasional misjudgments can quickly recover subsequently. Each order has a fixed stop loss (SL) and t
FT Gold Robot MT4
Marzena Maria Szmit
5 (6)
Introducing the FT Gold Robot MT4, your ultimate companion in navigating the intricate world of XAUUSD trading. Developed with precision and powered by cutting-edge algorithms, FT Gold is a forex robot meticulously crafted to optimize your trading performance with   XAUUSD pairs . With its advanced analytical capabilities,   FT Gold Robot   constantly monitors the gold market, identifying key trends, patterns, and price movements with lightning speed. The FT Gold Robot opens 5 positions every da
Quantum Emperor MT4
Bogdan Ion Puscasu
4.91 (125)
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, Quantum Trade EA or Quantum Gold Emperor for free !*** Ask in private for more det
TrendMaster FX MT4
Chen Jia Qi
5 (11)
Introducing our MT5 EA: Designed with advanced algorithms and utilizing deep learning technology, our Expert Advisor (EA) is crafted to assist you in the intricate world of forex trading. The system analyzes market behaviors and conducts transactions based on specific criteria, empowering you to engage with market trends more effectively. With the backing of nearly a decade of data, the EA employs deep learning to examine past market conditions, aiming to provide enhanced decision-making. Recom
Daytrade Pro Algo
Profalgo Limited
5 (6)
Launch Promo: Limited number of copies available at current price Final price: 990$ NEW: get 1 EA for free! (for 2 trade accounts) Ultimate Combo Deal   ->   click here LIVE RESULTS:   https://www.mql5.com/en/signals/1949810 JOIN PUBLIC GROUP:   Click here Set Files Welcome to DayTrade Pro Algo!  After years of studying the markets and programming different strategies, I have found an algorithm that has everything a good trading system needs: It is broker independent It is spread independ
One Gold MT4
Stanislav Tomilov
5 (11)
Welcome to the world of next-generation investments with our unique trading robot for gold on the MetaTrader platform! Our proprietary developments represent the pinnacle of advanced data analysis computational platforms in the world of trading. One Gold EA is a genuine smart algorithm, operating at a level beyond human traders' reach. Its unique method is based on the principles of a neuroscanner and advanced technologies in neural networks, EA is capable of analyzing historical and current dat
Dark Algo
Marco Solito
4.76 (55)
Last copy at 399$ -> next price 499$ Dark Algo  is a fully automatic Expert Advisor for Scalping Trading on Eurusd . This Expert Advisor is based on the latest generation of algorithm and is highly customizable to suit your trading needs.  If you   Buy this Expert   Advisor you can   write a feedback   at market and   get   a second EA for   Free , for More info contact me The basic strategy of this EA is built on a sophisticated algorithm  that allows it to identify and follow market trends .
Gold Garden MT4
Chen Jia Qi
5 (4)
Deep learning is reshaping gold trading, with intelligent assistants tending to trading gardens like skilled gardeners. The "Gold Garden" EA employs deep learning intelligent technology and 20 years of data training to significantly enhance strategy performance. With it, trading becomes more effortless and intelligent. Let's join hands to usher in the intelligent era and transform trading into a blissful garden. This will be your exclusive Gold Garden Steward. The MT5 version: Gold Garden MT5
Bitcoin Robot MT4
Marzena Maria Szmit
5 (8)
The Bitcoin Robot  MT4 is engineered to execute Bitcoin trades with unparalleled   efficiency and precision . Developed by a team of experienced traders and developers, our   Bitcoin Robot   employs a sophisticated algorithmic approach (price action, trend as well as two personalized indicators) to analyze market and execute trades swiftly with   M5 timeframe , ensuring that you never miss out on lucrative opportunities.   No grid, no martingale, no hedging,   EA only open one position at the sa
Hercules AI MT4
Aleksandr Chebotaev
Hello, my name is Alexander. I would like to introduce you to my new development, the Hercules AI advisor. The advisor is synthesis of Price Action Method and Artificial Intelligence technologies.  It doesn't use  any indicators. The EA works well on Gold  pair. The advisor has shown stable performance for more than 10 years. It does not use dangerous trading methods such as martingale, etc. All transactions are protected by take profit and stop loss. I tried to make the advisor as easy to insta
Boring Pips MT4
Thi Thu Ha Hoang
5 (12)
Have you ever wondered why most expert advisors are not effective in live trading, despite their perfect backtest performance? The most likely answer is Over-fitting . Many EAs are created to ‘learn’ and adapt perfectly to the available historical data, but they fail to predict the future due to a lack of generalizability in the constructed model. Some developers simply don't know about the existence of over-fitting, or they know but don't have a way to prevent it. Others exploit it as a tool to
Oracle MT4
Stanislav Tomilov
4.38 (8)
Oracle Trading Expert the Quintessence of Modern Programming Technologies Expert Oracle for MetaTrader, trading on GBPUSD and Gold, represents the quintessence of modern programming technologies. Our unique proprietary methods and developments are based on advanced machine learning concepts, making our trading expert truly one-of-a-kind. We offer cutting-edge modules and neural architecture that embody innovative advancements in financial programming. Our algorithms rely on in-depth data analysi
Diamond Titan FX MT4
Lo Thi Mai Loan
5 (1)
Launch promo: SALE 30% OFF! Only 3 sales left to buy at the current price. Next price: $1033 Free  get US30 Scalper EA and Quantum Algo EA -> contact me after purchase Live signal:  https://www.mql5.com/en/signals/2220190?source=Site+Profile+Seller Prop Signal:  https://www.mql5.com/en/signals/2223219?source=Site+Signals+Profile+From+Author MT5:  https://www.mql5.com/en/market/product/116010?source=Site+Market+Product+Page Passed Prop Challenge Trade History:  https://www.mql5.com/en/blogs/po
Quantum Algo Trading MT4
Lo Thi Mai Loan
5 (4)
The current price is the promotional price and will soon increase. The final price for the product is: $5566. There are only a few copies left at the current price, the next price is $566. Check out the live results here: Personal live signal:   [Click Here] Prop live signal:   [Click Here] $50K personal fund live signal: [Click Here] MT5 version here:   [Click Here] Payout proof and Ultimate combo deal :   [Click here] How to install | Download SetFile Welcome to Quantum Algo Trading MT5 E
AI Nodiurnal EA
Ugochukwu Mobi
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
Quantum Trade EA
Bogdan Ion Puscasu
4.71 (84)
Introducing   Quantum Trade 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, Quantum Trade   EA is designed to propel your trading journey to new heights with its innovative and dynamic breakout zone strategy. IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. ***Buy Quantum T
Bitcoin Wizard
Sugianto
3 (2)
Bitcoin Wizard is designed for trading Bitcoin by placing pending orders based on high low at certain periods by taking advantage of strong momentum.   Why Bitcoin Wizard : Bitcoin Wizard is a fully automatic trade system, trade 24/7. Does not use any risky strategies such as hedging, martingale, grid or multiple orders. Every trade is protected by a stoploss of 100 pips. Real Signal | Real Signal 2 | Setfile :  Download here  | MT5 version | Backtest Report   |   Broker Spread Comparison SET U
Big Forex Players MT4
Marzena Maria Szmit
4.65 (23)
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   (p ositions are sent from our databa
TopBottomEA
lizhi fu
4.8 (54)
TopBottomEA's advantage: the first support for small capital work EA, real trading for more than 4 years; this EA based on volatility adaptive mechanism, only one single at a time, each single with a stop-loss, an average of about 4 orders per day, holding a single length of 12 hours or so, with a limit of $ 20 principal challenge backtesting ran through more than 10 years. Every interval of three days to increase the price of $ 100, the price process: 998 --> 1098 --> 1198...... Up to the targ
Luna AI PRO
Profalgo Limited
4.67 (3)
Launch promo: Only 1 copies available at 399$ Final price: 2000$ There will be only a limited number of copies sold of this EA Luna AI is a very advanced night scalper and one of the best you can find on the market.  It was developed using years of experience in live trading with the mean-reverse strategy, and selected only the best pairs and techniques to be included in this EA. Since the EA is build upon existing technology that was developed over the years, the EA is very effective and has
Bandwagon
ADELYN CASTILLO
4.92 (26)
312% Gain on it's 25th month(Live Account) You may check Bandwagon Live Account with 2-year performance   Bandwagon 2- year  or Bandwagon V2.  *NOTE Now at 50% Discount! Get your copy now! Expect a price increase each month *WARNING : SAY NO TO PIRACY. Be careful of users who are asking to get a copy of bandwagon EA. Bandwagon can detect piracy and if your account is detected to do such things, I can't promise that the EA will still work the way it should be. Bandwagon Features: Bandwagon is
Aura White Edition
Stanislav Tomilov
4.4 (5)
Aura White Edition   is unique Expert Advisor that continues the Aura series of advisors. The Expert Advisor is based on the engine of   Aura Black Expert Advisor , but with a number of changes and author's settings for currency pairs. Innovative methods of the programme's approach to trading, and promising performance results are possible thanks to the use of modern technologies and methods. Aura White Edition is a fully automated EA designed to trade currencies only. Working pairs EURUSD, GBPU
US30 Scalper EA MT4
Lo Thi Mai Loan
5 (4)
Launch promo! Only a few copies left at 499$! Next price: 599$ Final price: 999$ Live signal:  https://www.mql5.com/en/signals/2220893?source=Site+Profile+Seller MT5:  https://www.mql5.com/en/market/product/107337?source=Site+Profile+Seller More analytics:  https://www.mql5.com/en/blogs/post/756452 For more top Expert Advisors and Indicators, visit:   https://www.mql5.com/en/users/lothimailoan/seller I am Los, please subscribe to receive more updates:   https://www.mql5.com/en/users/lothimail
Never Dies MT4
M Ardiansyah
5 (1)
Never Dies EA is a super professional EA using advanced mathematical and statistical theories. The EA analyzes multiple timeframes (Chart Timeframe and D1) to detect strongest directions and verify signals. The EA is in the category of HFT trading EAs and will not use any dangerous recovery methods such as grid, martingale, hedge, .... All trades are powered by TP/SL to control the risk of the account. Also some smart algorithms inserted inside the EA to adjust some settings based on selected sy
" Nibelung " is an advanced trading bot created for modern Forex traders. This innovative tool is a reliable assistant for anyone seeking efficient and automated trading. The bot uses pending orders as one of the main elements of its algorithm. Pending orders are placed at a certain distance from the current price and are triggered only when the price reaches a specified level. In addition, when the price moves, trailing pending orders is activated. Once the order becomes market, the bot auto
Aura Black Edition
Stanislav Tomilov
4.76 (17)
Aura Black Edition is a fully automated EA designed to trade GOLD only. Expert showed stable results on XAUUSD in 2011-2020 period. No dangerous methods of money management used, no martingale, no grid or scalp. Suitable for any broker conditions. EA trained with a multilayer perceptron Neural Network (MLP) is a class of feedforward artificial neural network (ANN). The term MLP is used ambiguously, sometimes loosely to any feedforward ANN, sometimes strictly to refer to networks composed of mult
Trade Fusion MT4
Tajammul Hussain
5 (1)
Live Signal available here:  https://www.mql5.com/en/signals/2223440   (high risk 7.5%) Dear Traders, I am thrilled to present to you our revolutionary new expert advisor, "Trade Fusion" - a cutting-edge solution that is poised to transform the realm of automated trading. Trade Fusion is the result of months of intensive research, development, and rigorous testing, combining state-of-the-art technology with the most sophisticated trading strategies to deliver an unparalleled trading experience.
More from author
Forex GPT Full
Evgeniy Kuzevanov
Этот советник расширенная версия Forex GPT MA  который самостоятельно создает  сразу 4  нейронных сети  и обучается во время работы или при запуске в тестере стратегий, сеть  создается из значений средней цены (на основе индикатора Moving Average). Другие мои продукты смотрите тут . Советник не использует сторонних библиотек, ни чего не подключает, все расчеты происходят внутри советника, с возможностью сохранения данных нейронной сети и всех его параметров при обучении, перезапуске или переносе
Filter:
No reviews
Reply to review