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.


Prodotti consigliati
Golden Wings
Thi Tra Mi Duong
EA Golden Wings is a fully automated EA designed to trade GOLD. It is based on machine learning cluster analysis and genetic algorithms. EA contains self-adaptive market algorithm, which uses price action patterns and standard trading indicators. Expert showed stable results on XAUUSD in 2015-2021 period. No dangerous methods of money management used, no martingale, no grid, scalp or hedge. Feature:  + Fully automated trading 24/5 with time filter.  + No need in a large initial deposit.  + Alway
This is an expert advisor for operations on the   Ethereum   / USD pair in 1H, with one operation at a time with SL and TP, following   Fibonacci patterns . Ether Fibe Welcome!   We are excited to present our   Expert Advisor , an innovative tool designed to optimize your operations in the financial market. This system particularly focuses on two crucial areas: The Power of   Fibonacci Fibonacci : Utilizes   Fibonacci   sequences to identify support and resistance levels, allowing for a more a
IQmovingZ
Alexander Kovalenko
This is an automatic 24-hour trading system based on the algorithm of collective behavior of adaptive automata (a kind of algorithms of self-learning of artificial intelligence) that does not require manual intervention and does not use any indicators or well-known trading methods. The principle of the EA is to remember and analyze each step. A step is a price movement for a certain number (BaseStep) of points up or down. The depth of memory (how many steps to remember and analyze) is determined
MartiX
Henry Sumariyono
This EA uses a martingale trading style. The recommended trading capital is 10,000 USD or 10,000 US Dollars, or 10,000 in the balance (in any currency). The initial lot size is 0.01 for 10,000. This EA also has trading hour restrictions based on server time (not local time). This EA also includes a fund security feature that you can flexibly configure to suit your individual risk profile and risk management. Enjoy using this EA. We hope it helps you grow your trading account. IMPORTANT! After
EA works with none of the technical indicators.   It waits for the trend and trade accordingly. No standard indicators. No grid trading. No arbitrage. No curve fitting according to back-test results No Hedge   Very low Stop Loss Ratio  Tested with 99.90% data Modelling quality. Can work with even $30 USD Recommendations : Developed for M1, EURUSD ECN Broker with 5 points Settings Spread: Need to be as low as possible. Trailing Status: trailing stop usage option Trailing stop: Pips to allow trail
Scalper Gold Reborn
Zahidin Zainal Zulkornain
Scalper Gold Reborn is an Expert Advisor designed specifically for trading gold but can use at currency too. The operation is based on opening orders using the Bolinger Band and Moving Average . Monitoring Live Signal: https://www.mql5.com/en/signals/1805669 Recommendations Timeframe : M1 Pairs : GOLD/Currencies Settings: Default Lot : Use 0.01 for every 10.000cents Leverage: 1:1000 or higher Contact me in private for more setfiles. Setup Open M1 timeframe charts for pair GOLD or currency. Atta
Gold Angel
Dmitriq Evgenoeviz Ko
The Gold Angel MT4 Expert Advisor is designed for automated gold trading on the MetaTrader 4 platform, providing traders with unique tools and strategies to achieve maximum profit. Using complex algorithms for analyzing market data, this advisor is able to identify profitable entry and exit points, which significantly reduces risks and increases the chances of successful trading. the full list for your convenience is available https://www.mql5.com/ru/users/pants-dmi/seller Gold Angel MT4 offer
Stealth Bomber EA
Stephanus Kapenangolo Enondumbo
The Stealth Bomber EA operates by way of scalping and taking swing trades on selected currency pairs. It looks for overbought and oversold zones to place sell and buy orders respectively. The minimum lot size is 0.01 and can be increased through optimization.  Recommended Timeframe: 15 Minutes Recommended Pairs: AUDUSD, AUDCAD, GBPUSD, EURJPY, EURUSD, NZDCAD, NZDUSD
Copyright(c) 2019 Superfarabi EA Is the Scalping Forex Expert Advisor for MT4 Working on Timeframes (M5) Best Pair Recomended is EU/UChf=0.4 Calculation is based of Envelopes indicator ===========Rakyat +62 =========== Hak Cipta (c) 2019 Superfarabi EA Merupakan Scalping Forex Expert Advisor untuk MT4 Berjalan pada Time Frame Kecil (M5) Pair Rekomendasi adalah EU / UChf = 0,4 Perhitungan didasarkan pada indikator Envelopes
BeiDou Trend
Xian Qin Ceng
Beidou Trend EA is a trend EA with a large profit-loss ratio. Breakout trading is a very old method. It has been widely used since Livermore in the 1900s. It has been more than 120 years. This method is always effective, especially for XAUUSD and Gold with high volatility. I have been using the breakout method to make profits on XAUUSD since the beginning of my investment career. I am familiar with this method. It is old, simple and effective. Beidou Trend EA is improved based on Rising Sun Gold
Go Solo Gold
Nguyen Hang Hai Ha
Expert Go Solo Gold is the latest generation of robots dedicated to the Gold market (XAUUSD) with improvements in algorithms to optimize performance. Signal models are built closely according to Tickdata fluctuations to find high probability and low risk opportunities. Along with Scalper strategy to follow short-term trends and quickly exit the market to preserve profits. EA is suitable for XAUUSD with strong volatility and opportunities. Users can start with a balance of $ 200 and default setti
AI-Powered Trading Intelligence Enhanced with Next-Gen Language Models Tradzor AI is a highly advanced trading Expert Advisor engineered for GBPUSD, XAUUSD, and AUDCAD. It is built with a strong focus on safety, steady performance, and long-term profitability. Unlike many EAs that depend on high-risk approaches such as grids or martingale, Tradzor AI utilizes a disciplined, precision-based scalping system powered by neural intelligence, pattern recognition, and modern AI analytics delivered thr
Trend Range EA: il meglio di due mondi (Trend + Ritorno alla media) Evoluzione del Trend King EA (5 stelle)   — collaudato su   H4   — ora con un potente motore di   mean-reversion   per fasi laterali. Approccio   per barra , robusto in entrambi i regimi. Punti chiave Doppio motore : •   Trend   — gap EMA normalizzato con ATR +   isteresi   + RSI. •   Range   —   deviazione in ATR   rispetto alla banda EMA + zona centrale RSI; conferma facoltativa (Engulfing/Inside). Amico di validazione/broker
Sonata MT4
Evgeniy Zhdan
The Expert Advisor's strategy is based on proactive forecasting of the most likely price movement. The method for determining this movement is the calculation and ratio of such factors as: short-term OHLC candlestick patterns, the direction of the microtrend, the rate of price change. Only 1 deal on one trading instrument can be opened at a time. Support:   https://www.mql5.com/en/channels/TrendHunter No hazardous trading methods are used. The Expert Advisor has minimal settings, which allow
Fitpro 10 Scalper Expert Advisor  is a automated forex trading robot designed to work on the most traded currency any pair. The strategy is based on using several MT4 indicators , each entry point is calculated using an advanced input filter based on the analysis of the movement of the price chart. Each order is secured by a fixed stop-loss while, no martingale, no grid, scalp or hedge.   Paramater •    Magic Order - is a special number that the EA assigns to its orders •    Take Profit - take p
Dark Algo
Marco Solito
4.65 (65)
Last copy at 399$ -> next price 499$ Dark Algo  is a fully automatic Expert Advisor for Scalping Trading on Eurusd and Gbpusd . 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
The Expert Advisor identifies the most probable direction of the price based on the divergence of volumes and consolidation of prices in the overbought/oversold areas. Filtering for opening trades is carried out by using a unique formula for calculating the price level - "magnet" (based on the Ichimoku indicator), where the price is highly probable to come within a few bars in the future. The EA contains a minimum of settings, which facilitates its usage. Recommended symbols: EURUSD 15m ; GBPUSD
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+
Mr Robot and source code
Luis Mariano Vazquez Marcos
I use this robot every day on my real accounts. This Forex trading robot has been developed by MRBEAST as a tool to facilitate day trading. Please note that using this robot involves certain risks and does not guarantee consistent profits in the forex market. The trading robot is based on algorithms and strategies that I have designed, which have been created using my knowledge and experience in the field of trading. However, past performance does not guarantee future results, and the Forex mark
Ict Gold Scalper
Alex Amuyunzu Raymond
5 (1)
ICTVALID EA – Smart Money Concepts Automated Trading The ICTVALID EA is a professional trading system built on Smart Money Concepts (ICT methodology) . It automatically detects and trades institutional setups, allowing you to follow market structure with precision and consistency.  Key Features Dual Trading Modes – Choose between Scalping (short-term precision entries) or Swing Trading (longer-term trends). Smart Money Logic – Incorporates Change of Character (CHoCH), Break of Structure (BoS),
RSI Intelligent is a fully automated scalping robot that uses a very efficient Relative Strength Index (RSI) breakout strategy, Probabilistic analysis with (RSI). Most effective in the price Cumulative probability of a normal distribution that occupy the bulk of the market time. Transactions happen almost every day like Scalping follow trend. A Forex robot using the Relative Strength Index (RSI) indicator combined with an artificial neural network would be an advanced automated trading system th
Golden Cheetah
Dmitriq Evgenoeviz Ko
Golden Cheetah is not just a trading robot, but an expert in short-term trading, created to work in volatile markets with low spreads. It is based on a complex multi-component algorithm that instantly analyzes market information in real time.  Next price 1399 : The price increases depending on the number of sold licenses  the full list for your convenience is available https://www.mql5.com/ru/users/pants-dmi/seller This scalper, like a hunter, opens trades according to the Price Action strate
Versione MT4: https://www.mql5.com/en/market/product/149784 Versione MT5: https://www.mql5.com/en/market/product/149785 Satoshi Nakamoto – Expert Advisor BTCUSD M5 Satoshi Nakamoto è un Expert Advisor specializzato, progettato esclusivamente per BTCUSD sul timeframe M5. Combina ingressi basati sull'RSI con uscite basate sull'ADX, oltre a solidi livelli di gestione del rischio. L'obiettivo: catturare i micro-movimenti di Bitcoin mantenendo al contempo una rigorosa protezione del conto. Caratt
GOLD MASTERY EA 1. OVERVIEW  The Gold Mastery EA is a sophisticated Expert Advisor (EA) specially designed for trading Gold (XAUUSD) based on Double Top/Bottom patterns with Neckline confirmation. This EA integrates ATR-based stop loss and takes profit levels, ensuring an optimal risk-reward ratio.  2. Unique Features   Double Top/Bottom Pattern Detection: Uses historical price action to identify strong reversal signals. Neckline Confirmation (Optional): Ensures pattern validity before placin
Benefit EA
Vsevolod Merzlov
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 operating system (can match). This function allo
AERO EA based on Adaptive Engine Range Over (AERO) trade Single Possiton with TP SL and close by signal No Marti No Grid No Hitory Reader Real Backtesting Refult strategy has backtested since 2020 - 2024 EA work on various market condition Recommendations: Minimum Deposit :$100 Pair : GBPCAD Timeframe : M1 For Better Results USE ECN/RAW/LOW SPREAD ACCOUNT Risk Warning: Before you buy AERO EA please be aware of the risks involved. Past performance is no guarantee of future profitabilit
Bfxenterprise RSI
Ricky Romadona Tri Saputra
Bfxenterprise RSI Inspired and optimized RSI indicator is the focus of this Expert Advisor (EA). Designed with the use of RSI to perform optimal transactions. Reading trends and price reversals is done by the RSI whose functions have been sorted. Version of Bfxenterprise The version with the name “Bfxenterprise” focuses on special and thorough sorting of transactions. So this version does not always make transactions, unlike the Expert Advisor version in general. This version relies on accuracy
Works to open two hedging deals, buying and selling, with a goal of each deal of 20 points With the opening of multiple cooling deals in the manner of another lot size and suspending each type of sale or purchase transaction At a profit level. Parameters: Lot1: Manual Lot Size Auto_Lot: Set true to automatically calculate optimal Lot Size based on risk preferences, Set False if you want use manual lot size. Max_Risk: Max Risk as percentage of Equity* the greater this percentage is the greater
Forex Fighter 4
Jared Matthew Bryant
1 (1)
Forex Fighter is an advanced, multicurrency system that trades following symbols:  EURJPY, GBPCHF, EURGBP, USDCAD, AUDNZD, USDJPY and AUDCAD.  The strategy is based on built in indicators which I developed myself. Forex Fighter follows unique patterns that are repetitive but very often human brain is not capable of catching them.  The decision maker here are two Neural Networks which have to agree whether or not a particular trade will be placed. The probability of repeating a pattern has to be
Gli utenti di questo prodotto hanno anche acquistato
Vortex Gold MT4
Stanislav Tomilov
5 (29)
Vortex - il vostro investimento nel futuro L'expert advisor Vortex Gold EA è stato creato appositamente per il trading sull'oro (XAU/USD) sulla piattaforma Metatrader. Costruito utilizzando indicatori proprietari e algoritmi segreti dell'autore, questo EA impiega una strategia di trading completa progettata per catturare movimenti redditizi nel mercato dell'oro. I componenti chiave della sua strategia includono indicatori classici come il CCI e l'indicatore parabolico, che lavorano insieme per
Big Forex Players MT4
MQL TOOLS SL
4.73 (44)
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
Quantum Emperor MT4
Bogdan Ion Puscasu
4.85 (171)
Presentazione       Quantum Emperor EA   , l'innovativo consulente esperto MQL5 che sta trasformando il modo in cui fai trading sulla prestigiosa coppia GBPUSD! Sviluppato da un team di trader esperti con esperienza di trading di oltre 13 anni. IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. ***Acquista Quantum Emperor EA e potresti ottenere Quantum StarMan     gratis!*** Chiedi in privato per maggiori dettagli Segn
Aura Black Edition
Stanislav Tomilov
4.6 (20)
Aura Black Edition è un EA completamente automatizzato progettato per negoziare solo ORO. L'esperto ha mostrato risultati stabili su XAUUSD nel periodo 2011-2020. Non sono stati utilizzati metodi pericolosi di gestione del denaro, nessuna martingala, nessuna griglia o scalping. Adatto a qualsiasi condizione di brokeraggio. EA addestrato con un perceptron multistrato La rete neurale (MLP) è una classe di rete neurale artificiale (ANN) feedforward. Il termine MLP è usato in modo ambiguo, a volte l
Gold Trade Pro
Profalgo Limited
4.61 (23)
Promo lancio! Sono rimaste solo poche copie a 449$! Prossimo prezzo: 599$ Prezzo finale: 999$ Ottieni 1 EA gratis (per 2 account commerciali) -> contattami dopo l'acquisto Ultimate Combo Deal   ->   click here New live signal:   https://www.mql5.com/en/signals/2084890 Live Signal high risk :  https://www.mql5.com/en/signals/2242498 Live Signal Set Prop Firm Set JOIN PUBLIC GROUP:   Click here Parameter overview Gold Trade Pro si unisce al club degli EA che commerciano oro, ma con una grand
Bitcoin Robot MT4
MQL TOOLS SL
4.64 (66)
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
AI Forex Robot MT4
MQL TOOLS SL
4.29 (17)
AI   Forex Robot - The Future of Automated Trading. AI Forex Robot is powered by a next-generation   Artificial Intelligence   system based on a hybrid LSTM Transformer neural network, specifically designed for analyzing XAUUSD, EURUSD   and BTCUSD price movements on the Forex market. The system analyzes complex market structures, adapts its strategy in   real time   and makes data-driven decisions with a high level of precision. AI Forex Robot is a modern, fully automated system powered by   ar
Aura Neuron MT4
Stanislav Tomilov
4.62 (13)
Aura Neuron è un Expert Advisor distintivo che continua la serie di sistemi di trading Aura. Sfruttando reti neurali avanzate e strategie di trading classiche all'avanguardia, Aura Neuron offre un approccio innovativo con eccellenti prestazioni potenziali. Completamente automatizzato, questo Expert Advisor è progettato per negoziare coppie di valute XAUUSD (GOLD). Ha dimostrato una stabilità costante su queste coppie dal 1999 al 2023. Il sistema evita pericolose tecniche di gestione del denaro,
Quantum King MT4
Bogdan Ion Puscasu
5 (2)
Quantum King EA: potenza intelligente, raffinata per ogni trader IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. Prezzo di lancio speciale Segnale in diretta:       CLICCA QUI Versione MT5:   CLICCA QUI Canale Quantum King:       Clicca qui ***Acquista Quantum King MT4 e potresti ottenere Quantum StarMan gratis!*** Chiedi in privato per maggiori dettagli! Regola       il tuo trading con precisione e discipli
XIRO Robot MT4
MQL TOOLS SL
5 (3)
XIRO Robot is a   professional trading system   created to operate on two of the most popular and liquid instruments on the market:   XAUUSD and GBPUSD . We combined two proven and well tested systems, enhanced them with multiple new improvements, optimizations and additional protective mechanisms, and integrated everything into one advanced and unified solution. As a result of this development process, XIRO Robot was created. Robot was designed for traders who are looking for a reliable and str
AI Prop Firms MT4
MQL TOOLS SL
5 (4)
AI Prop Firms - Intelligent Automation Built for   Prop Trading Firms . AI Prop Firms is an advanced fully automated Forex trading system powered by   Artificial Intelligence , developed specifically to operate within the strict rules and evaluation models of prop trading firms. The system is designed to trade under controlled risk conditions while   maintaining consistency , stability, and compliance with prop firm requirements. AI Prop Firms uses intelligent market analysis logic that continu
Daytrade Pro Algo
Profalgo Limited
5 (5)
Promozione lancio: Numero limitato di copie disponibili al prezzo corrente Prezzo finale: 990$ NOVITÀ: ottieni 1 EA gratis!   (per 2 account commerciali) Ultimate Combo Deal   ->   click here LIVE RESULTS:   https://www.mql5.com/en/signals/1949810 JOIN PUBLIC GROUP:   Click here Set Files Benvenuto in DayTrade Pro Algo!   Dopo anni di studio dei mercati e programmazione di diverse strategie, ho trovato un algoritmo che ha tutto ciò di cui ha bisogno un buon sistema di trading: È indipendente d
Aurum AI mt4
Leonid Arkhipov
4.94 (32)
AGGIORNAMENTO — DICEMBRE 2025 Alla fine di novembre 2024, l’Expert Advisor Aurum è stato ufficialmente messo in vendita. Da allora ha operato in condizioni reali di mercato — senza filtro news, senza protezioni aggiuntive e senza limitazioni complesse — mantenendo una stabilità costante. Live Signal Un anno completo di trading reale ha dimostrato chiaramente l’affidabilità del sistema di trading. E solo dopo questa esperienza, basandoci su dati reali e statistiche concrete, abbiamo rilasciato
Introducing the AI Neural Nexus EA A state-of-the-art Expert Advisor tailored for trading Gold (XAUUSD) and GBPUSD. This advanced system leverages the power of artificial intelligence and neural networks to identify profitable trading opportunities with a focus on safety and consistency. Unlike traditional high-risk methods, AI Neural Nexus prioritizes low-risk strategies that adapt to market fluctuations in real time, ensuring a smart trading experience. Important Information Contact us immedia
XG Gold Robot MT4
MQL TOOLS SL
4.32 (38)
The XG Gold Robot MT4 is specially designed for Gold. We decided to include this EA in our offering after   extensive testing . XG Gold Robot and works perfectly with the   XAUUSD, GOLD, XAUEUR   pairs. XG Gold Robot has been created for all traders who like to   Trade in Gold   and includes additional a function that displays   weekly Gold levels   with the minimum and maximum displayed in the panel as well as on the chart, which will help you in manual trading. It’s a strategy based on  Price
Bitcoin Robot Grid MT4
MQL TOOLS SL
5 (16)
Bitcoin Robot Grid MT4 is an intelligent trading system designed to automate BTCUSD trading using the grid trading strategy. This method takes advantage of market fluctuations by placing a structured series of buy and sell orders at predefined price levels. The robot   continuously monitors market   conditions and executes trades according to its preset parameters, allowing for consistent market engagement without the need for manual intervention. Bitcoin Robot Grid is the   perfect solution  
Vortex Turbo EA MT4
Stanislav Tomilov
5 (8)
Vortex Turbo — “Scambia la tempesta, controlla il Vortice” Vortex Turbo rappresenta la prossima fase evolutiva del trading intelligente: uno sviluppo unico che unisce un'architettura di intelligenza artificiale all'avanguardia, una logica di mercato adattiva e un controllo preciso del rischio. Basato su comprovati principi algoritmici, integra molteplici strategie in un ecosistema unificato ad alta velocità, alimentato da un nuovo livello di intelligenza predittiva. Progettato come esperto di s
Quant Blade MT4
Andrey Barinov
Quant Blade is a professional trading solution built on advanced Pattern Recognition with elements of Machine Learning and Neural Networks . It calculates future price move probabilities , displays projections directly on the chart, and trades based on them. Highlights Prop Firm Ready => advanced PropFirm risk panel with color-coded warnings and recommendations Institution-grade analytics => high quality forecasting / projections and market condition filtering No Grid, No Martingale => only one
The Infinity EA MT4
Abhimanyu Hans
3.68 (31)
Tecnologia basata sull'intelligenza artificiale con ChatGPT Turbo Infinity EA è un Expert Advisor di trading avanzato progettato per GBPUSD e XAUUSD. Si concentra su sicurezza, rendimenti costanti e redditività infinita. A differenza di molti altri EA, che si basano su strategie ad alto rischio come martingala o trading a griglia. Infinity EA impiega una strategia di scalping disciplinata e redditizia basata su reti neurali integrate su apprendimento automatico, tecnologia basata su intelligenz
HFT Pass Prop Firm MT4
Lo Thi Mai Loan
5 (26)
Vendita lampo per 24 ore - Solo $399.99 "HFT Pass Prop Firms" è un Expert Advisor (EA) specificamente progettato per partecipare alla sfida HFT, operando con la coppia US30. Per scoprire altri Expert Advisor e Indicatori di primo piano, visita: https://www.mql5.com/en/users/lothimailoan/seller Sono Los, per favore iscriviti per ricevere ulteriori aggiornamenti: https://www.mql5.com/en/users/lothimailoan/news 1/ Cos'è l'HFT? L'high-frequency trading (HFT) è un metodo di trading che utilizza
AMS Fatality Pro
Aleksandr Makarov
AMS Fatality Pro - Il vostro investimento nel futuro. L'advisor è basato sui miei indicatori proprietari. Niente IA o altre sciocchezze. È solo una combinazione di indicatori e price action. Funziona con 28 coppie di valute principali e cross, incluso l'oro. Imposta sempre Stop Loss, Take Profit e Breakeven. AMS Fatality Pro - ha superato tutti i test in tempo reale ed è stato ora avviato con un deposito molto piccolo, dimostrando il suo vantaggio sul mercato. Result more: +2000% Live Signal:  
AW Swing Trading EA
AW Trading Software Limited
5 (1)
Uno strumento avanzato per lo swing trading sui movimenti correttivi dei prezzi. Funziona sui rollback dei trend nella direzione della sua continuazione, l'entità della correzione richiesta è determinata dalla volatilità attuale dello strumento o manualmente dal trader. Dopo aver rilevato una correzione lungo il trend attuale, l'EA attende un segnale per completare la correzione e continuare il trend, dopodiché apre una posizione. Istruzioni su come funziona l'advisor ->   QUI   /  MT5 version
ORIX mt4
Leonid Arkhipov
4.67 (3)
ORIX System — un robot di trading sviluppato specificamente per la coppia di valute GBPUSD sul timeframe M5 . L’Expert Advisor si basa sull’analisi del comportamento del prezzo e degli elementi della struttura di mercato e non utilizza indicatori tecnici standard. Il robot non utilizza martingala, griglie di trading, mediazioni contro il mercato, hedging, apertura di operazioni senza stop loss, né trading ad alta frequenza o caotico. Requisiti e raccomandazioni principali Coppia di valute: GBPU
CyNera MT4
Svetlana Pawlowna Grosshans
2.71 (14)
CyNera: Il Tuo Trading, La Nostra Tecnologia Manuale e file di configurazione: contattami dopo l'acquisto per ricevere il manuale e i file di configurazione Prezzo: Il prezzo aumenta in base al numero di licenze vendute Copie disponibili: 4 Il trading dell'oro, uno degli strumenti più volatili sul mercato, richiede precisione, analisi approfondita e una solida gestione del rischio. Il CyNera Expert Advisor integra perfettamente questi elementi in un sofisticato sistema progettato per il trading
The Gold Reaper MT4
Profalgo Limited
4.59 (32)
PUNTELLO AZIENDA PRONTO!   (   scarica SETFILE   ) PROMOZIONE LANCIO: Sono rimaste solo poche copie al prezzo attuale! Prezzo finale: 990$ Ottieni 1 EA gratis (per 2 account commerciali) -> contattami dopo l'acquisto Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal Benvenuti al Mietitore d'Oro! Basato sul Goldtrade Pro di grande successo, questo EA è stato progettato per funzionare su più intervalli di tempo contemporaneamente e ha la possibilità di impostare
Btcusd Grid
Ahmad Aan Isnain Shofwan
1 (1)
BTCUSD GRID EA è un programma automatizzato progettato per utilizzare la strategia di grid trading BTCUSD GRID EA è molto utile sia per i principianti che per i trader esperti.   Sebbene esistano altri tipi di bot di trading che puoi utilizzare, la natura logica della strategia di grid trading rende facile per i bot di trading di criptovalute eseguire scambi automatizzati senza problemi.   BTCUSD GRID EA è la migliore piattaforma in assoluto da utilizzare se stai cercando di provare un bot di t
BB Return mt4
Leonid Arkhipov
5 (1)
BB Return — un Expert Advisor (EA) per il trading dell’oro (XAUUSD). Questa idea di trading è stata utilizzata in precedenza da me nel trading manuale . Il cuore della strategia è il ritorno del prezzo all’interno del range delle Bollinger Bands , ma non in modo meccanico né a ogni contatto. Nel mercato dell’oro le bande da sole non sono sufficienti, per questo l’EA utilizza filtri aggiuntivi che eliminano condizioni di mercato deboli o non operative. Le operazioni vengono aperte solo quando la
SouthEast
Sugianto
5 (11)
SouthEast is an expert advisor developed from my experience in manual trading that has been automated. SouthEast is specifically designed to generate maximum profits with small deposits by prioritizing the security of your funds. Why SouthEast? SouthEast does not require complicated settings and is easy to use because user only need to upload a set file that is already available. Currently there are set files for 20 fx pairs. The best GRID EA with the ability to control risks. I will share my
Greedy Golden MT4
Mihails Babuskins
4.8 (5)
Recommended:  it's better to  use in accounts with lower swap or swap-free accounts. SEE AND COMPARE WITH OTHER EA's , Real monitoring signals link on my profile. Contact me after payment to send you the user manual PDF file See the real monitoring signal in my profile. Use only on gold and on the  BUY direction. Trading gold is attractive to many traders due to the high volatility and depth of the market. Should we invest in gold or just scalp it? Answering this question is a big challenge for
Ranger EA
Ryan Brown
4.86 (7)
The Ranger EA has a very long forward track record of 12 months! The EA also has a long backtest history of 10+ years using 99.90% modeling quality! Ranger EA V5 Backtesting data shows no losing months in 10 years! Projected monthly profit of 2.5-10% a month (default settings) Trades every week Trades the GBPCAD & AUDCAD like a pro. Uses  a corrective trading technique   to turn losing trades into winners Makes a profit every month Finds the best places to range trade the market Trades better t
Altri dall’autore
Forex GPT Full
Evgeniy Kuzevanov
5 (1)
Этот советник расширенная версия Forex GPT MA  который самостоятельно создает сразу 4 нейронных сети и обучается во время работы или при запуске в тестере стратегий, сеть  создается из значений средней цены (на основе индикатора Moving Average). Другие мои продукты смотрите тут . Советник не использует сторонних библиотек, ни чего не подключает, все расчеты происходят внутри советника, с возможностью сохранения данных нейронной сети и всех его параметров при обучении, перезапуске или переносе на
Filtro:
Nessuna recensione
Rispondi alla recensione