• Overview
  • Reviews
  • Comments
  • What's new

Short Trend Reversal

end year promotion /EA is a part of my Nash Equilibrium/

With this EA you can build a good profitable system. The EA was created to test signals for the main EA that I am creating, but when I saw the backtest results, I thought I would add a few lines and put it on the market. After adding over 1000 lines of code, here it is. It works on any classic currency pair /you just need to find the right settings/. It probably 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. Sample settings for GOLD, SILVER, OIL, SP500, DAX40 can be found in the params.txt file.

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 settings coded Built-in settings: SAFE, MODERATE, AGGRESIVE, start by checking what it looks like with your broker /it was backtested with Vantage on an STP account in 2023/.

I recommend turning 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.

During the sale of promotional copies, will expand EA to multitimeframe and upgrade to version 2.0

Important: This EA should have StopLoss set to 0 while running. StopLoss is used to create a statistics file in the tester folder during backtests. 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/
                                                                                                                                                                                     

method 1 /detailed/

step one:

  • EA default values: and disable the final_optimization 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-15 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 optimization 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.

step two:

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

Run optimization. Now choose what suits you. Additionally, once you have your optimization 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/params.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/

Everything as above in one go.

  • EA default values
  • BarsRange1:   range 5-50 with step 5 /pattern higher lower trades/
  • BarsRange2:   range 3-15 with step 2 /pattern higher lower trades/
  • min_dist:       range 10-70 with step 10 /minimum distance from the previous order, 0 completely disables the limit/
  • pending_dist: range 10-70 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_optimization

Run optimization. Now choose what suits you. Additionally, once you have your optimization results, you can set StopLoss as above and run individual results. Statistics in the file as above.

                                                                                                                                                                                     

While writing this description, I extended the pending_dist functionality and did not backtested it. When you set a negative value, the EA will set a buy stop order a few pips above the local high and sell stop a few pips below.

here is the formula:
BUY STOP at the highest high of the last 10 bars + ((-1)*pending_dist + spread)

SELL STOP at the lowest low of the last 10bars - ((-1)*pending_dist)

=======================================================================================================

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 pending orders, 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_optimization:
enable/disable averaging
Built-in settings: user,SAFE,MODERATE,AGGRESIVE,ReadFromFile
TP,SL in %:
calculation in % for other instruments than currencies
StartTrading:
the beginning of trading, 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
MagicNumber:
EA recognizes orders by number and _Period
Lots:
trade volume
dynamic_lots:
 each subsequent order will be increased modes: none,simple,fibo_sequence,martingale up to 10 trades. on chart you'll see (N),(S),(F),(M)
UseRiskManager:
you know, risk manager
EntryRisk:
% of capital per trade for accounts with leverage>=100. the position size is always calculated as for an account with leverage = 100 (for secure)
GUI_enable:
two graphical interface modes, simple GUI, also works in visual mode
UseSounds:
on/off sounds
LogLvL:
silent/MT4logs/alerts
ShowInitConfig:
shows a window with parameters at startup
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 set to 0
  •     final_optimization enabled
ReadFromFile:    During the first launch, EA will create a params.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. EA will reload the file on the new D1 candle. You  can also restart MataTrader.


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

script that opens a set of charts:

#property copyright     "https://www.mql5.com/en/market/product/Short Trend Reversal"
#property link          "https://www.mql5.com/en/market/product/114909"
#property description   "script that opens a set of charts"
#property version       "1.00"
#property strict
#property show_inputs

#import "stdlib.ex4"
   string ErrorDescription(int error_code);
#import
#import "user32.dll"
   int  GetParent(int hWnd);
   void MoveWindow(int hWnd,int X,int Y,int nWidth,int nHeight,int bRepaint);
#import
#define INITIAL_PAIRS "EURUSD,GBPUSD,USDCHF,USDCAD,USDJPY,AUDUSD,NZDUSD,EURGBP,EURCHF,EURCAD,EURJPY,EURAUD,EURNZD,GBPCHF,GBPCAD,GBPJPY,GBPAUD,GBPNZD,CADCHF,CHFJPY,AUDCHF,NZDCHF,CADJPY,AUDCAD,NZDCAD,AUDJPY,NZDJPY,AUDNZD" 
string all_pairs[];

