• Panoramica
  • Recensioni
  • Commenti
  • Novità

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


Prodotti consigliati
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:
Hamster NC CN Hamster è un EA completamente automatizzato, che non utilizza Martin, la strategia di aggiunta del magazzino, e si basa su indicatori BOLL e zigzag. Raccomandazioni generali Quando l'importo minimo del deposito è di $ 100, è meglio impostare lotti a 0,01 e maxopenorder=1. L'impostazione predefinita è Greenwich Mean Time+2. Utilizza broker che funzionano bene e hanno spread bassi. Si consiglia di utilizzare solo conti ECN o STP con una differenza di prezzo ridotta e u
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 è un consulente esperto unico che può scambiare i segnali MT4 dell'indicatore Matrix Arrow con un pannello commerciale sul grafico, manualmente o automaticamente al 100%. Matrix Arrow Indicator MT4 determinerà la tendenza attuale nelle sue fasi iniziali, raccogliendo informazioni e dati da un massimo di 10 indicatori standard, che sono: Indice di movimento direzionale medio (ADX) Indice del canale delle materie prime (CCI) Candele classiche Heiken Ashi Media mobile Media mob
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
Esibizione dal vivo : AUDUSD Avvio rapido - Imposta l'EA sul grafico M5 di AUDUSD, EURUSD o qualsiasi altra coppia di valute principale. - Impostare un livello di rischio confortevole. - Assicurati che le impostazioni del fuso orario siano corrette. Le impostazioni predefinite sono corrette per la maggior parte dei broker. - Lasciando le restanti impostazioni ai valori predefiniti, l'EA è pronto per fare trading. Logica di trading personalizzabile - Vengono monitorate le oscillazioni dei pr
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 - è un perfetto sistema di trading automatico basato sulla ricerca di price action! Questo è un consulente esperto "imposta e dimentica" che fa tutto il lavoro di trading per te! 7 file Set disponibili! L'idea di trading si basa sul famoso e potente pattern Price Action - OutsideBar! Price Action OB Trader EA è un ottimo investimento: funzionerà per te per anni e anni, tutti i Set_file hanno un'aspettativa matematica positiva! Usa i file Set dalla sezione "Commenti
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+
Gli utenti di questo prodotto hanno anche acquistato
CyNera MT4
Svetlana Pawlowna Grosshans
5 (8)
CyNera: Il Tuo Trading, La Nostra Tecnologia Segnali >400%:  CyNera Segnali >500%: CyNera Turbo Manuale e file di configurazione: contattami dopo l'acquisto per ricevere il manuale e i file di configurazione Prezzo: Il prezzo aumenta in base al numero di licenze vendute Copie disponibili: 4 Il trading dell'oro, uno degli strumenti più volatili sul mercato, richiede precisione, analisi approfondita e una solida gestione del rischio. Il CyNera Expert Advisor integra perfettamente questi elemen
CyNeron MT4
Svetlana Pawlowna Grosshans
5 (1)
CyNeron: Trading di Precisione incontra l'Innovazione dell'IA Segnali :   CyNeron Manuale e file di configurazione : Contattami dopo l'acquisto per ricevere il manuale e i file di configurazione Prezzo : Il prezzo aumenta in base al numero di copie vendute Copie disponibili : 5 Analisi istantanea guidata dall'IA: Una prima sul mercato CyNeron è il primo EA sul mercato a integrare un'IA avanzata in un approccio rivoluzionario al trading, catturando ed elaborando istantanee dettagliate delle con
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)
Tecnologia basata sull'intelligenza artificiale con ChatGPT Turbo Infinity EA è un Expert Advisor di trading avanzato progettato per GBPUSD e XAUUSD. Si concentra su sicurezza, rendimenti costanti e redditività infinita. A differenza di molti altri EA, che si basano su strategie ad alto rischio come martingala o trading a griglia. Infinity EA impiega una strategia di scalping disciplinata e redditizia basata su reti neurali integrate su apprendimento automatico, tecnologia basata su intelligenz
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 – La potenza dell'intelligenza artificiale per il trading dell'oro (XAU/USD) Scopri tutta la potenza della tecnologia nel trading! Aurum AI è un consulente esperto rivoluzionario progettato per un'operatività stabile e sicura sul mercato dell'oro. Combina la potenza dell'intelligenza artificiale, un'analisi precisa delle tendenze e un rigoroso controllo del rischio per garantire la massima efficienza in ogni operazione. Trasparenza e Risultati Il 19 dicembre, il nostro Expert Advisor (E
Quantum Emperor MT4
Bogdan Ion Puscasu
4.84 (150)
Presentazione       Quantum Emperor EA   , l'innovativo consulente esperto MQL5 che sta trasformando il modo in cui fai trading sulla prestigiosa coppia GBPUSD! Sviluppato da un team di trader esperti con esperienza di trading di oltre 13 anni. IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. ***Acquista Quantum Emperor EA e potresti ottenere Quantum StarMan o Quantum Gold Emperor gratis!*** Chiedi in privato per m
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 è un Expert Advisor (EA) semplice ed efficiente per il trading dell'oro sulla piattaforma Meta Trader 4. Utilizzando reti neurali, questo EA è progettato per lo scalping nel mercato dell'oro (XAU/USD). La strategia principale di AI Golden Jet Fighter GTX si concentra sull'identificazione di piccole fluttuazioni di prezzo e sull'apertura di posizioni per catturare profitti in brevi intervalli di tempo. L'EA analizza le condizioni di mercato in tempo reale ed ese
Gold One MT4
Habib Gholamali Heidari
5 (4)
Gold One  MT4 Ciao a tutti gli appassionati di trading dell’oro nel Forex, Benvenuti nel nostro robot, dove vi unite ai migliori trader di oro. Con oltre vent'anni di esperienza precisa nel mercato Forex, siamo orgogliosi di presentare l'ultima generazione di robot da trading. Caratteristiche:  Ideale per le sfide delle aziende di prop trading. Adatto a tutte le dimensioni dei conti, compresi i capitali ridotti. Nessuna   Grid e   Nessuna   Martingale 100% Completamente automatizzato Questo r
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)
Panoramica Il CoreX G EA è un sistema di trading avanzato progettato specificamente per affrontare le complessità del mercato Forex. Sfruttando reti neurali all'avanguardia, tecnologie sofisticate di machine learning e una strategia integrata di big data, CoreX G offre una precisione e sicurezza eccezionali nel trading. Questo Expert Advisor (EA) si distingue per l'eccellenza tecnologica e il supporto clienti di alta qualità, garantendo che gli utenti ricevano sempre assistenza per qualsiasi do
Boring Pips MT4
Thi Thu Ha Hoang
4.71 (14)
Ti sei mai chiesto perché la maggior parte degli esperti consulenti non è efficace nel trading reale, nonostante la loro perfetta performance nei backtest? La risposta più probabile è Over-fitting. Molti EA vengono creati per 'imparare' e adattarsi perfettamente ai dati storici disponibili, ma falliscono nel prevedere il futuro a causa di una mancanza di generalizzabilità nel modello costruito. Alcuni sviluppatori semplicemente non conoscono l'esistenza del Over-fitting, o ne sono a conoscenza
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 è un EA completamente automatizzato progettato per negoziare solo ORO. L'esperto ha mostrato risultati stabili su XAUUSD nel periodo 2011-2020. Non sono stati utilizzati metodi pericolosi di gestione del denaro, nessuna martingala, nessuna griglia o scalping. Adatto a qualsiasi condizione di brokeraggio. EA addestrato con un perceptron multistrato La rete neurale (MLP) è una classe di rete neurale artificiale (ANN) feedforward. Il termine MLP è usato in modo ambiguo, a volte l
Aura Neuron MT4
Stanislav Tomilov
5 (1)
Aura Neuron è un Expert Advisor distintivo che continua la serie di sistemi di trading Aura. Sfruttando reti neurali avanzate e strategie di trading classiche all'avanguardia, Aura Neuron offre un approccio innovativo con eccellenti prestazioni potenziali. Completamente automatizzato, questo Expert Advisor è progettato per negoziare coppie di valute come EURUSD e XAUUSD (GOLD). Ha dimostrato una stabilità costante su queste coppie dal 1999 al 2023. Il sistema evita pericolose tecniche di gestion
The Gold Reaper MT4
Profalgo Limited
4.55 (29)
PUNTELLO AZIENDA PRONTO!   (   scarica SETFILE   ) PROMOZIONE LANCIO: Sono rimaste solo poche copie al prezzo attuale! Prezzo finale: 990$ Ottieni 1 EA gratis (per 2 account commerciali) -> contattami dopo l'acquisto Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here New V2.2 Live Signal Old Live Signal Benvenuti al Mietitore d'Oro! Basato sul Goldtrade Pro di grande successo, questo EA è stato progettato per funzionare su più intervalli di tempo contemporaneamente e ha l
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)
Un consulente completamente automatizzato basato sui principi della domanda e dell'offerta . Per la prima volta offriamo consulenti di domanda e offerta completamente automatizzati . Il trading è diventato più semplice e ora hai il pieno controllo sulla tua strategia di trading. Utilizza un comodo pannello di controllo grafico. Ottieni un software di trading algoritmico di altissima qualità con oltre 15.000 righe di codice. Guida alla domanda e all'offerta di EA Probot Il modo migliore per c
AW Recovery EA
AW Trading Software Limited
4.4 (75)
L'Expert Advisor è un sistema pensato per recuperare posizioni non redditizie.   L'algoritmo dell'autore blocca una posizione perdente, la divide in molte parti separate e chiude ciascuna di esse separatamente. La facile configurazione, il lancio ritardato in caso di drawdown, il blocco, la disabilitazione di altri Expert Advisor, la media con il filtraggio delle tendenze e la chiusura parziale di una posizione in perdita sono integrati in un unico strumento. È l'uso della chiusura delle perdit
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)
Promo attuale: Solo 1 rimasto a 549$ Prezzo finale: 999$ NEW: Choose 1 EA for free! (for 2 trade account numbers) Assicurati di dare un'occhiata al nostro "   pacchetto combinato Ultimate EA   " nel nostro   blog promozionale   !   LIVE SIGNAL Bitcoin Scalp Pro è un sistema di trading unico sul mercato.  È completamente focalizzato sullo sfruttamento della volatilità del mercato Bitcoin scambiando i breakout dei livelli di supporto e resistenza. L'attenzione dell'EA si trova sulla sicurezza
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: Un Nuovo Standard nel Trading Forex The Matrix Mind AI è un consulente di trading innovativo progettato per ampliare le possibilità nel mercato Forex. Basato su modelli di fattorizzazione matriciale, analizza in profondità i dati di mercato, rileva schemi nascosti e offre opportunità uniche per lo sviluppo di strategie. Segnale Reale: https ://www .mql5 .com /en /signals /2277247 Offerta Prezzo: Prime 7 copie:   399 $ Prezzo successivo:   499 $ Caratteristiche Principali di
Filtro:
Nessuna recensione
Rispondi alla recensione
Versione 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.
Versione 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
Versione 1.4 2024.04.02
- moved the window size change to the indicator
- changed parameter name to Built-in
Versione 1.3 2024.03.29
fixed typo in pending orders
Versione 1.2 2024.03.24
changed parameter names
Versione 1.1 2024.03.23
Fixed statistics window