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

Prodotti consigliati
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 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):
| 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.76 (66)
Smart Funded EA è un consulente esperto progettato per superare le sfide HFT delle società prop che ne consentono l'uso. Quali società prop HFT posso utilizzare? È stato testato su quasi tutte le sfide HFT delle società prop con una percentuale di successo del 100%, come Kortana Fx, Nova Funding, Fast Forex Funds, Infinity Forex Funds, Quantec Trading Capital, Next Step Funded, Msolutionff, Genesis Forex Funds, The Talented Traders, Only Funds, Tradicave e tutte le altre sfide MT4 consentite da
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)
La strategia di EA si basa sullo Swing trading , con entrate dopo forti impulsi calcolate dall'indicatore iPump. Come accennato in precedenza, l'EA ha la capacità di aprire operazioni manuali con supporto automatico. - per un trend ribassista ↓ entriamo in un trade dopo un rialzo correttivo del prezzo, l'asset cade nella zona di ipercomprato, vendiamo lungo il trend. - per un trend rialzista ↑, entriamo in un'operazione dopo un calo correttivo del prezzo, l'asset cade nella zona di ipervenduto,
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
Aggiunta la possibilità di modificare la dimensione del lotto e rendere l'EA il più economico possibile. Se lo acquisti, riceverai supporto e aggiornamenti futuri. Per favore, supportane lo sviluppo. Questo EA è pronto all’uso. AussiePrecision   è un Expert Advisor (EA) sensibile al tempo per MetaTrader 5, progettato specificamente per la coppia di valute AUD/USD. È progettato per eseguire operazioni in momenti predefiniti e controllati, ed è ideale per i trader che desiderano automatizzare ingr
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
Gli utenti di questo prodotto hanno anche acquistato
Vortex Gold MT4
Stanislav Tomilov
5 (30)
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
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
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
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
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
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 è 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,
AW Scalping Dynamics EA
AW Trading Software Limited
4.67 (12)
Robot di trading avanzato completamente automatico che funziona in base alle inversioni di tendenza. Se necessario, è possibile utilizzare una strategia a griglia. 3 tipi di notifiche integrati e blocco della posizione quando viene raggiunto il carico massimo del carrello. Le impostazioni predefinite sono consigliate per EURUSD nell'intervallo di tempo M15. Caratteristiche e vantaggi: Capacità di lavorare in due direzioni contemporaneamente Capacità incorporata di lavorare in tempo in più fasi
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)
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
AW Recovery EA
AW Trading Software Limited
4.35 (84)
L'Expert Advisor è un sistema pensato per recuperare posizioni non redditizie.   L'algoritmo dell'autore blocca una posizione perdente, la divide in molte parti separate e chiude ciascuna di esse separatamente. La facile configurazione, il lancio ritardato in caso di drawdown, il blocco, la disabilitazione di altri Expert Advisor, la media con il filtraggio delle tendenze e la chiusura parziale di una posizione in perdita sono integrati in un unico strumento. È l'uso della chiusura delle perdit
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 — 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
Trend AI EA
Ramil Minniakhmetov
4.22 (54)
L'EA Trend Ai è progettato per funzionare con l'indicatore Trend Ai, che eseguirà la propria analisi di mercato combinando l'identificazione del trend con punti di ingresso e avvisi di inversione attivabili, e acquisirà tutti i segnali dell'indicatore in modo completamente automatico! L'EA contiene una serie di parametri esterni completamente regolabili che consentono al trader di personalizzare l'expert in base alle proprie preferenze. Non appena appare il punto verde, l'EA si preparerà per u
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: 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
Il Market Reversal Alerts EA è alimentato dall'indicatore omonimo (disponibile qui) e opera in base ai cambiamenti della struttura del mercato. Per impostazione predefinita, l'EA effettuerà uno scambio ogni volta che un avviso di inversione di mercato viene inviato dall'indicatore e scambierà tali avvisi in base alle condizioni e ai filtri impostati nelle impostazioni dell'EA. Disegna rettangoli di supporto mentre il prezzo si muove nella sua attuale direzione di tendenza e viene scambiato q
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
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: La nostra tecnologia al tuo fianco! 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: 5 Fare trading sull'oro, uno degli asset più volatili del mercato finanziario, richiede elevata precisione, un'analisi accurata e una gestione del rischio estremamente efficace. Il Javier Gold Scalper è stato sviluppato proprio per integrare ques
Altri dall’autore
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:
Nessuna recensione
Rispondi alla recensione