• Übersicht
  • Bewertungen
  • Diskussion
  • Neue Funktionen

Short Trend Reversal

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.

======================================== LIVE SIGNALS ========================================

EUR basket: https://www.mql5.com/en/signals/2218143

GBP basket: https://www.mql5.com/en/signals/2225924

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

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);
      }
   }
}


Empfohlene Produkte
| 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
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+
Bear vs Bull EA Is a automated adviser for daily operation of the FOREX currency market in a volatile and calm market. Suitable for both experienced traders and beginners. It works with any brokers, including American brokers, requiring FIFO to close primarily previously opened transactions. *In order to enable the panel, it is necessary to set the parameter DRAW_INFORMATION = true in the settings;  Recommendations Before using on real money, test the adviser with minimal risk on a cent tr
Universal MT4 MACD
Vladimir Gribachev
Handelsroboter auf dem MACD-Indikator Dies ist eine vereinfachte Version des Handelsroboters, er verwendet nur eine Einstiegsstrategie (die erweiterte Version hat mehr als 10 Strategien) Vorteile für Experten: Scalping, Martingale, Grid-Trading. Sie können den Handel mit nur einer Order oder einem Orderraster einrichten. Ein hochgradig anpassbares Auftragsraster mit einem dynamischen, festen oder Multiplikatorschritt und einem Handelslot ermöglicht es Ihnen, den Expert Advisor an fast j
Surf EA
Rustem Gabetdinov
5 (1)
Surf EA is a fully automatic grid based Expert Advisor that looks for reversal areas on the chart MT5 version:   https://www.mql5.com/ru/market/product/99693 Nature of work: The EA uses several patterns, indicators and other important conditions to search for signals Buy and sell positions are independent of each other Only one order can be opened on one bar of the current period The indicators used in the EA are included in the standard set of the terminal Recommendations: Trading pair: AUDCAD
You CDI
Evgeny Vlasov
You CDI (You Can Do It) Порядок работы Советник работает на любом таймфрейме на любых валютных парах. При работе советника анализируется состояние рынка , при возникновении необходимых условий происходит открытие рыночного ордера. Советник имеет блок TrailingStop , позволяющий перемещать StopLoss за движением цены. Основным отличием этого блока от стандартного является его не линейность. То есть чем ближе цена будет к TakeProfit, тем ближе к цене будет StopLoss. Это позволяет достигать макс
PipFinite EA Breakout EDGE
Karlo Wilson Vendiola
5 (4)
The Official Automated Version of the Reliable Indicator PipFinite Breakout EDGE EA Breakout EDGE takes the signal of PipFinite Breakout EDGE indicator and manages the trade for you. Because of numerous financial instruments to consider, many traders want the signals to be fully automated. The EA will make sure all your trades are executed from entry to exit. Saving you time and effort while maximizing your profits. The Edge of Automation Effortless price action trading is now possible
Grid and MACD
Vladimir Gribachev
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
Grandmaster
Agus Santoso
MT4-Version: https://www.mql5.com/en/market/product/79803 MT5-Version: https://www.mql5.com/en/market/product/107840 Der „Grandmaster“ Expert Advisor (EA) ist ein hochentwickeltes automatisiertes Handelssystem, das speziell für den Indexhandel entwickelt wurde. Dieser EA verwendet einen strategischen Ansatz zur Eröffnung und Verwaltung von Handelspositionen, der auf einer Kombination aus fortschrittlicher Signalanalyse und robusten Risikomanagementtechniken basiert. Hier eine ausführliche Bes
Grid and MA
Vladimir Gribachev
5 (3)
This is a grid Expert Advisor. It features several trading strategies based on Moving Average. It works on minute bar Open prices. Virtual trailing stop, stop loss and take profit can be set in 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 order grid is adaptive and is made of market orders. If the price ha
EA Disperse
Oleg Pavlenko
The starting price of the adviser is 50 usd EA Disperse is an Expert Advisor for overclocking a deposit. The EA is not designed for long-term trading, so it makes no sense to test it for a long period. There is no point in describing his strategy, everything can be seen in the strategy tester in visual mode. If anyone is interested, then the options for overclocking deposits will be in discussions, in post #2 Timeframe: M15  Broker : Any Currency pair: Any, except metals, commodities and
Wolf Stream
Vadym Nemo
5 (2)
Робот Wolf Stream имеет в своей основе особенность "видеть" график так, как его видит человек. Именно поэтому он точно считывает настроение игроков. Страхи и надежды у толпы формируются в текущей момент, в текущих ситуациях. Робот реагирует на них и действует оптимальным образом для каждой из ситуаций.  Торговля в реальном времени принесла 103% прирост с 26 июля 2021 года (3.5 месяца) На рынке есть множество фаз, которые по характеру своему в корне отличаются друг от друга. Поэтому необходим инд
Max ScalperSpeed
Paranchai Tensit
Max ScalperSpeed   is a fully automated expert advisor. This system has been developed to improve the efficiency of generating more returns. Rely on scalping trading strategies and recovery strategies with appropriate trading frequencies, and also able to work well in all market conditions, whether trend or sideways, able to trade full time in all conditions. Enable or disable news filtering according to user needs. Added a proportional lot size adjustment function, where users can choose to ad
HFT King Ea
Ram Klein Caputol
Wir stellen HFT KING EA vor – den ultimativen HFT KING des Handels! Dieses vollautomatische Hochfrequenzhandelssystem wurde entwickelt, um Ihr Handelserlebnis mit seinem fortschrittlichen Algorithmus und den modernsten Funktionen zu revolutionieren. HFT King nutzt eine einzigartige Kombination aus technischer Analyse, künstlicher Intelligenz, Hochfrequenzhandel und maschinellem Lernen, um Händlern zuverlässige und profitable Handelssignale bereitzustellen. Die hochmoderne Technologie von HFT Kin
Blue Dollar EA
NGUYEN NGHIEM DUY
Blue Dollar EA is based on a multifunctional template and is designed for intraday trading with all major currency pairs on any timeframe. The strategy is based on analysis of price action within the daily volatility range for a given period. The EA has a vast set of features - it can be configured for any trading style, which makes it not just a trading robot, but a multifunctional flexible designer. The EA applies order placement levels, stop loss, take profit and trailing stop levels invisibl
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
Chest of gold
Evgeny Belyaev
Chest of gold   ist ein professioneller automatischer Berater mit neuronalen Netzen, der speziell für den Goldhandel im ersten Halbjahr entwickelt wurde. Dieser Handelsroboter, der gemäß meiner ursprünglichen Strategie entwickelt wurde, analysiert gleichzeitig Daten von 6 Indikatoren in drei Zeitintervallen: M5, M30 und H1. Unser Programm ist das beste Beispiel für fortschrittliche Computerplattformen zur Datenanalyse in der Handelsbranche. Der Chest of gold-Berater ist ein intelligentes Handel
PairsTrading
Evgenii Kuznetsov
3.67 (9)
The EA identifies divergences in two correlated currency pairs and trades in the direction where they converge back. Working timeframe: M30 Input parameters MagicNumber - identification number for the EA. OrdersComment - comment to order, automatic if an empty value is set. Lots - lot size. DepoPer001Lot - automatic lot calculation (specify the balance per 0.01 lot) (if 0, the value from 'Lots' parameter is used). TimeFrame - working timeframe. Symbol #2 - correlated currency. Symbol #2 revers
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):
MavericksProPlus
Langtha Prosanta Daudung
The  MaverickProPlus  is a fully automated EA design for trading EURUSD pair. It is design to trade along the trend and also trade during reversal. It uses adaptive grid strategy. In adaptive grid strategy the distance between the trade is not fixed, the entry of next trade is base on most favorable market condition to close the trade in profit. So the risk associated with normal  grid/Martingale  strategy is considerably reduced by adopting adaptive grid distance strategy.  Back tested for 5 y
Gold Matrix pro Welcome to the Gold Matrix Ea pro. The Robot is based on one standard Indicator. No other Indicator required =============================================================================================== This Robot is fully automated and has been created for everyone. The Robot works also on cent accounts. =============================================================================================== =>   works on all Time Frames from 1Minute to 1Day => On the lower Frames
We present to your attention an expert who trades on indicators! It will become an indispensable assistant in building your trading strategy : it does not matter whether you trade manually or prefer to trust the work of robots — it will be useful for every trader. With it, you can test any arrow indicator , check the effectiveness of signals , and choose the best parameters for the selected instrument. The Expert Advisor trades on the signals of arrow indicators, processes any indicators th
The One EA
Thanat Thitithammaphong
The one EA trades the currency pairs GBPCAD, EURSGD, AUDNZD on the M1 timeframe. The EA has Take Profit=160-400 point and Stop Loss = 700-800 point, but it will enter and exit based on conditions, meaning it may not always reach the Take Profit if profitable, or the Stop Loss if experiencing losses. The recommended starting capital is $100 if not using a doubling lot strategy. However, if employing a doubling lot strategy, the capital should be $1000 per currency pair. The recommended broker is
Vizzion
Joel Protusada
Vizzion is a fully automated scalping Expert Advisor that can be run successfully using GBPJPY currency pair at H1 timeframe. Very Important This Expert Advisor can not run with any EAs in the same account. As part of the money management plan, it calculates and monitors the Margin Level % and assumes that all open trades are created by it. If you want an Expert Advisor that trades in a daily basis, this EA is not for you because using this requires a patience to wait for a few days or weeks o
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
Santa Scalping
Morten Kruse
3.05 (21)
Santa Scalping is a fully automated Expert Advisor with no use of martingale. Night scalping strategy. The SMA indicator filter are used for entries. This EA can be run from very small accounts. As small as 50 EUR. General Recommendations The minimum deposit is 50 USD,  default settings reccomend for eurusd m5 gmt +2 . Please use max spread 10 if you will not have orders change it to -1. Use a broker with good execution and with a spread of 2-5 points. A very fast VPS is required, preferably
RebelFox Pro
Raphael Schwietering
RebelFox Pro is a fully automated EA designed to trade XAUUSD in H1 only. It is based on machine learning cluster analysis and genetic algorithms. EA contains self-adaptive market algorithm, which uses price action patterns and standard trading indicators.  Entry and exit logic operates on Bar Close only. This filters market noise, dramatically speeds up optimizations, avoids stop loss hunting, and ensures proper operation at any broker with a reasonable spread. The EA uses an advanced algorithm
Climbing Scalper
Liudmyla Bochkarova
4.25 (8)
Climbing Scalper EA is a night scalper that trades during the calmest periods of the market. During this period the markets usually fluctuate and the advisor will trade within these ranges. Each trade will have an initial stop loss and take profit, but the EA also uses advanced stop loss management algorithms that will assess the strength of the trades. 8 copy left at 399, next price 499 Buy this EA, post a feedback and get  Golden Future  for free The advisor works on all pairs with a stable s
Great Hunter
Pavel Malyshko
Авторская стратегия демонстрирующая хорошие результаты на валютной паре eurchf m15. Советник в своей работе ищет наиболее вероятные точки разворота на графике и если сигнал подтверждается открывает сделку. Советник работает круглосуточно, что делает его универсальным вне зависимости от времени на рынке, что также отличает его от большинства советников торгующих в строго ограниченное время. По мере роста спроса на советник и увеличения хороших отзывов, цена на него будет расти. Поспешит
Intensive
Evgeniy Zhdan
The Expert Advisor algorithm determines on daily charts those candlestick patterns, which set the intraday trading direction. The trading EA determines how long the price is moving in overbought/oversold zones and starts working in the direction of the expected trend movement. Each position is accompanied with a tight stop loss and take profit. Only one active position can be open in the market. The EA was developed and tested using 99% quality quotes. The Expert Advisor has a built-in news filt
Käufer dieses Produkts erwarben auch
The Gold Reaper MT4
Profalgo Limited
4.86 (29)
PROP-FIRMA BEREIT!   (   SETFILE herunterladen   ) STARTPROMO: Nur noch wenige Exemplare zum aktuellen Preis verfügbar! Endpreis: 990$ Erhalten Sie 1 EA kostenlos (für 2 Handelskonten) -> kontaktieren Sie mich nach dem Kauf Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal Willkommen im Gold Reaper! Aufbauend auf dem sehr erfolgreichen Goldtrade Pro wurde dieser EA für die gleichzeitige Ausführung in mehreren Zeitrahmen konzipiert und bietet die Möglichkeit, di
Gold Trade Pro
Profalgo Limited
4.59 (22)
Promo starten! Nur noch wenige Exemplare für 449$ verfügbar! Nächster Preis: 599$ Endpreis: 999$ Erhalten Sie 1 EA kostenlos (für 2 Handelskonten) -> kontaktieren Sie mich nach dem Kauf Ultimate Combo Deal   ->   click here New live signal:   https://www.mql5.com/en/signals/2084890 Live Signal Set Prop Firm Set JOIN PUBLIC GROUP:   Click here Gold Trade Pro tritt dem Club der Goldhandels-EAs bei, allerdings mit einem großen Unterschied: Dies ist eine echte Handelsstrategie. Was meine ich
GoldPulse AI
Babak Alamdar
4.29 (14)
Kaufen Sie keinen Backtest, sondern ein echtes Handelssystem:   Live Signal 1     Live Signal 2       Live Signal 3   Dieser Preis ist für die Dauer der Aktion befristet und wird in Kürze erhöht Erhalten Sie 1 EA kostenlos -> kontaktieren Sie mich nach dem Kauf Zum aktuellen Preis sind nur noch wenige Exemplare verfügbar, der nächste Preis liegt bei -->> 1480 $ Welcome to the GoldPulse AI Hey, I'm GoldPulse AI! Dies ist der erste intelligenteste Roboter, der Gold oder XAU mit vollständi
Quantum Emperor MT4
Bogdan Ion Puscasu
4.92 (130)
Wir stellen vor       Quantum Emperor EA   , der bahnbrechende MQL5-Expertenberater, der die Art und Weise, wie Sie mit dem prestigeträchtigen GBPUSD-Paar handeln, verändert! Entwickelt von einem Team erfahrener Händler mit über 13 Jahren Handelserfahrung. IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. ***Kaufen Sie Quantum Emperor EA und Sie könnten Quantum StarMan, Quantum Trade EA oder Quantum Gold Emperor kost
Diamond Titan FX MT4
Lo Thi Mai Loan
5 (2)
Startaktion: 30% RABATT! Es sind nur noch 3 Verkäufe übrig, um zum aktuellen Preis zu kaufen. Nächster Preis: $1033 Erhalte kostenlos den US30 Scalper EA und den Quantum Algo EA -> kontaktiere mich nach dem Kauf Live signal:  https://www.mql5.com/en/signals/2220190?source=Site+Profile+Seller Prop Signal:  https://www.mql5.com/en/signals/2223219?source=Site+Signals+Profile+From+Author MT5:  https://www.mql5.com/en/market/product/116010?source=Site+Market+Product+Page Handelshistorie nach Bestehe
Hinweise Der EA enthält maximal 6 Einstiegspunkte, die Losgröße pro Trade entspricht der Order-Losgröße multipliziert mit 6, daher bitte keine zu hohe Losgröße verwenden. Die standardmäßige Losgrößenberechnung erfolgt nicht prozentual zum Kapital. Unsere Standardberechnung ist nicht von der Hebelwirkung beeinflusst und ermöglicht eine genauere Risikokontrolle.  Es wird empfohlen, Kapital über 1.000 US-Dollar einzusetzen, um die Risikobeständigkeit zu erhöhen. Bei gleichzeitiger Nutzung mehrerer
Hercules AI MT4
Aleksandr Chebotaev
Hello, my name is Alexander. I would like to introduce you to my new development, the Hercules AI advisor. The advisor is synthesis of Price Action Method and Artificial Intelligence technologies.  It doesn't use  any indicators. The EA works well on Gold  pair. The advisor has shown stable performance for more than 10 years. It does not use dangerous trading methods such as martingale, etc. All transactions are protected by take profit and stop loss. I tried to make the advisor as easy to insta
Daytrade Pro Algo
Profalgo Limited
5 (6)
Aktion starten: Begrenzte Anzahl von Exemplaren zum Tagespreis erhältlich Endpreis: 990 $ NEU: Erhalte 1 EA gratis!   (für 2 Handelskonten) Ultimate Combo Deal   ->   click here LIVE RESULTS:   https://www.mql5.com/en/signals/1949810 JOIN PUBLIC GROUP:   Click here Set Files Willkommen bei DayTrade Pro Algo!   Nachdem ich jahrelang die Märkte studiert und verschiedene Strategien programmiert habe, habe ich einen Algorithmus gefunden, der alles hat, was ein gutes Handelssystem braucht: Es is
TrendMaster FX MT4
Chen Jia Qi
5 (13)
Vorstellung unseres MT5 EA: Mit fortschrittlichen Algorithmen und Deep Learning Technologie ausgestattet, ist unser Expertenberater (EA) sorgfältig designt, um Sie durch die verwickelte Welt des Devisenhandels zu navigieren. Das System analysiert fleißig die Marktaktivitäten und führt Trades basierend auf vorher festgelegten Kriterien durch, damit Sie Markttrends effektiver erfassen können. Empfohlene Währungspaare: Live-Signal:   TrendMaster FX MT4-Version:   TrendMaster FX MT4 Wir führen derz
Oracle MT4
Stanislav Tomilov
4.38 (8)
Oracle Trading Expert the Quintessence of Modern Programming Technologies Expert Oracle for MetaTrader, trading on GBPUSD and Gold, represents the quintessence of modern programming technologies. Our unique proprietary methods and developments are based on advanced machine learning concepts, making our trading expert truly one-of-a-kind. We offer cutting-edge modules and neural architecture that embody innovative advancements in financial programming. Our algorithms rely on in-depth data analysi
Aura Black Edition
Stanislav Tomilov
4.76 (17)
Aura Black Edition is a fully automated EA designed to trade GOLD only. Expert showed stable results on XAUUSD in 2011-2020 period. No dangerous methods of money management used, no martingale, no grid or scalp. Suitable for any broker conditions. EA trained with a multilayer perceptron Neural Network (MLP) is a class of feedforward artificial neural network (ANN). The term MLP is used ambiguously, sometimes loosely to any feedforward ANN, sometimes strictly to refer to networks composed of mult
XG Gold Robot MT4
Marzena Maria Szmit
4.39 (23)
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
One Gold MT4
Stanislav Tomilov
4.67 (12)
Welcome to the world of next-generation investments with our unique trading robot for gold on the MetaTrader platform! Our proprietary developments represent the pinnacle of advanced data analysis computational platforms in the world of trading. One Gold EA is a genuine smart algorithm, operating at a level beyond human traders' reach. Its unique method is based on the principles of a neuroscanner and advanced technologies in neural networks, EA is capable of analyzing historical and current dat
Bitcoin Robot MT4
Marzena Maria Szmit
5 (10)
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 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
TopBottomEA
lizhi fu
4.8 (54)
TopBottomEA's advantage: the first support for small capital work EA, real trading for more than 4 years; this EA based on volatility adaptive mechanism, only one single at a time, each single with a stop-loss, an average of about 4 orders per day, holding a single length of 12 hours or so, with a limit of $ 20 principal challenge backtesting ran through more than 10 years. Every interval of three days to increase the price of $ 100, the price process: 998 --> 1098 --> 1198...... Up to the targ
SouthEast
Sugianto
5 (13)
SouthEast is an expert advisor developed from my experience in manual trading that has been automated. SouthEast is specifically designed to generate maximum profits with small deposits by prioritizing the security of your funds. Why SouthEast? SouthEast does not require complicated settings and is easy to use because user only need to upload a set file that is already available. Currently there are set files for 20 fx pairs. The best GRID EA with the ability to control risks. I will share
AI NeuroX EA MT4
Denis Kurnev
5 (2)
AI NeuroX EA is an innovative trading advisor based on advanced artificial intelligence technologies, including neural networks and the Perplexity and GPT-4 platforms. This advisor has a unique ability to analyze and predict the dynamics of financial markets using deep learning and advanced algorithms. Thanks to the intuition that even the most experienced traders would envy, AI NeuroX EA is capable of developing unprecedented trading strategies, ensuring excellent performance. This advisor oper
Dragon Multi EA MT4
Mansour Babasafary
4.72 (18)
3 experts in 1 expert Strategy based on price action Made specifically for the best forex currency pairs Can be used in the best time frame of the market at a very reasonable price This expert is basically 3 different experts. But we have combined these 3 experts in 1 expert so that you can use 3 experts at the lowest price. All three strategies are based on price action. But based on different trends. Long term, medium term and short term Attributes : Can be used in the EURUSD , AUDUS
Bandwagon
ADELYN CASTILLO
4.93 (27)
240 % Gewinn im 22. Monat. Sie können das Bandwagon Live-Konto mit der 2-Jahres-Leistung Bandwagon 2-Jahres oder Bandwagon V2 überprüfen. *NOTIZ: Jetzt mit 50 % Rabatt! Sichern Sie sich jetzt Ihr Exemplar! Erwarten Sie jeden Monat eine Preiserhöhung *WARNUNG: SAGEN SIE NEIN ZU PIRACIE. Seien Sie vorsichtig mit Benutzern, die nach einer Kopie von Bandwagon EA fragen. Bandwagon kann Piraterie erkennen und wenn Ihr Konto solche Dinge erkennt, kann ich nicht garantieren, dass der EA immer noch so f
Gold Garden MT4
Chen Jia Qi
5 (4)
Deep Learning gestaltet den Goldhandel neu, und intelligente Assistenten pflegen den Handelsgarten wie Gärtner. Der "Gold Garden" EA verwendet intelligente Deep-Learning-Technologie und 20 Jahre Datentraining, um die Leistung der Strategie erheblich zu verbessern. Mit ihm wird der Handel einfacher und intelligenter. Lassen Sie uns gemeinsam das Zeitalter der Intelligenz einleiten und den Handel in einen Garten des Glücks verwandeln. Dies wird Ihr exklusiver Gold Garden Steward sein. Die MT5-Vers
Aura White Edition
Stanislav Tomilov
4.4 (5)
Aura White Edition   is unique Expert Advisor that continues the Aura series of advisors. The Expert Advisor is based on the engine of   Aura Black Expert Advisor , but with a number of changes and author's settings for currency pairs. Innovative methods of the programme's approach to trading, and promising performance results are possible thanks to the use of modern technologies and methods. Aura White Edition is a fully automated EA designed to trade currencies only. Working pairs EURUSD, GBPU
Big Forex Players MT4
Marzena Maria Szmit
4.65 (23)
We proudly present our cutting-edge robot, the  Big Forex Players EA  designed to maximize your trading potential, minimize emotional trading, and make smarter decisions powered by cutting-edge technology. The whole system in this EA took us many months to build, and then we spent a lot of time testing it. This unique EA includes three distinct strategies that can be used independently or in together. The robot receives the positions of the   biggest Banks   (p ositions are sent from our databa
Supply Demand EA ProBot
Georgios Kalomoiropoulos
Vollautomatischer Berater nach dem Prinzip von Angebot und Nachfrage . Zum ersten Mal bieten wir einen vollautomatischen Angebots- und Nachfrageberater an . Trading leicht gemacht und Sie haben jetzt die volle Kontrolle über Ihre Handelsstrategie Verwendet ein praktisches grafisches Bedienfeld. Sie erhalten eine sehr hochwertige algorithmische Handelssoftware mit über 15.000 Codezeilen. EA ProBot Angebots- und Nachfrageleitfaden The Best Way to Trade Prop Firms fordert Sie bei jedem Schritt
Ai Hybrid Robot MT4
Mansour Babasafary
5 (3)
Several experts in one expert With this expert, you can use several up-to-date strategies Enhanced with artificial intelligence Can be used in several popular forex currencies Can be used in the most popular forex time frames Without using high-risk strategies Attributes : Can be used in the EURUSD , GBPUSD , USDCHF , AUDUSD , USDCAD , NZDUSD  currency pairs Can be used in M30 , H1 , H4 , D1 time frames Has profit limit and loss limit Without using risky strategies like martingale or hedg
Ai Multi Trend MT4
Mansour Babasafary
50% discount, until 2024.06.10 (for old customers and first buyers >>> Expert final price: $1000) Get a 50% bonus by buying (or even renting) any of our products. After buying (or renting), send a message for more information. Expert trend hunter Combined with artificial intelligence Control the AI ​​with a variety of simple settings Without using dangerous strategies (all trades have a profit limit and a loss limit) Can be used in 6 main market currency pairs and 4 important time frames
FXMachine
Alexander Kozachuk
4.75 (12)
Statistiken zu einem echten Konto seit 2020 Backtest für die letzten 13 Jahre Low-Drawdown-Strategie Mehrwährungsalgorithmus Kompatibel mit jedem Broker Bewährtes Absinkkontrollsystem Handel auf einem echten Konto seit 2020 : Klicken Sie hier Handel mit USDCAD, EURGBP, GBPUSD, EURUSD: Klicken Sie hier Handel mit EURGBP: Klicken Sie hier Handel mit GBPUSD: Klicken Sie hier Vollständige Backtests des FXMachine EA stehen hier zum Download bereit: Klicken Sie hier Über uns: Die
Never Dies MT4
M Ardiansyah
5 (1)
Never Dies EA is a super professional EA using advanced mathematical and statistical theories. The EA analyzes multiple timeframes (Chart Timeframe and D1) to detect strongest directions and verify signals. The EA is in the category of HFT trading EAs and will not use any dangerous recovery methods such as grid, martingale, hedge, .... All trades are powered by TP/SL to control the risk of the account. Also some smart algorithms inserted inside the EA to adjust some settings based on selected sy
Way To Stars is a night scalping EA specifically designed to trade during periods of low market volatility to capitalize on low-risk opportunities. This night scalping EA focuses on capturing small price movements for frequent trading, thereby accumulating profits over time. It employs strict stop-loss measures to limit potential losses per trade, ensuring effective risk management. Way To Stars is a genuine and honest trading system that does not rely on purported neural networks, artificial in
Gold Excel
Gregory Hay
4.5 (4)
Willkommen zu       GoldExcel EA   , Daytrader des Währungspaars XAUUSD (Gold). Von unserem Team entwickelt und für reguläre Konten, gesponserte Requisitenkonten und Requisitenwettbewerbe verfügbar. Nutzen Sie keinen Hochfrequenzhandel. See all products here:   https://www.mql5.com/en/users/fxmanagedforexltd/seller Der Einführungspreis erhöht sich alle paar Wochen. Trading PERFORMANCE Accounts (over 6+ months verified live trading) on 2 brokers https://www.mql5.com/en/users/fxmanagedforexltd/sel
Auswahl:
Keine Bewertungen
Antwort auf eine Rezension
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