Short Trend Reversal

This EA is a part of my other EA Nash Equilibrium. If you activate this EA on a chart created from Nash Equilibrium, orders can be managed by Nash Equilibrium with Manage mode (External or Main&External). EAs are compatible.

With this EA you can build a good profitable system. The EA was created to test signals for the Nash Equilibrium EA, but when I saw the backtest results, I thought I would add a few lines and put it on the market. It works on any classic currency pair /you just need to find the right settings/. It works on many other instruments, but you need to choose the right TakeProfit, StopLoss, min_dist, pending_dist. If you want to test other instruments, it is best to do large tests from methodology 2 with your own TP.

For EUR,USD,GBP,CHF,CAD,JPY,AUD,NZD between them crosses, pips calculated as for a 4-digit broker (inside multiplied by 10). The rest of the instruments as your broker has.
EA has the following Built-in settings: SAFE, MODERATE, AGGRESIVE, start by checking what it looks like with your broker /it was backtested with Vantage broker on STP account/.
I recommend turning EA on several charts of one currency, for example several crosses EUR or USD or ... or mixed, and several TFs, this way you will obtain indirect hedging.

Important: This EA should have StopLoss set to 0 while running. StopLoss is only used to create a statistical file in the tester folder during historical testing. There you will see useful information about the amounts of losing and profitable trades. Pips in this EA are calculated as for 4-digit-broker /FOR CURRENCIES ONLY/. The rest of the instruments as your broker has.

Rules and my backtest methodology:

  1. Disable the genetic algorithm if you want to use my statistics file
  2. Open prices only testing model. There is no need to test every tick because EA takes a position only on new candles
  3. set mine TP first: M15: TP=15, M30: TP=20, H1: TP=30, H4: TP=40 /change if you want, but try mine/
  4. EA not using StopLoss. Used only in method 1 for check signals quality

_________________________________________________________________________________________________________

method 1 /detailed/