input string                  basket         = "EUR";
input ENUM_TIMEFRAMES         period         = PERIOD_H1;
input string                  inp_template   = "default.tpl";
input int                     Monitor        = 0;
extern int                    _X             = -5;
input int                     _Y             = -15;
input int                     Width          = 332;
input int                     Height         = 363;
input string                  prefix         = "";
input string                  suffix         = "";
//+------------------------------------------------------------------+
//| script program start function                                    |
//+------------------------------------------------------------------+
void OnStart() {
   StringSplit(INITIAL_PAIRS,',',all_pairs);
   if(Monitor > 0) _X += 1920;
   for(char i=0; i<ArraySize(all_pairs); i++) {
      if(StringFind(all_pairs[i],basket) != -1) {
         long chart = ChartOpen(prefix+all_pairs[i]+suffix,period);
         ChartApplyTemplate(chart,"\\Files\\ShortTrendReversal\\"+inp_template);
         int parent = GetParent((int)ChartGetInteger(chart,CHART_WINDOW_HANDLE));
         MoveWindow(parent,_X,_Y,Width,Height,true);
         ObjectCreate(chart,"ShortTrendReversal",OBJ_LABEL,0,0,0);
         ObjectSetInteger(chart,"ShortTrendReversal",OBJPROP_CORNER,CORNER_RIGHT_LOWER);
         ObjectSetInteger(chart,"ShortTrendReversal",OBJPROP_XDISTANCE,30);
         ObjectSetInteger(chart,"ShortTrendReversal",OBJPROP_YDISTANCE,15);
         ObjectSetString(chart,"ShortTrendReversal",OBJPROP_TEXT,basket);
         ObjectSetString(chart,"ShortTrendReversal",OBJPROP_FONT,"Arial Black");
         ObjectSetInteger(chart,"ShortTrendReversal",OBJPROP_FONTSIZE,7);
         ObjectSetInteger(chart,"ShortTrendReversal",OBJPROP_ALIGN,ALIGN_CENTER);
         ObjectSetInteger(chart,"ShortTrendReversal",OBJPROP_COLOR,clrGainsboro);
         ObjectSetInteger(chart,"ShortTrendReversal",OBJPROP_BGCOLOR,clrNONE);
         ObjectSetInteger(chart,"ShortTrendReversal",OBJPROP_BORDER_COLOR,clrNONE);
         ObjectSetInteger(chart,"ShortTrendReversal",OBJPROP_SELECTABLE,false);
         ObjectSetInteger(chart,"ShortTrendReversal",OBJPROP_HIDDEN,true);
         ObjectSetInteger(chart,"ShortTrendReversal",OBJPROP_READONLY,true);
         ChartRedraw(chart);
         _X+=274;Sleep(100);
      }
   }
}


