• Ü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.


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
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
PZ Goldfinch Scalper EA
PZ TRADING SLU
1 (4)
Dies ist die neueste Iteration meines berühmten Scalpers Goldfinch EA, der vor fast einem Jahrzehnt zum ersten Mal veröffentlicht wurde. Sie lenkt den Blick auf plötzliche Volatilitätsausweitungen, die in kurzen Zeiträumen stattfinden: Sie geht davon aus, dass die Trägheit der Preisbewegung nach einer plötzlichen Preisbeschleunigung ausgenutzt wird, und versucht, sie zu nutzen. Diese neue Version wurde vereinfacht, damit der Händler die Optimierungsfunktion des Testers leicht nutzen kann, um die
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
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
Grid and MA
Volodymyr Hrybachov
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
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
Volodymyr Hrybachov
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
Alize EA
Viktor Barilko
Alize EA   is an advanced trading advisor specifically designed for Forex market trading. It uses complex mathematical algorithms to analyze the market and make trading decisions based on modified standard indicators and price action analysis. This robot is easy to use and fully automated: simply install it on the AUDCAD chart and set the desired risk level. One of the key features of Alize EA is its advanced averaging system, which adapts to current market conditions. The robot uses virtua
The basis of the strategy is the identification of quick corrective movements between the crosses of a working currency pair or metal. At the moment of differences in prices of trading instruments, the adviser analyzes the possible direction of price movement on a working instrument and starts work. Each position has a stop loss and take profit. A unique position tracking algorithm allows you to control the superiority of profit over loss. The adviser does not use dangerous trading method
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
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
Index Trader Suite
Ivan Pochta
5 (1)
>>> Index Trader Suite Live  Results  here >> >>> Index Trader Suite v.1.0 Presets: Download >> >>>    Index Trader Suite MT5 version available   here >> Index Trader Suite is a fully automated trading advisor based on a proprietary trading strategy for the world's most popular and liquid Stock Indices. The system is based on the principles of Price Action and does not use technical indicators to determine the optimal points for opening trades. The strategy is based on 2 key principles of
Success Forex
Mr Teerawoot Aonlamool
Way  to success  EA EA used to trade gold, try to get up to 10000 points of chart drag Trade according to trends, use up to 5 indicators to set values. It is a Martingale system. Fixed when the first lot lost by multiplying not over There is a trailing system. Stop comes when there is a profit. Max drawdown only 24.18% Testing Through the Crisis of War Within 6 months the profit reaches 128.74%
Bergland Gold MT4
Matthias Bessler
This fully automated trading system is part of the Bergland signal. It features a highly efficient trading logic, and a money management system. Reasonable calculated stop loss and take profit levels. It is easy to install and do not require a special setfile. XAUUSD, M15 Live Signal: Bergland Gold You can rent the Bergland signal here. If you like my product, please write a review.
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+
Fxdolarix
Andrey Kozak
Fxdolarix ist ein automatischer Roboter-Scalper für GBPUSD M5. Wurde 3 Monate lang auf einem echten Konto getestet. Der Roboter verwendet eine Scalping-Strategie, die sich auf kurzfristige Intraday-Preisbewegungen konzentriert. Der Schwerpunkt liegt auf der Erkennung von Momenten kurzfristiger Volatilität und der Ausführung schneller Trades. Der Roboter verwendet Indikatoren wie: iMACD, iMA, iStochastic. Anhand dieser Indikatoren identifiziert der Roboter die Richtung des Trends und mithilfe de
Trendless Scalper
Jaspreet Singh Saini
As the name says, Trendless Scalper doesn't care for what trend is going on in the currency pair. It opens one trade as selected by user and then keep on adding trades according to direction itself. It don't have very complicated parameters. Simply apply on any chart and it works. It is recommended that the spread of the account should be low, but it dont have any restriction for accounts with high Spread too. It can trade any chart and any timeframe. This EA works for those accounts which can h
DJ30 Picsou
Julien Jean Bernard Lajardie
DJ30 Auto-Adaptative MA EA - Expert Advisor for DJ30 Trading The DJ30 Auto-Adaptative MA EA is a robust trading tool specifically designed for the DJ30 index on the 30-minute timeframe. This Expert Advisor combines a proven moving average strategy with an innovative auto-adaptive Stop Loss system, providing a balance between risk management and trade optimization. Key Features: Auto-Adaptative Stop Loss : The EA automatically adjusts Stop Loss levels in real-time based on the Average True Range
Nano Gold
Nguyen Hang Hai Ha
Expert Nano Gold is a fully automated trading robot programmed with the most advanced and advanced algorithms. This is an EA dedicated to the Gold market. It uses the Stop Order entry method suitable for the fast and strong fluctuations of the Gold market. Signals are selected with Tick patterns, price movements and correlations of popular indicators. Along with Scalper and Trailing strategies to quickly close positions with low risk and optimize performance. Trading orders always have Stop Los
Общие сведения Для начала торговли достаточно небольшого депозита. Подходит для мульти-валютной торговли. Не зависим от качества соединения и торговых условий.  Принцип работы Эксперт открывает ордера по встроенному индикатору. Если прибыль ордера плюсовая. Данный ордер закрывается и открывается новый в противоположном направлении объёмом  Lot . Если прибыль ордера минусовая. Данный ордер закрывается и открывается новый в этом же направлении и объёмом в  Martingale  раз больше преведущего.
GOLD Scalper PRO
Lachezar Krastev
4.5 (20)
PROMOTION: BUY 1 GET 1 FREE! --> Buy GOLD Scalper PRO with -50% OFF + 1 FREE EA (of your choice)! NOTE: Promo price: $197 ( Regular Price: $397) - The offer ends soon!  For more info about the promotion and possible free EAs, contact me! GOLD Scalper PRO is a fully automated trading system which takes much of the work out of trading, leaving you free to do other things! You should not be fooled by the low price – GOLD Scalper Pro is a very effective and profitable trading strategy, profession
CryptoHFT AI
Aldo Marco Ronchese
Trade all crypto pairs including BTCUSD BITCOIN BTCEUR LTC ETH etc (any pair with a spread over 100 including US100 ) CryptoHFT   isn't just another Expert Advisor.   It's your gateway to a new era of intelligent,   adaptive trading in the volatile world of cryptocurrencies.   Powered by a cutting-edge 5-neuron AI engine,   CryptoHFT learns from your chosen timeframe - days,   weeks,   months,   or even years - to discover the optimal settings for   any crypto pair  with spreads ranging from 100
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
Stpaos
Vladislav Filippov
STPAOS is an automated trading advisor. The advisor programmatic functionality has been customized for a safe trading strategy with the trend, the essence of which is to close the transaction while achieving a positive profitability ratio of several points, which gives the buyer the opportunity to minimize the loss of funds from the opening of losing trades. Advisor is equipped with special software installations and utilities that help to achieve a positive indicator of trade profitability. The
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
Brexit Breakout (GBPUSD H1) This EA has been developed for GBPUSD H1.  Everything is tested for H1 timeframe . Strategy is based on breakout of the This Bar Open indicator after some time of consolidation. It will very well works on these times, when the pound is moving. It uses Stop pending orders with  FIXED Stop Loss and Take Profit . It also uses PROFIT TRAILING to catch from the moves as much as possible. At 9:00 pm we are closing trading every Friday to prevent from weekly gaps. !!!Adjust
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
MAx overclock EA
Kevin John Hastings
Elevate Your Trading Game with Our Expert Advisor! Are you tired of the guesswork in trading? With a decade of programming experience and 3 years in trading, I’ve developed an Expert Advisor that’s designed to take your trading career to new heights! Our Expert Advisor is a game-changer. It’s built to detect overbought and oversold market conditions, identify trends, and help you find the best times to trade your favourite product. Whether you’re aiming for a 1:1 risk or pushing for a 5:1
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
Käufer dieses Produkts erwarben auch
AI Gen XII MT4
Denis Kurnev
5 (12)
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
Indicement MT4
Profalgo Limited
5 (1)
Willkommen bei Indicement! PROP FIRM READY! -> Set-Dateien   hier herunterladen Einführungsaktion: Nur noch wenige Exemplare zum aktuellen Preis verfügbar! Endpreis: 990 $ Ultimativer Kombi-Deal     ->     hier klicken ÖFFENTLICHER GRUPPE BEITRETEN:   Klicken Sie hier   INDICEMENT   bringt meine 15-jährige Erfahrung in der Erstellung professioneller Handelsalgorithmen in die Indexmärkte ein. Der EA verwendet einen sehr gut durchdachten Algorithmus, um den besten Einstiegspreis zu finden, und
The Gold Reaper MT4
Profalgo Limited
4.69 (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 Scalper Trading
Ho Tuan Thang
4.78 (9)
ONLY 3 COPIES OUT OF 10 LEFT AT $399! After that, the price will be raised to $499. - REAL SIGNAL: Default Setting:  https://www.mql5.com/en/signals/2251841 Gold Scalper Trading is an EA that uses a complex trading methodology that includes cross-market analysis to find scalpable entry points with XAUUSD, one of the market's wildest running pairs. EA uses stop loss for all orders, only 1 order and does not use any dangerous trading methods: No grid, no martingale,... Gold Scalper Trading is o
The Way To Stars sind tageshandelplattformen, die was unternehmen in zeiten niedriger marktvolatilität ermöglichten, wo sie gelegenheiten mit niedrigeren risiken nutzten. Diese nachtverkäufe hatten den schwerpunkt auf das festhalten kleiner preisänderungen bei konventionellen transaktionen, was im lauf der zeit gewinne anhäufen konnte. Unter anwendung strenger beschränkungen, um die potenziellen verluste bei jeder transaktion zu begrenzen und ein wirksames risikomanagement sicherzustellen. Stars
AI NoX EA is an innovative Forex expert advisor that combines advanced neural networks technologies with high-volume trading and   Matrix factorisation .The advisor uses complex algorithms to decompose large sets of market data, uncovering hidden patterns and correlations between various financial instruments. Details about Advisor Development Configuring the Advisor Real Time Signal XAUUSD:  https://www.mql5.com/en/signals/2254092 Real Time Signal USDJPY:  https://www.mql5.com/en/signals/225409
Diamond Titan FX MT4
Lo Thi Mai Loan
5 (8)
Startaktion Es sind nur noch 3 Verkäufe übrig, um zum aktuellen Preis zu kaufen. Nächster Preis: $1233 Erhalte kostenlos den US30 Scalper EA und den Quantum Algo EA -> kontaktiere mich nach dem Kauf Live signal - 1:    https://www.mql5.com/en/signals/2220190?source=Site+Profile+Seller Live signal - 2:  https://www.mql5.com/en/signals/2242066?source=Site+Profile+Seller#!tab=account Prop Signal:  https://www.mql5.com/en/signals/2223219?source=Site+Signals+Profile+From+Author MT5:  https://www.mql
HFT Prop Firm EA
Dilwyn Tng
4.97 (655)
HFT Prop Firm EA, auch bekannt als Green Man aufgrund seines markanten Logos, ist ein Expert Advisor (EA), der speziell dafür entwickelt wurde, Herausforderungen oder Bewertungen von proprietären Handelsfirmen (prop firms) zu überwinden, die Hochfrequenzhandel (HFT)-Strategien erlauben. Für begrenzte Zeit: kostenlose Hilfsprogramme im Wert von $198, wenn Sie HFT Prop Firm EA kaufen MT5-Version: https://www.mql5.com/en/market/product/117386 HFT Challenge Performance Monitor (ab $200): Broker: I
Boring Pips MT4
Thi Thu Ha Hoang
5 (12)
Hast du dich jemals gefragt, warum die meisten Expertenberater im Live-Handel trotz ihrer perfekten Backtest-Performance nicht effektiv sind? Die wahrscheinlichste Antwort ist Überanpassung. Viele EAs werden erstellt, um perfekt aus den verfügbaren historischen Daten zu "lernen" und sich anzupassen, aber sie können die Zukunft nicht vorhersagen, da es an Verallgemeinerungsfähigkeit im konstruierten Modell mangelt. Einige Entwickler wissen einfach nicht von der Existenz der Überanpassung, oder s
The Law of Jungle
Inrexea Limited
5 (1)
Please do not   pm   me if you are asking for:  Discount ( Price will go back to original price 3800 in the future ) Backtesting result ( We don't trust mislead informations ) (LOJ IS NOT A HFT Strategy, Will not be violated by Prop firm rules) We don't rely on backtest results. The backtesting environment can't access our database to retrieve historical data. We aim to provide clarity to EA traders and not mislead them. The best approach is to monitor our signals. If you're wondering how to ve
Gold Trade Pro
Profalgo Limited
4.61 (23)
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 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 tritt dem Club der Goldhandels-EAs bei, aller
Quantum Emperor MT4
Bogdan Ion Puscasu
4.87 (135)
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 erhalten Quantum StarMan oder Quantum Queen oder Quantum Gold Emperor k
Quantum Pip MT4
Lo Thi Mai Loan
NUR NOCH 3 EXEMPLARE VON 10 ZUM PREIS VON 333.99 $ VERFÜGBAR! Danach wird der Preis auf 393.99 $ erhöht. Live-Signal MT4 (Finanziertes Konto kombiniert mit Titan EA):   https://www.mql5.com/en/signals/2254355?source=Site+Profile+Seller   Live-Signal MT5 (Kleines Konto): https://www.mql5.com/en/signals/2251691?source=Site+Profile+Seller   MT5-Version: https://www.mql5.com/en/market/product/122597    Hallo, Ich bin Quantum Pip, das neueste Mitglied der LOS EA-Familie. Ich bin ein EA,
CyBRG RX Mt4
Arseny Potyekhin
5 (2)
Wir stellen CyBRG RX vor: Der Trading-Assistent der nächsten Generation Betreten Sie die Zukunft des Tradings mit CyBRG RX, Ihrem hochmodernen Trading-Begleiter, der darauf ausgelegt ist, Ihr Trading-Erlebnis zu verbessern. Mit der Kraft fortschrittlicher neuronaler Netze analysiert und passt sich CyBRG RX an die sich ständig ändernden Marktbedingungen mit beispielloser Präzision an. Signale:   Live Signal 1 Live Signal 2 Da diese Strategie so einzigartig ist, möchte ich nur eine begren
Gold Quantum AI
Ho Tuan Thang
5 (2)
ONLY 3 COPIES OUT OF 10 LEFT AT $199! After that, the price will be raised to $299. (*) IMPORTANT NOTE: To be able to back test the EA or install the EA correctly to be able to trade normally. You will need to allow EA access to the GPT API in addition to installing other news-related websites. For details, please contact me to receive specific installation instructions. Gold Quantum AI is an EA that I have used for a long time, specializing in the fund accounts I manage for clients. The EA is
Daytrade Pro Algo
Profalgo Limited
5 (5)
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
AI TradingVision GPX MT4
Yu Mei Cheng
4.64 (14)
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
GRain EA MT4
Roman Erokhin
4.5 (6)
Good afternoon. My name is Roman, I am the creator of Gold Rain EA. I have been preparing for its realization for a long time, went through a lot of tests and now I finished the product and went on sale with a live good signal. My motto is to use only live signals, I do not release products without history or lack of real accounts. Now you have the opportunity to try Gold Rain EA in your hands. I will help every client to customize and install EA, from beginner to pro. Tired of complicated EA mo
FT Gold Robot MT4
Marzena Maria Szmit
4.5 (34)
Introducing the FT Gold Robot MT4, your ultimate companion in navigating the intricate world of XAUUSD trading. Developed with precision and powered by cutting-edge algorithms, FT Gold is a forex robot meticulously crafted to optimize your trading performance with   XAUUSD pairs . With its advanced analytical capabilities,   FT Gold Robot   constantly monitors the gold market, identifying key trends, patterns, and price movements with lightning speed. The FT Gold Robot opens 5 positions every da
AW Recovery EA
AW Trading Software Limited
4.33 (70)
Der Expert Advisor ist ein System zur Wiederherstellung unrentabler Positionen. Der Algorithmus des Autors sperrt eine Verlustposition, teilt sie in viele separate Teile und schließt jeden von ihnen separat. Einfache Einrichtung, verzögerter Start im Falle eines Drawdowns, Sperren, Deaktivieren anderer Expert Advisors, Mittelwertbildung mit Trendfilterung und teilweises Schließen einer Verlustposition sind in einem Tool integriert Es ist die Verwendung von Schließungsverlusten in Teilen, die es
Willkommen bei Diamond Ultimate!!! STARTPROMOTION: Nur noch wenige Kopien zum aktuellen Preis verfügbar Endpreis: 4993,99 $ Diamond Ultimate   kombiniert die Algorithmen meiner beiden besten EAs, Diamond Titan und US30 Scalper, mit 13 Jahren Markterfahrung, um Orders auszuführen und Kapital zu verwalten. Alle Trades haben klare Stop-Loss- und Take-Profit-Level. Der EA verwendet einen Trailing-Stop-Loss, um Gewinne abzusichern. Der EA kann bis zu 7 Trades gleichzeitig eröffnen, aber dies
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
Harmony Drive MT4
Marek Stanislaw Zygala
Harmony Drive ist ein ausgeklügeltes System, das auf einem sorgfältig ausgewählten Korb der folgenden Symbole basiert: USDJPY, AUDCAD, CHFJPY, AUDUSD, USDCHF und NZDUSD. Diese Paare wurden aufgrund ihrer unterschiedlichen Eigenschaften und Marktverhalten strategisch ausgewählt: Hauptwährungspaare wie USDJPY und USDCHF bieten hohe Liquidität und enge Spreads, ideal für häufiges Trading Rohstoffgebundene Paare wie AUDUSD und NZDUSD bieten Zugang zu ressourcenreichen Volkswirtschaften und bieten e
US30 Scalper EA MT4
Lo Thi Mai Loan
5 (5)
Startaktion! Nur noch wenige Exemplare zum aktuellen Preis verfügbar! Nächster Preis: 1533 $ Endpreis: 1993$ Live signal:  https://www.mql5.com/en/signals/2220893?source=Site+Profile+Seller MT5:   https://www.mql5.com/en/market/product/107337?source=Site+Profile+Seller For more top Expert Advisors and Indicators, visit:   https://www.mql5.com/en/users/lothimailoan/seller I am Los, please subscribe to receive more updates:   https://www.mql5.com/en/users/lothimailoan/news US30 Scalper EA ist
Z4scalp
Cence Jk Oizeijoozzisa
5 (4)
------------------------------------------- Einführung: Z4SCALP ------------------------------------------- Z4SCALP ist ein fortschrittlicher Trading-Roboter, der entwickelt wurde, um Slippage auf Handelskonten zu verhindern. Exklusives Angebot: Kaufen Sie ein Produkt und erhalten Sie das andere KOSTENLOS ! Kontodetails für die Demonstration: Um den Trading-Roboter in Aktion zu sehen, melden Sie sich mit dem folgenden Demokonto an. Dieses Konto spiegelt lediglich ein echtes Konto wider und hat
Prop Hunter Pro
Soraya Bahlekeh
Prop Hunter Pro EA ist ein fortschrittlicher Expert Advisor (EA), der über 6 sorgfältig entwickelte Strategien verfügt, darunter HFT und Scalping . Drei dieser Strategien sind darauf ausgelegt, Händlern zu helfen, die Herausforderungen von Prop-Firmen zu überwinden, während die anderen drei für den Einsatz in persönlichen Handelskonten vorgesehen sind. Originalpreis   399$  —> 60% Rabatt nur   $169 (4 Kopien verfügbar ) Um die Live-Arbeit zu sehen, können Sie sich mit den folgenden Kontodet
The King Advisor MT4
Guillem Boix Martin
4.56 (9)
The King Advisor   ist ein hochentwickelter   neuronaler Netzwerkalgorithmus.  Seine Strategie basiert auf der Identifizierung von Unterstützungsniveaus, Widerständen und Trendlinien durch ein   ausgeklügeltes selbstlernendes   System und ein   Handelssystem , das mit jahrelanger Erfahrung und Arbeit entwickelt wurde.  Entwickelt von einem Team aus erfahrenen Händlern. BITTE BEACHTEN SIE, dass es eine Begrenzung von 200 Exemplaren geben wird --> Insgesamt verkaufte Exemplare aktualisiert: 180 Ne
TrendMaster FX MT4
Chen Jia Qi
4.88 (16)
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 MT5-Version:   TrendMaster FX MT5 Wir führen derz
Big Forex Players MT4
Marzena Maria Szmit
4.71 (28)
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
Alpha Gen
Antonis Michos
5 (1)
Important Setup Instructions Before Testing or Using the EA To ensure the EA functions correctly, you must set the input named " Set this input to 1000 when testing or live " from 1 to 1000 . Failure to do so will result in the EA not working properly. Additionally, when testing the EA, please use the recommended spreads listed below, especially if the current spreads are large due to weekends or broker conditions. You can manually import the recommended spreads into the strategy tester. Li
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