step one:

  • EA default values: and disable the final_optimisation parameter (enabled, averages trades, and we don't want that now), Built-in settings set to 'user'
  • BarsRange1: range 5-50 with step 5 (pattern higher lower trades)
  • BarsRange2: range 3-13 with step 2 (pattern higher lower trades)
  • TakeProfit as above (unless you prefer otherwise, I recommend mine to start with)
  • StopLoss you accept (100,150,200 it depends on the symbol and is only used to count bad signals)

Run optimisation with BarsRange1 and BarsRange2 selected. The results that the tester shows or does not show are not important. Important information is saved in the MT4/tester/files/ShortTrendReversal/*.txt file. The file is only created when StopLoss is greater than 0. Now open the created file. I recommend notepad++ for this because it reloads the file if it changes. Analyze the results.

Important: Once you have changed the optimisation parameters, you should clear the tester's cache, as the results will not appear in the html file. (when the tester finds results in the cache, it skips the calculations)

step two:

  • narrow the ranges of BarsRange1 and 2
  • min_dist:       range 20-90 with step 10 /minimum distance from the previous order, 0 completely disables the limit/
  • pending_dist: range 20-90 with step 10 /pending order distance, 0 disables pending orders/
  • StopLoss set to 0
  • enable final_optimisation

Run optimisation. Now choose what suits you. Additionally, once you have your optimisation results, you can set StopLoss as above call up the individual results. At this point /with StopLoss/ the result itself won't matter, but you can see and compare the new statistics in the file (MT4/tester/files/ShortTrendReversal/*.txt). Statistics will be different than before and will certainly be very helpful in making decisions. You can save selected results to a file with external parameters (MQL4/files/ShortTrendReversal/ReadFromFile.txt). Details can be found in the file.

My rules when backtesting Built-in settings: SAFE,MODERATE,AGGRESIVE

SAFE: BarsRange2 range 7-11
MODERATE: BarsRange2 range 5,7,9
AGGRESIVE: BarsRange2 range 3,5,7

_________________________________________________________________________________________________________

method 2 /fast and simple/ source code and optimisation sets: StrategyTester in pips

Everything as above in one go.

  • from EA default settings: change Built-in settings to 'user'
  • BarsRange1:   range 5-50 with step 5 /pattern higher lower trades/
  • BarsRange2:   range 3-13 with step 2 /pattern higher lower trades/
  • min_dist:       range 20-90 with step 10 /minimum distance from the previous order, 0 completely disables the limit/
  • pending_dist: range 20-90 with step 10 /pending order distance, 0 disables pending orders/
  • TakeProfit set my TP first: M15: TP=15, M30: TP=20, H1: TP=30, H4: TP=40
  • StopLoss set to 0
  • enable final_optimisation
  • enable StrategyTester in pips
  • set filter rules

Run optimisation. When finished, open the HTML file from the tester directory, sort, select the good results, deselect the automatically selected ones if you want, and save to a CSV file in the 'csv_done' directory. Now deselect the previous optimisation parameters, enable 'test selected results' and select ONLY the 'stage1 results array' optimisation, e.g. in the range 1-200. Empty ones will be skipped. Now choose what suits you. If you test a single parameter setting, it will be displayed in the tester logs.

Important: Once you have changed the optimisation parameters, you should clear the tester's cache, as the results will not appear in the html file. (when the tester finds results in the cache, it skips the calculations)
Below is a .bat script for quick cleaning cache and delete last created file inside tester folders.

rem @echo off
set mt4_path="full_path_to_metatrader4\tester\files\ShortTrendReversal"
del %mt4_path%\..\..\caches\*.* /P
del %mt4_path%\..\..\history\*.* /P
for /F %%a in ('dir /B /O:-D /A:-D /T:C %mt4_path%\*.html') do del /P "%mt4_path%\%%a"&goto deldone
:deldone
for /F %%a in ('dir /B /O:-D /A:-D /T:C %mt4_path%\csv_done\*.html') do del /P "%mt4_path%\csv_done\%%a"&goto deldone
:deldone
pause

_________________________________________________________________________________________________________

Settings:

BarsRange1 main signal 1 /pattern higher lower trades/
BarsRange2 main signal 2 /pattern higher lower trades/
min_dist minimum distance from the previous order, 0 completely disables the limit
pending_dist distance of pending order, 0 disables, negative value: distance from local maximums and minimums for pending orders
TakeProfit M15: TP=15, M30: TP=20, H1: TP=30, H4: TP=40
StopLoss 100,150,200 /depends on the symbol/
final_optimisation enable/disable averaging
Built-in settings user,SAFE,MODERATE,AGGRESIVE,ReadFromFile
TP,SL in %: calculation in % for other instruments than currencies
          Other trade settings:
StartTrading: set Start and Stop to 0:00, trading is active all the time, set Start and Stop to 9:9, trading is inactive all the time
StopTrading end of trade, Start and Stop disabled for backtests
Lots trade volume
dynamic_lots each subsequent order is increased. modes: OFF, simple, fibo sequence, martingale. Max 10.
UseRiskManager you know, risk manager
EntryRisk %of capital per trade for leverage=100. the position size is always calculated the same as for leverage=100 (for secure)
MagicNumber EA recognizes orders by number and _Period
Compatibility leave default, use only with my Nash Equilibium EA
          Graphics/Logs settings:
GUI_enable two graphical interface modes, simple GUI, also works in visual mode
Narrow/Fat font Font family used: Arial Narrow, Arial Nova, Bahnschrift
UseSounds on/off sounds
LogLvL silent/MT4logs/alerts
ShowInitConfig shows a window with parameters at startup
          Advanced backtesting:
StrategyTester in pips (optimisation only), generates an HTML file in the tester directory. source code: StrategyTester in pips
MathAbs(AccLoss) < x * InitBalance show if (optimisation only)
MathAbs(maxDD) < x * TotalProfit show if (optimisation only)
MathAbs(maxDD) < x * Profit before maxDD show if (optimisation only)
test selected results only test settings saved in the .csv file (creates new HTML file in tester directory)
stage1 results array in optimising, iterations of settings from a .csv file

Built-in settings:                           user: all settings can be changed by the user for use or backtesting

SAFE,MODERATE,AGGRESIVE:         all parameters from the first section are permanently set:

  •     BarsRange1, BarsRange2, min_dist, pending_dist are saved in arrays
  •     TakeProfit: M15: TP=15, M30: TP=20, H1: TP=30, H4: TP=40
  •     StopLoss is set to 0
  •     final_optimisation is enabled

ReadFromFile:    During the first launch, EA will create a ReadFromFile.txt file in the folder MQL4/files/ShortTrendReversal/ with a saved SAFE table as an example of use. After backtesting, you can save the parameters there and you don't have to do anything else. This option not working on VPS.

Due to the fact that importing external DLL libraries is prohibited, I moved the window resize to the indicator. Source code below.

https://www.mql5.com/en/code/48973

Produtos recomendados
Ilanis
Mikhail Sergeev
4.74 (27)
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
Jet Punch
Didit Haryadi Saputra
Jet Punch is another best expert advisor for MT4,  can help you make money while you sleep by automatically entering and exiting trades. It trades by opening trades every day and closing them at the right time to ensure you always earn a profit. The software is very simple and can be used by both beginner and experienced traders.  Jet Punch was tested and has successfully passed the stress test with slippage and commission approximate to the real market condition. Recommendations: Currency pair:
Magic Grid
Aliaksandr Charkes
4.54 (28)
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
This Expert Advisor trades based on trend lines, as well as on the basis of volume analysis. Volumes are calculated using minute bars, in order to determine if they were ascending or descending. The trend lines are drawn based on High and Lows in the trade history. There are also additional indicators. Buy or sell signals depend on all those factors. This allows the EA to enter the market with more accuracy and to perform more deals. Input parameters Lots - lot size (if 0, a lot is calculated b
Live Signal (Real Trading Data)  https://www.mql5.com/zh/signals/2341050 Live Signal (Real Trading Data) : https://www.mql5.com/zh/signals/2346893 Smart Trend and Range EA Smart Trend and Range EA is an automated trading program designed to operate based on market structure analysis under different market conditions. The EA analyzes price behavior and market structure to apply different trading logic in trending markets and ranging markets. It does not use martingale, grid, averaging, or recover
Grid and MACD
Volodymyr Hrybachov
This is a grid Expert Advisor. It has several trading strategies based on the MACD indicator. The virtual trailing stop, stop loss, take profit levels can be set pips, in the deposit currency or as a percentage of the balance. Depending on the settings, different orders may be opened for diversifying risks. Their closure can be either an oppositely directed or unidirectional basket of orders. The orders grid is adaptive, only market orders are used in it. If the price moves the distance of Order
BuckWise
Joel Protusada
BuckWise   is a fully automated scalping Expert Advisor that can be run successfully using EURUSD 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
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 s
EA Seven MT4
Ruslan Pishun
The initial price is 75 USD, the future price is 150 USD The EA uses a reverse strategy. To detect trading signals, the following indicators are used:   Moving Average, Relative Vigor Index, Average True Range, Alligator and other custom indicators . Each pair has a stop loss, take profit, breakeven and trailing stop. The EA trades on many major currency pairs and timeframes. The EA uses timeframes: MetaTrader 4 MetaTrader 5     M1,   M5,   M15, M30, H1  M1,   M2,   M3,   M4,  M5, M10, M12 ,
MMM Zig Zag Estratégia: Os Expert Advisors usam seu indicador integrado Zig Zag para determinar as tendências de preços e calculam o sinal para decidir abrir posições de compra ou venda. Ele envia uma ordem, fecha ou move a posição de perda Trailing Stop conforme o indicador funciona. Você pode definir o período de tempo de cada dia da semana em que o EA não deve negociar (o momento ruim para negociar). Geralmente o período do dia em que as notícias de impacto são publicadas. Entradas Gerais: F
| 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
PipFinite EA Breakout EDGE
Karlo Wilson Vendiola
5 (5)
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 acros
Smart Funded Hft
Barbaros Bulent Kortarla
4.7 (67)
!! POR FAVOR, ATUALIZE PARA A ÚLTIMA VERSÃO 2.05 PARA UM DESEMPENHO AINDA MAIS RÁPIDO!! SMART FUNDED HFT ACABOU DE PASSAR NO DESAFIO DE 100K DA KORTANA FX NA ABERTURA DO MERCADO EM 29.01.2024, APESAR DA BAIXA VOLATILIDADE POR FAVOR, VERIFIQUE A SEÇÃO DE CAPTURAS DE TELA, COLOQUEI A PROVA LÁ IMPORTANTE NÃO PERCA O DESCONTO EXCLUSIVO DE 40% DA KORTANA FX PARA PAGAMENTOS EM CRIPTOMOEDAS ATÉ 29.01.2024.  Liberte o seu potencial de trading com o Smart Funded HFT EA!   SEM NECESSIDADE DE VPS / SEM ARQ
DoIt Alpha Pulse AI for MT4 — AI Trading EA with Risk Controls and Forward-Tested Transparency ℹ️ℹ️ Main info and results in MT5 version : Check it out here ℹ️ℹ️ Most automated trading products fail for one simple reason: they are too rigid. Markets change. Volatility changes. Structure changes. A static system can perform well in one phase and fail badly in another. DoIt Alpha Pulse AI for MT5 is an Expert Advisor built for traders who want AI-assisted market analysis with structured automati
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 on
Trend Momentum
Gonzalo Melendi Mancebo
Trend Momentum use indicators as EMAs, MACD and an algorithm to detect trends. After first conditions as been reached, it computes crossing angles of the EMAs to set the trigger. Money management is aloud to set percentage lots or fixed lot. After TP1 is reached, SL is moved to Entry point in order to reduce risk. Parameters for Buy Trades and Sell Trades are separated for optimization process. Default parameters EURUSD - 1H.
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 ma
Macd Pro I
Steve Zoeger
MACD Pro I EA https://youtu.be/2wCzTFIGNp4 =============== This Robot is fully automated and has been created for everyone. The Robot works also on cent accounts. The Ea is based on the MACD Indicator and 3 more and has been kept simple. ========================================= Maybe better to go for small profit, set it on higher time frames then you can use it for more pairs at the same time. =========================================== => works on all Time Frames but i would recommend the
Impuls Pro MT4
Sergey Batudayev
5 (2)
A estratégia do EA é baseada na negociação de Swing , com entradas após impulsos agudos calculados pelo indicador iPump. Conforme mencionado anteriormente, o EA tem a capacidade de abrir negociações manuais com suporte automático. - para uma tendência de baixa ↓ entramos em uma operação após um aumento corretivo no preço, o ativo entra na zona de sobrecompra, vendemos ao longo da tendência. - para uma tendência de alta ↑, entramos em uma operação após uma queda corretiva no preço, o ativo cai n
How the EA works (simple explanation) Trades on   M5   timeframe Uses   H1 timeframe   to analyze global market context Analyzes   2 or 3 timeframes simultaneously On each timeframe: Checks price position relative to one or two Moving Averages Evaluates MA angle and distance between price and MA Entry logic is based on   trend + volatility conditions , not on random signals The full algorithm is illustrated in the screenshots. Recommended usage Symbol:   EURUSD Timeframe:   M5 Trading
Gold Crasher
Hong Ling Mu
<Logic> EA will entry when the price breaks average candle stick price. EA will make Grid order with Hedge logic. When grid order is placed , EA check the trend and if trend is BUY, then place buy order. If trend is sell, then place sell order. This is to reduce a big draw down. <Input parameter> Slippage(pips) Max position Baselot size take profit stoploss Risk (MM) Grid order settings. Moving average period and Time frame N of bars for average line calculation <BEST PAIR and Time frame> XAUU
Diamond Black
Fanur Galamov
5 (2)
Diamond Black  is a professional expert advisor for automatic market trading. The EA implements my long-term observations of the market behavior in the evening. A thorough analysis of the behavior of the low-volatility market allowed me to implement a stable reliable system for profitable and long-term trading. EA algorithm uses the advantages of pending limit orders and strict control of trading risk. Expert advisor uses automatic lot calculation, and also allows you to use a fixed trading lo
Adicionada a capacidade de alterar o tamanho do lote e tornar o EA o mais barato possível. Ao comprá-lo, você receberá suporte e futuras atualizações. Por favor, apoie a sua evolução. Este EA está pronto para uso. AussiePrecision   é um Expert Advisor (EA) sensível ao tempo para MetaTrader 5, projetado especificamente para o par de moedas AUD/USD. Ele foi desenvolvido para executar operações em momentos pré-definidos e controlados, sendo ideal para traders que desejam automatizar entradas com al
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
Financial Radar GFX
Yasir Mohammed Sachit Sachit
Gold Trend Rider – Automated Expert Advisor for XAUUSD Trading Disclaimer : Trading Gold (XAUUSD) involves significant risk. Past performance does not guarantee future results. Test on a demo account and apply proper risk management before live trading. Overview Gold Trend Rider is a fully automated Expert Advisor specifically designed for Gold trading. It leverages the Parabolic SAR indicator to detect trend direction and open trades accordingly. Its trailing stop mechanism manages positions d
TC Poseidon EA
Pablo Leonardo Spata
This is a trading robot to work on USDCHF - Timeframe H1 . It exploits a statistical advantage produced in the Swiss franc. All trades with SL and TP. Backtest now!   Special OFFER for this week Discount price - $ 49. Next price $ 149. BUY NOW!!!   Would you like to see how 100 dollars turn into more than 3 million dollars? Do you already have a robust strategy that works on USDCHF ? TC Poseidon EA is the god of the seas, water, storms, hurricanes, earthquakes, and horses. Use its power to
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
Precision Scalper Pro
Stephen Robert Powell
Precision Scalper Pro Precision Scalper Pro is a cutting-edge trading algorithm designed to streamline trading with pinpoint accuracy and efficiency. No Fancy buttons and displays, just straight-up trading with the best logic and profit in mind. It does the work so you don't have to! Minimum Equity requirements to start with the ability to adjust your risk management settings. You have settings to customize your trading,  Contains robust risk management tools. Uses Bollinger, MACD, RSI, MFI, A/
Expert Smart Trend MT4
Ruslan Pishun
2.5 (2)
The trading system operates on seven pairs and one timeframe. The Expert Advisor uses trading systems for trend-based entries with the help of the Envelopes and CCI indicators. Each indicator uses up to five periods for calculating the trends. The EA uses economic news to calculate the prolonged price movements. The EA has the built-in smart adaptive profit taking filter. The robot has been optimized for each currency and timeframe simultaneously. Real monitoring:  https://www.mql5.com/en/signal
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 conditi
Os compradores deste produto também adquirem
Vortex Gold MT4
Stanislav Tomilov
5 (30)
Vortex - o seu investimento no futuro O Consultor Especialista Vortex Gold EA foi criado especificamente para negociar ouro (XAU/USD) na plataforma Metatrader. Construído com indicadores proprietários e algoritmos secretos do autor, este EA emprega uma estratégia de negociação abrangente concebida para captar movimentos lucrativos no mercado do ouro. Os principais componentes de sua estratégia incluem indicadores clássicos como CCI e Indicador Parabólico, que trabalham juntos para sinalizar com
Quantum Emperor MT4
Bogdan Ion Puscasu
4.85 (171)
Apresentando       Quantum Emperor EA   , o consultor especialista inovador em MQL5 que está transformando a maneira como você negocia o prestigiado par GBPUSD! Desenvolvido por uma equipe de traders experientes com experiência comercial de mais de 13 anos. IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. ***Compre Quantum Emperor EA e você poderá obter Quantum StarMan  de graça!*** Peça mais detalhes em particular Si
The Gold Reaper MT4
Profalgo Limited
4.59 (32)
PROP FIRM PRONTO!   (   baixar SETFILE   ) PROMOÇÃO DE LANÇAMENTO: Restam apenas algumas cópias pelo preço atual! Preço final: 990$ Ganhe 1 EA gratuitamente (para 2 contas comerciais) -> entre em contato comigo após a compra Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal Bem-vindo ao Ceifador de Ouro! Baseado no muito bem-sucedido Goldtrade Pro, este EA foi projetado para funcionar em vários períodos de tempo ao mesmo tempo e tem a opção de definir a frequên
Gold Trade Pro
Profalgo Limited
4.61 (23)
Promoção de lançamento! Restam apenas algumas cópias por 449$! Próximo preço: 599$ Preço final: 999$ Ganhe 1 EA gratuitamente (para 2 contas comerciais) -> entre em contato comigo após a compra 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 junta-se ao clube dos EAs de negociação de
Aura Black Edition
Stanislav Tomilov
4.6 (20)
Aura Black Edition é um EA totalmente automatizado projetado para negociar apenas OURO. O especialista mostrou resultados estáveis ​​no XAUUSD no período de 2011-2020. Nenhum método perigoso de gerenciamento de dinheiro usado, sem martingale, sem grade ou scalp. Adequado para quaisquer condições de corretor. EA treinado com um perceptron multicamadas A Rede Neural (MLP) é uma classe de rede neural artificial (ANN) de feedforward. O termo MLP é usado de forma ambígua, às vezes vagamente para qual
Golden Mirage mt4
Michela Russo
5 (5)
Limited stock at the current price! Final price: $1999 --> PROMO: From $299 --> The price will go up every 5 purchases, next price : $399 Golden Mirage is a robust gold trading robot designed for traders who value reliability, simplicity, and professional-grade performance. Powered by a proven combination of RSI, Moving Average,  ADX, and High/Low Level  indicators, Golden Mirage delivers high-quality signals and fully automated trading on the M5 timeframe for XAUUSD (GOLD) . It features a robu
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
Aura Neuron MT4
Stanislav Tomilov
4.62 (13)
Aura Neuron é um Expert Advisor distinto que continua a série Aura de sistemas de negociação. Ao alavancar Redes Neurais avançadas e estratégias de negociação clássicas de ponta, Aura Neuron oferece uma abordagem inovadora com excelente desempenho potencial. Totalmente automatizado, este Expert Advisor foi projetado para negociar pares de moedas como XAUUSD (GOLD). Ele demonstrou estabilidade consistente entre esses pares de 1999 a 2023. O sistema evita técnicas perigosas de gerenciamento de din
AW Scalping Dynamics EA
AW Trading Software Limited
4.67 (12)
Robô de negociação avançado totalmente automático que funciona com base em reversões de tendências. Se necessário, é possível utilizar uma estratégia de grade. 3 tipos de notificações integrados e bloqueio de posição quando a carga máxima do carrinho é atingida. As configurações padrão são recomendadas para EURUSD no período de tempo M15. Características e benefícios: Capacidade de trabalhar em duas direções ao mesmo tempo Capacidade integrada de trabalhar pontualmente em vários estágios Usa um
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
EA Gold Algo
Mohamed Hassan
4.33 (3)
EA Gold Algo is a professional Expert Advisor specifically designed for Gold (XAUUSD) trading. It is engineered to capture extremely fast price movements  that occur when price escapes key structural zones with momentum. Gold is known for sharp expansions and aggressive volatility. EA Gold Algo is built to operate in these conditions with high-precision execution, strict risk control, and fast reaction speed . The EA does not use grid or martingale techniques . Each trade is executed independe
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
Aurum AI mt4
Leonid Arkhipov
4.94 (32)
ATUALIZAÇÃO — DEZEMBRO DE 2025 No final de novembro de 2024, o robô Aurum foi lançado para venda. Durante todo esse período, ele operou em condições reais de mercado sem filtro de notícias, sem proteções adicionais e sem restrições complexas — mantendo-se estável e confiável. Live Signal Esse ano inteiro de operações reais demonstrou claramente a solidez do sistema de trading. Somente após isso, com base na experiência real e nas estatísticas, em dezembro de 2025 lançamos uma grande atualizaç
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
AW Recovery EA
AW Trading Software Limited
4.35 (84)
O Expert Advisor é um sistema projetado para recuperar posições não rentáveis.   O algoritmo do autor bloqueia uma posição perdedora, divide-a em muitas partes separadas e fecha cada uma delas separadamente. Configuração fácil, lançamento atrasado em caso de rebaixamento, bloqueio, desativação de outros Expert Advisors, média com filtragem de tendência e fechamento parcial de uma posição perdedora são incorporados em uma ferramenta. É o uso de fechamento de perdas em peças que permite reduzir p
FlipDamonHFT
Allistair Kabelo Mandow
Ask in private for more details after purchase FlipDemonHFT Flipdemon vX: The Next-Level Forex Trading Robot Flip your capital fast with Flipdemon vX — a powerful trading robot designed for rapid growth, sniper entries, and consistent profits. Built for serious traders who want results in days, not months.. Discounted   price .  The price will increase by $500 with every 10 purchases. ***Buy FLIPDEMON HFT MT4 and you could get TINGA TINGA or  FLIPDEMON HFT MT5 for free !*** Ask in privat
GOLD Scalper PRO
Lachezar Krastev
4.58 (24)
WINTER SALE — FINAL DAYS! Get GOLD Scalper PRO with a huge –60% discount AND receive News Scope EA PRO as a FREE BONUS ! Special Winter Sale Price: $177 (Regular Price: $447 — You Save $270!) FREE BONUS: News Scope EA PRO A powerful multi-symbol strategy packed with advanced features, supporting 5 trading pairs — real value: $397! After completing your purchase, simply contact me and I will send you your BONUS EA immediately. Don’t miss this once-a-year opportunity! Live Results:   https://w
Mon Scalper MT4
Xuan Bach Nguyen
Mon Scalper - Dual-Trendline Breakout Scalping Expert Mon Scalper is a specialized Expert Advisor designed exclusively for gold (XAUUSD) trading. It utilizes a unique dual-trendline strategy to identify strong trends and breakout points, executing trades automatically based on market conditions. Join My MQL5 Channel for the Latest Updates! Real-Time Signal :  https://www.mql5.com/en/signals/2361936 Pricing : Launch Price : $199 Incremental Price Increase : The price will increase by $100 after
Quantum Dark Gold
Nguyen Hang Hai Ha
3.13 (8)
Quantum strategy is a combination of quantum superposition and trading signal model. EA Quantum Dark Gold determines Buy and Sell positions simultaneously for each signal and simultaneously places 2 orders Buy Stop and Sell Stop. Then the momentum determines which order position is executed and cancels the remaining pending order. This interesting idea forms the Quantum Dark Gold with a unique entry method. Open positions are then managed by Trailing, Stop Loss and position balancing strategies
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
BB Return mt4
Leonid Arkhipov
5 (1)
BB Return — um Expert Advisor (EA) para negociação de ouro (XAUUSD). Esta ideia de trading foi utilizada por mim anteriormente na operação manual . A base da estratégia é o retorno do preço à faixa das Bollinger Bands , porém não de forma mecânica nem a cada toque. Para o mercado do ouro, as bandas sozinhas não são suficientes, por isso o EA utiliza filtros adicionais que eliminam condições fracas ou não operáveis. As operações são abertas apenas quando a lógica de retorno está realmente justifi
Trend AI EA
Ramil Minniakhmetov
4.22 (54)
O EA Trend Ai foi projetado para funcionar com o indicador Trend Ai, que realizará sua própria análise de mercado combinando a identificação de tendências com pontos de entrada acionáveis e alertas de reversão, assumindo todos os sinais do indicador de forma totalmente automática! O EA contém diversos parâmetros externos totalmente ajustáveis e permite que o trader personalize o especialista de acordo com sua escolha. Assim que o ponto verde aparecer, o EA se preparará para uma operação de com
Forex GOLD Investor
Lachezar Krastev
4.46 (50)
WINTER SALE — FINAL DAYS! Get Forex GOLD Investor with a huge –60% discount AND receive News Scope EA PRO as a FREE BONUS ! Special Winter Price: $217 (Regular Price: $547 — You Save $330!) FREE BONUS: News Scope EA PRO A powerful multi-symbol strategy packed with advanced features, supporting 5 trading pairs — real value: $397! After completing your purchase, simply contact me and I will send you your BONUS EA immediately. Don’t miss this once-a-year opportunity! Live Results: https://www.m
Quantum King MT4
Bogdan Ion Puscasu
5 (2)
Quantum King EA — Poder Inteligente, Refinado para Cada Trader IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. Preço especial de lançamento Sinal ao vivo:       CLIQUE AQUI Versão MT5:   CLIQUE AQUI Canal Quantum King:       Clique aqui ***Compre Quantum King MT4 e ganhe Quantum StarMan grátis!*** Pergunte no privado para mais detalhes! Regra       Suas negociações com precisão e disciplina. Quantum King EA
O Market Reversal Alerts EA é alimentado pelo indicador de mesmo nome (disponível aqui) e negocia com base em mudanças na estrutura do mercado. O EA, por padrão, fará uma negociação toda vez que um alerta de reversão de mercado for enviado pelo indicador e negociará esses alertas com base nas condições e filtros definidos nas configurações do EA. Ele desenha retângulos de suporte à medida que o preço se move na direção da tendência atual e negocia quando o preço inverte acentuadamente e sina
Vortex Turbo EA MT4
Stanislav Tomilov
5 (9)
Vortex Turbo — “Negocie a tempestade — controle o vórtice” O Vortex Turbo representa o próximo estágio evolutivo na negociação inteligente — um desenvolvimento único que combina arquitetura de IA de ponta, lógica de mercado adaptativa e controle de risco preciso. Construído sobre princípios algorítmicos comprovados, ele integra múltiplas estratégias em um ecossistema unificado de alta velocidade, impulsionado por um novo nível de inteligência preditiva. Projetado como um especialista em scalpin
XG Gold Robot MT4
MQL TOOLS SL
4.3 (37)
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
Forex Diamond EA
Lachezar Krastev
5 (5)
WINTER SALE — FINAL DAYS! Get Forex Diamond EA with a huge –60% discount AND receive News Scope EA PRO as a FREE BONUS ! Special Winter Sale Price: $217 (Regular Price: $547 — You Save $330!) FREE BONUS: News Scope EA PRO  A powerful multi-symbol strategy packed with advanced features, supporting 5 trading pairs — real value: $397! After completing your purchase, simply contact me and I will send you your BONUS EA immediately. Don’t miss this once-a-year opportunity! Forex Diamond EA – Relia
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
Javier Gold Scalper V2
Felipe Jose Costa Pereira
5 (4)
Javier Gold Scalper: Nossa Tecnologia ao seu lado! Manual e arquivos de configuração: entre em contato comigo após a compra para receber o manual e os arquivos de configuração Preço: O preço aumenta de acordo com o número de licenças vendidas Cópias disponíveis: 5 Negociar ouro, um dos ativos mais voláteis do mercado financeiro, exige alta precisão, análise criteriosa e um gerenciamento de risco extremamente eficaz. O Javier Gold Scalper  foi desenvolvido exatamente para integrar esses pilares
Mais do autor
Nash Equilibrium
Tomasz Adrian Bialous
I am pleased to present to you a powerful EA, and everything about this EA is HUGE: profit, drawdown, number of orders, deposit. EA trade all 28 symbols x 5 timeframes (M15,M30,H1,H4,D1), individual timeframes and currencies (not symbols) can be disabled. Simple calculation: 28*5 = 140 signals to trade, and * 2 directions(buy/sell) = 280. If you are interested, read on. 1. How it was created: EA was created when, after writing EA for manual basket trading, I was looking for an idea to automate i
Filtro:
Sem comentários
Responder ao comentário