Recommended products
Grid MT4 Recovery
Volodymyr Hrybachov
A grid advisor with an adaptive system for "Resolving" a basket of orders   can also be used   to restore unprofitable positions on the account. Works inside a linear regression channel, input on several conditions. The signal uses the direction of the   linear regression   channel, exponential moving averages, average daily volatility, then   builds an order grid if the price deviates. The grid step is configurable, and if the price goes against us, then after a certain number of orders, the ac
Automated strategies are commonly used by institutional investors, banks, and hedge funds due to their ability to handle large volumes of trades with greater precision and efficiency. However, they are also increasingly being adopted by individual traders who use trading platforms that offer automated trading capabilities.  While a profit of 10 percent   may seem small ,   it can add up over time with consistent trading . It is important to note that trading involves risks, and traders should a
The Arrow Scalper
Fawwaz Abdulmantaser Salim Albaker
1 (2)
Dear Friend..  I share with you this simple Expert Adviser .. it is full automatic  this Expert Adviser following the trend of the pair you install on or any stocks or indices , it is works like that: - when the trend on H4 chart show a start of up trend the expert will wait till the 15M & 1H charts show an up trend the EA will open a buy order directly , and do the same for down trend and open a sell order the buy or sell  order lot size and take profit and stop loss will measured manually  by
FREE
Logic Machine
Viktor Barilko
5 (1)
Logic Machine is an automated Forex trading Expert Advisor ideal for EURUSD. The robot analyzes the market and automatically determines entry points based on the identified price fluctuations. The robot uses a dynamic system of profit taking and risk control. To make an entry decision, the robot monitors the formation of divergence and filters the signals taking into account patterns by volume. The robot uses virtual floating Take Profit, Stop Loss. Decisions are made at the opening of the bar.
MARKET MAKER EXPERT is an customizable advanced, fully automated Grid Trading Expert Advisor developed to trade on MULTIPAIR MODE ( EURUSD,USDJPY,USDCHF,USDCAD,EURCHF ), by spreading out risks. Expanding Grid is its speciality. It focuses on opening a large number of orders. The currency pairs have been chosen carefully to run this system. Once it analyze the market, it does a hedge order immediately, (so margin levels are not affected on the initial trade) Starts grid when the price move
FTMO Smart Trader EA
Tshivhidzo Moss Mbedzi
Unlock the gateway to prop trading success with the FTMO Smart Trader EA, your ultimate Forex robot designed to propel you towards unprecedented trading achievements. Engineered for ambitious traders eyeing partnerships with leading prop firms like FTMO, Funded Next, and more, this revolutionary tool is your key to unparalleled performance and risk management in the dynamic Forex market. Get sets here : https://www.mql5.com/en/blogs/post/756066 Why Choose FTMO Smart Trader EA? High Performance:
CN Hamster CN Hamster  is a fully automated Expert Advisor with no use of martingale. Night scalping strategy. The BOLL indicator and  zigzag-based filter are used for entries. General Recommendations You can trade M5, M15, M30 BUT Best performance on the m5 timeframe The minimum deposit is $500, use an ECN account with the minimum spread Trade  EURUSD M5 or  GBPUSD M5  pair (BUT you can trade on  any  currency pair)   Default settings for  GMT+2 .  Use a broker with good execution and wit
The Piramida Grid EA analyzes the values of the Slope Direction Line indicator for determining position entry. The grid of orders changes once the market reverses. Works on pending BUYSTOP and SELLSTOP orders. Uses a system of averaging losses which controls a balance of open trades and moves it to breakeven. Automatic detection of 4 and 5 decimal places. Expert Advisor Setup: period = 32; - period for the Slope Direction Line indicator FilterNumber = 2; - Slope Direction Line filter setup ma_
Complete Scalper
Pavel Yakovlev
3.5 (4)
Complete Scalper is a scalper EA that combines the strategies of three Expert Advisors - Yogi EA, Scalper GBP and Cross Scalper . The Expert Advisor does not use hedging, martingale, grid strategies, arbitrage, etc. Most of the settings are already integrated into the EA code. All you need to do is to select the currency pair, adjust the WET (Western European Time) time zone in the EA parameters and to start trading. Working timeframe - M15. Advantages of Complete Scalper Trading strategy for
| 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
White bird
Jean Christophe Paput
5 (2)
WHITE BIRD EA is a fully automated & customizable EA. The EA's objective is to provide steady incomes (See pictures) with a high level of safeness  (See pictures). The algorythm based on an auto-adaptive system, is constantly controlling : - The distance between orders - The lot size of orders - The level of Equity - The level of security  3 trading modes can be used  (See backtests 9 examples) : - CHALLENGE FUNDERS (PROP FIRMS) COMPATIBLE: Profit higher than 10 %  / Draw
Live grid
Aleksej Shcherbak
Dedicated to grid trading fans. For a long period I was trading using Manual Trader by Ramil Minniakmetov. I liked this program but soon I came up with an idea to improve the program by making the grid vivid and adding something mine. 1) I taught the program to take swaps and commission into account. 2) If the market allows, the program trails a gain by moving Profit. 3) The program spends a part of the gain partially killing the lower order and moving to a smaller lot, preventing it from going
The algorithm of the adviser's work: When the Expert Advisor is launched at a specified distance from the price (first_step), BuyStop and SellStop orders are placed. Further, depending on which way the price went, one of them becomes market, and the other begins to crawl after the price. When the price rolls back, it also becomes market. If we have reached a set profit in some direction, the order is closed and a creeping pending order of the same direction is placed again. If the profit is n
High Freq Grid Scalper
Letsekang Bruno Sekhosana
This E.A is designed to wait for the perfect opportunity to get in the market, take a few trades (low risk) and get out. There is an option to Cut Loss at specific percentage of balance, this should be set to a max of 1% since we scalping. Very cautious EA, can go up to a few days without taking a trade. This should not alarm you, it simply means there currently is no opportunity available. Mainly designed for low spread brokers. Tested Pairs and their settings: EURUSD M1 : Jan 2022 - Dec 2
Night Trader EURUSD
Ugur Oezcan
4.21 (29)
The EA can trade multiple currencies. Please check our signals ( https://www.mql5.com/en/users/ugur-edin/seller ) for detailed information. No grid or martingale! No manual configuration or adjustment needed! Every trade is protected by stop loss. This Expert Advisor only trades for a short time frame at night, during the ending of the New York session. It uses low volatility moments and enters trades based on indicators. It then manages those trades with dynamic stop losses and take profits als
Matrix Arrow EA MT4
Juvenille Emperor Limited
5 (8)
Matrix Arrow EA MT4 is a unique expert advisor that can trade the Matrix Arrow Indicator's MT4 signals with a trade panel on the chart, manually or 100% automatically.  Matrix Arrow Indicator MT4 will determine the current trend at its early stages, gathering information and data from up to 10 standard indicators, which are: Average Directional Movement Index (ADX) Commodity Channel Index (CCI) Classic Heiken Ashi candles Moving Average Moving Average Convergence Divergence (MACD) Rel
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
News Scalping Executor is an advisor which helps to trade news with high impact and huge volatility. This advisor helps to create two opposite orders with risk management. It moves automatically stop loss level to avoid losses as much as possible by using many different algorithms. It helps to avoid trading the news if spread suddenly becomes very huge. To be profitable with this type of trading you should choose the most volatile types of news such as: GDP, CPI, Unemployment Claims, Intere
Synergy MT4
Ervand Oganesyan
Live performance : AUDUSD Quick start - Set the EA on M5 chart of AUDUSD, EURUSD or any forex major pair. - Set comfortable risk level. - Make sure the time zone settings are correct. The defaults are correct for most brokers. - Left the rest settings at their defaults, the EA is ready to trade. Customizable trading logic - Currency-specific intraday price actions are tracked, and depending on the nature of these actions trades are opened with an expectation of a return of the price to init
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
Black Arbitrage MT4
Ruslan Pishun
2.1 (10)
Attention!!! Do not try to test the EA in the Tester - it is simply impossible, because the EA opens positions on different 26 instruments. The tester is able to test only one pair. The EA uses 6 strategies. Trading is carried out in a pair of several currencies at the same time, for example, the EA opens orders simultaneously for two or more pairs and closes when a certain profit is reached. The EA trades many major currency pairs.  Monitoring:   https://www.mql5.com/ru/signals/author/profi_
Grid On MACD
Evgeniy Zhdan
3 (2)
The Expert Advisor works according to the pattern of grid placement of limit orders both according to the trend and against the trend. The trend direction is determined according to the indications of the standard MACD indicator. MACD can be configured for any timeframe available in MT4. There is an opportunity to choose the direction of the order removal - according to the trend or against the trend. The Expert Advisor has flexible settings that allow you to tailor trading for any trading instr
GRV Grid
Roman Gergert
GRV Grid expert Advisor is a regular grid trader trading in both directions. The peculiarity of this grid is that subsequent orders in the grid are opened not only upon reaching the set step but also on the basis of the signal, which allows not to accumulate a lot of orders that can very quickly drain the entire Deposit. The EA makes a decision based on the signals from THE mA indicator and the trend filter. The EA trades almost non-stop, i.e. there are almost always open orders, so for stable
ImpulsVolume
IGOR KIRIANEN
This EA trades both with a stop loss, so it can trade without it, with an increase in the lot (martingale) and without an increase in the lot (without a martingale). The advisor trades in the continuation of the impulse. It has a number of filtering indicators. This Expert Advisor is not afraid of large spreads (there is protection), it also has protection from the maximum lot and has trading from the percentage of the deposit. There are two types of Martingale (by adding from the original lot,
Classic Lock MT4
Oleksandr Vlasenko
5 (1)
Classic Lock is a trading system that combines several different algorithms: both for opening a transaction and for its support. The system uses averaging, hedging, and in its essence, is a breakout strategy that trades with the trend. The strategy can trade on almost any instrument: gold, oil, currency pairs, etc. Good for trading in volatile markets. Features: •    The Expert Advisor can be attached to ANY TIMEFRAME, since the settings already contain the trading parameter for the required ti
GS smart V
Aleksander Gladkov
1 (1)
GS smart V is 4 in 1 = Advanced Grid Advisor + Hedging + News Feed + Trend Indicator. Version 8.2 of GS smart advisor : Automatically adjusts its parameters to work on any Forex instrument (including cryptocurrencies, indices and CFDs) for USD accounts. To start trading, simply attach the EA to a chart, preferably EURUSD, GBRUSD, NZDUSD, AUDUSD and XAUUSD (Gold) timeframes M5, H1. For accounts from $1000 with leverage of 1:500 and higher. The most profitable strategy is set in the defaul
PRICE ACTION OB TRADER EA  - is perfect automatic trading system based on the price action research! This is "set and forget" Expert Adviser which is doing all trading job for you!  7  Set files available! Trading idea is based on famous powerful Price Action pattern - OutsideBar! Price Action OB Trader EA is very good investment - it will work years and years for you, all Set_files   have positive mathematical expectancy! Use Set files  from "Comments" section for using/testing the EA EA   Feat
Elastic Grid
Aliaksandr Charkes
4.83 (6)
Elastic Grid MT4 is a multi-functional grid Expert Advisor, designed for full or partial automation of various ideas related to grid trading. The EA trades on any timeframe and symbol. It can also trade several symbols with any amount of decimal places. It does not interfere with manual trading and other EAs' operation or any indicators. It allows to adjust its settings on the fly, works only with its own orders displaying all necessary data on them when needed, and for some situations it can be
Pacific Shark
Mohammed Mahajna
4 (1)
PACIFIC SHARK Robot is automated trading system based on Efficiency Ratio calculation  --No Martingale or Grid or other dangerous methods are used-- Live signal :  https://www.mql5.com/en/signals/1090996 in order to test and live trade 1 : test only on GBP/USD 2 : use only a daily time frame  (D1) 3: GMT Data Time = adjust shift hour EA input   ||| in (BACKTEST) based on your Historical data GMT time  ||| on (LIVE) based on your broker GMT ||| 4 DST : None we advice to test with Tick Data S
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+
Buyers of this product also purchase
CyNera MT4
Svetlana Pawlowna Grosshans
5 (8)
CyNera: Your Trading, Our Technology Signals >400%:   CyNera Signals >500%: CyNera Turbo Manual & set files: contact me after purchase to receive the manual and set files Price: The price increases based on the number of licenses sold Available copies: 4 Trading gold, one of the most volatile instruments in the market, demands precision, in-depth analysis, and strong risk management. CyNera Expert Advisor seamlessly integrates these elements into a sophisticated system designed for optimal gold
CyNeron MT4
Svetlana Pawlowna Grosshans
5 (1)
CyNeron: Precision Trading Meets AI Innovation Signals :   CyNeron Manual & set files : Contact me after purchase to receive the manual and set files Price : The price increases based on the number of copies sold Available copies : 5 AI-Driven Snapshot Analysis: A Market First CyNeron is the first EA on the market to integrate advanced AI into a revolutionary trading approach by capturing and processing detailed snapshots of market conditions. Utilizing cutting-edge AI-powered neural networks,
Maknight
Aliaksandr Khudakou
3 (2)
100% Automatic trading system (advisor) – EA MakNikht !!! TEST THE ADVISOR AND YOU WILL SEE THE RESULT FOR YOURSELF  We have made everything as convenient and simple as possible for YOU: AND NOW IN MORE DETAIL: WE have studied the currency pair AUDNZD GBPCHF GBPCAD GBPAUD EURCHF for a long time and have seen many advisers and here is our difference: 1.  Simultaneous work with several currencies, which increases efficiency 2. No martingale 3. No scalping 4. No grid 5. Always uses stop loss and ta
EA MakScalping
Aliaksandr Khudakou
Hello, dear friends! 100% Automatic trading system (advisor) – EA MakScalping !!! TEST THE ADVISOR AND YOU WILL SEE THE RESULT FOR YOURSELF Scalping is popular due to small stops and a good ratio between SL and TP. These reasons led to the birth of the MakScalping trading robot, and a simple trading idea and excellent results in the tester will make it popular. MakScalping is based on 2 linearly weighted moving averages. The idea of ​​​​trading is to take rollbacks when volatility increases. W
The Infinity EA MT4
Abhimanyu Hans
4.58 (19)
AI-Driven Technology with ChatGPT Turbo Infinity EA is an advanced trading Expert Advisor designed for GBPUSD and XAUUSD. It focuses on safety, consistent returns, and infinite profitability. Unlike many other EAs, which rely on high-risk strategies such as martingale or grid trading. Infinity EA employs a disciplined, profitable scalping strategy based on neural network embedded over machine learning, data analytics AI based technology provided by latest ChatGPT version to make your overall tra
AI Gen XII MT4
Denis Kurnev
4.4 (35)
AI Gen XII EA This is an Expert Advisor with the latest use of Artificial Intelligence and Neural Networks. The EA runs on the top-of-the-line GPT-4o platform and also uses Advanced Discrete Fourier Imaging in ATFNet aligns the frequency spectrum of the input series, allowing for a more complete analysis of time series data. The EA also boasts trading on different strategies simultaneously and matching backtest trades and real trading, which is very important in its time.  Details about Advisor
Aurum AI mt4
Leonid Arkhipov
5 (17)
Aurum AI – The Power of Artificial Intelligence for Trading Gold (XAU/USD) Experience the full power of technology in trading! Aurum AI is a breakthrough expert advisor designed for stable and safe performance in the gold market. It combines the power of artificial intelligence, precise trend analysis, and strict risk control to ensure maximum efficiency in every trade. Transparency and Results On December 19, our expert advisor (EA) incurred its first loss during the entire period of live tradi
Quantum Emperor MT4
Bogdan Ion Puscasu
4.84 (150)
Introducing   Quantum Emperor EA , the groundbreaking MQL5 expert advisor that's transforming the way you trade the prestigious GBPUSD pair! Developed by a team of experienced traders with trading experience of over 13 years. IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. ***Buy Quantum Emperor EA and you could get Quantum StarMan or Quantum Gold Emperor for free !*** Ask in private for more details New Live Sign
Bitcoin Robot MT4
Marzena Maria Szmit
4.77 (35)
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 Golden Jet Fighter GTX MT4
Andrei Nazarets
4.33 (6)
AI Golden Jet Fighter GTX   MT4 is a straightforward and efficient Expert Advisor (EA) for gold trading on the Meta Trader 4 platform. Utilizing Neural Networks, this EA is designed for scalping in the gold market (XAU/USD). The main strategy of AI Golden Jet Fighter GTX focuses on identifying small price fluctuations and opening positions to capture profits within short time frames. The EA analyzes market conditions in real-time and automatically executes trades with predefined stop-loss and t
Gold One MT4
Habib Gholamali Heidari
5 (4)
Gold One  MT4 Hello to all gold trading enthusiasts in Forex, Welcome to our robot, where you join the ranks of the top gold traders. With over two decades of precise experience in the Forex market, we proudly introduce the latest generation of trading robots. Features:  Ideal for prop firm challenges. Suitable for all account  sizes, including low capitals. NO   Grid and   NO   martingale 100% Fully automated This robot employs the most recent, cutting-edge, and advanced gold-specific indica
Big Forex Players MT4
Marzena Maria Szmit
4.72 (29)
We proudly present our cutting-edge robot, the  Big Forex Players EA  designed to maximize your trading potential, minimize emotional trading, and make smarter decisions powered by cutting-edge technology. The whole system in this EA took us many months to build, and then we spent a lot of time testing it. This unique EA includes three distinct strategies that can be used independently or in together. The robot receives the positions of the   biggest Banks   (p ositions are sent from our databa
GbpUsd Robot MT4
Marzena Maria Szmit
5 (11)
The GBPUSD Robot MT4 is an advanced automated trading system meticulously designed for the specific dynamics of the  GBP/USD  currency pair. Utilizing advanced technical analysis, the robot assesses historical and real-time data to  identify potential trends , key support and resistance levels, and other relevant market signals specific to GBP/USD. The Robot opens positions  every day,  from Monday to Friday, and  all positions are secured  with Take Profit, Stop Loss, Trailing Stop, Break-Even
CoreX G MT4
Arseny Potyekhin
5 (7)
Overview The CoreX G EA is an advanced trading system specifically designed to tackle the complexities of the Forex market. By leveraging cutting-edge neural networks, sophisticated machine learning technologies, and an integrated big data strategy, CoreX G delivers exceptional accuracy and security in trading. This Expert Advisor (EA) stands out due to its technological excellence and premium customer support, ensuring users are always assisted with any questions or concerns. Signals:   Live
Boring Pips MT4
Thi Thu Ha Hoang
4.71 (14)
Have you ever wondered why most expert advisors are not effective in live trading, despite their perfect backtest performance? The most likely answer is Over-fitting . Many EAs are created to ‘learn’ and adapt perfectly to the available historical data, but they fail to predict the future due to a lack of generalizability in the constructed model. Some developers simply don't know about the existence of over-fitting, or they know but don't have a way to prevent it. Others exploit it as a tool t
Diamond PRO
Fanur Galamov
5 (25)
Holiday sale -40% is active! Happy New Year and Merry Christmas! Diamond PRO is enhanced powerful version of Diamond for advanced traders. Pro version includes optimized cores, new impoved entry points filters, new multistage profit closure algorithm and сontains number of external control parameter that allows build and fine tune own tradind decisions and algorithms. The system provides more accurate market entries, analyzes and filters upcoming economic news, contains spread protection and an
Gold Scalping AI
Ho Tuan Thang
5 (1)
ONLY 3 COPIES OUT OF 10 LEFT AT $299! After that, the price will be raised to $399. - REAL SIGNAL: Default Setting:  https://www.mql5.com/en/signals/2276213 Gold Scalping AI is an EA that uses artificial intelligence technology to analyze data of many indicators. From there, EA will have the best option to enter orders. The biggest difference of Gold Scalping   AI is that the EA can control the Risk:Reward ratio much better than other EAs.That is possible thanks to a set of tools to control e
Aura Black Edition
Stanislav Tomilov
4.73 (15)
Aura Black Edition is a fully automated EA designed to trade GOLD only. Expert showed stable results on XAUUSD in 2011-2020 period. No dangerous methods of money management used, no martingale, no grid or scalp. Suitable for any broker conditions. EA trained with a multilayer perceptron Neural Network (MLP) is a class of feedforward artificial neural network (ANN). The term MLP is used ambiguously, sometimes loosely to any feedforward ANN, sometimes strictly to refer to networks composed of mult
Aura Neuron MT4
Stanislav Tomilov
5 (1)
Aura Neuron is a distinctive Expert Advisor that continues the Aura series of trading systems. By leveraging advanced Neural Networks and cutting-edge classic trading strategies, Aura Neuron offers an innovative approach with excellent potential performance. Fully automated, this Expert Advisor is designed to trade currency pairs such as EURUSD and XAUUSD (GOLD). It has demonstrated consistent stability across these pairs from 1999 to 2023. The system avoids dangerous money management techniques
The Gold Reaper MT4
Profalgo Limited
4.55 (29)
PROP FIRM READY! ( download  SETFILE ) LAUNCH PROMO: Only a few copies left at current price! Final price: 990$ Get 1 EA for free (for 2 trade accounts) -> contact me after purchase Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here New V2.2 Live Signal Old Live Signal Welcome to the Gold Reaper! Build on the very succesfull Goldtrade Pro, this EA has been designed to run on multiple timeframes at the same time, and has the option to set the trade frequency from very conser
FX EurUsd Robot MT4
Marzena Maria Szmit
5 (11)
The EUR/USD Multi-Strategy Trading Robot MT4 is an advanced tool designed to optimize trading by combining 3 key systems:   daily trading, volume analysis, and Fibonacci   retracement levels. This robot works by integrating these different approaches to create a more dynamic and adaptable strategy for trading the   EUR/USD pair . EA adapts to different market conditions, this makes it an ideal solution for traders looking to enhance their trading strategy with a powerful, multi-faceted approach.
Supply Demand EA ProBot
Georgios Kalomoiropoulos
5 (3)
Fully Automated EA based on Supply and Demand Principles. The first Supply and Demand EA that is offering Complete Automation . Now trading Becomes Effortless, offering full control over your trading strategy through a User-Friendly graphical Trading Panel. You get a Super High Quality Algorithmic Trading Software that contains more than 15,000 lines of code. The best way to trade "Prop Firms Challenges" and Pass all the Stages to be a Quilified Trader. Supply Demand EA ProBot Manual      ||  
AW Recovery EA
AW Trading Software Limited
4.4 (75)
The Expert Advisor is a system designed to recover unprofitable positions. The author's algorithm locks a losing position, splits it into many separate parts, and closes each of them separately. Easy setup, delayed launch in case of drawdown, locking, disabling other Expert Advisors, averaging with trend filtering and partial closing of a losing position are built into one tool. It is the use of closing losses in parts that allows you to reduce losses with a lower deposit load, which ensures saf
Prisma EA
David Jukl
The Prisma Expert Advisor is a set of rules that allows you to achieve consistent results on the FOREX currency market thanks to sophisticated open position management, quality money management and opening and closing of positions, where mathematics together with probability play the main role. Prisma is able to work with stability on all major currency pairs and their combinations provided the system is run with a suitable broker that offers favorable conditions for such trading. However, it is
XG Gold Robot MT4
Marzena Maria Szmit
4.52 (27)
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 Scalp Pro
Profalgo Limited
5 (3)
NEW PROMO: Only a few copies copies available at current price Final price: 999$ NEW: Choose 1 EA for free! (for 2 trade account numbers) Make sure to check out our " Ultimate EA combo package " in our   promo blog ! LIVE SIGNAL Bitcoin Scalp Pro is a unique trading system on the market.  It is fully focused on exploiting the volatility of the Bitcoin market by trading the breakouts of support and resistance levels. The focus of the EA lies on safety, which translates into extreme low drawdow
MAX Gold 1
Peng Peng Gao
这是一种全自动智能自适应算法。MAX Gold  系统计算历史数据,并根据即将突破支撑位和阻力位的概率百分比执行分析,并下达挂单。 EA 交易可适应任何市场条件。它使用质量为 99,9% 的真实刻度进行了回溯测试和优化。它已成功完成压力测试。 EA 包含统计信息收集算法,并在信息面板上输出。 建议选择ECN经纪商和点差最低的账户。 货币对/时间框架: EURUSD M30、 EURUSD H1、 USDJPY M30、 USDJPY  H1、   GBPUSD M30 、 GBPUSD  H1 、 XAUUSD M30 推荐货币对/时间框架: EURUSD   H1 、USDJPY   H1   or  EURUSD   M30 、 USDJPY  M30  or  XAUUSD M30 需要 VPS。 要求和建议 5 位引号。 最大点差:0 - 20 点。 最低存款额:100 美元。 最大止损水平:0 - 5 点。 建议使用 1:100 或更高的杠杆。 如果您在同一个账户上使用多个 Advisor,请确保所有 Advisor 都有不同的 Magic Num
Gemini Trump
Jingzhi Wang
Gemini Trump EA represents a sophisticated advancement in grid trading systems. Unlike traditional methods that rely on fitting the system to historical data, Gemini Trump EA is engineered to exploit existing market inefficiencies, leveraging authentic market dynamics to generate profit. Gemini boasts an impressive array of features designed for both convenience and performance. With its One Chart Setup, you can trade all supported symbols using a single chart, while its Multi-Currency Support s
Aurus Gold MT4
Dmitriq Evgenoeviz Ko
"Aurus Gold" is a program capable of automatically analyzing and trading on the currency market (Forex) without human intervention. This innovative tool for decisions on buying or selling currency pairs. The main task of Aurus Gold is to maximize profits and minimize risks for investors. It is capable of working around the clock, based on pre-set parameters and trading rules. The main advantages of using a currency robot include: 1. Automation of trading: The ability to carry out transa
The Matrix Mind AI MT4
Pool Quintal Carlos Alejandro
The Matrix Mind AI: A New Standard in Forex Trading The Matrix Mind AI is an innovative trading advisor designed to push the boundaries of Forex trading. Built on Matrix Factorization Models, it deeply analyzes market data, uncovering hidden patterns and offering unique opportunities for strategy development. Real SIgnal:  https://www.mql5.com/en/signals/2277247 Price Offer: First 3 copies:   $499 Next price:   $599 Key Features of The Matrix Mind AI Matrix Factorization at Its Core Advanced a
Filter:
No reviews
Reply to review
Version 1.6 2024.04.25
- unlocked other intruments: XAUUSD,XAGUSD,OIL,SP500,etc (example settings you'll find in params.txt inside folder tester and MQL4/files)
- XAUUSD,XAGUSD,OIL,SP500,etc added TP,SL by % (not for currencies)
- code improvements, prepared for multitimeframe version
- with GUI takeprofit is saved on chart
- extended dynamic_lots function (fibonacci sequence, martingale), info on chart: (N),(S),(F),(M)
- 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.
Version 1.5 2024.04.11
- fixing a bug when the broker has no limit on the number of orders
- added some error descriptions to the logs
- changed default settings: Built-in is set to SAFE
- LogLvL is set to MT4logs for backtesting
Version 1.4 2024.04.02
- moved the window size change to the indicator
- changed parameter name to Built-in
Version 1.3 2024.03.29
fixed typo in pending orders
Version 1.2 2024.03.24
changed parameter names
Version 1.1 2024.03.23
Fixed statistics window