• 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.
Greedy Bob EA mw
DMITRII GRIDASOV
4.25 (4)
GREEDY BOB EA - è un fantastico sistema di trading intraday basato sulla ricerca dell'azione dei prezzi! Questo è un consulente esperto "imposta e dimentica" che fa tutto il lavoro di trading per te! 6 Set_file disponibili! Usa Set_file (v25.25) dalla sezione "Commenti" per usare/testare l'EA. L'idea di trading si basa sul famoso e potente modello Price Action che è combinato con tecniche di scalping! GREEDY BOB EA funziona sul time frame H1 durante le sessioni UE e USA. Caratteristiche EA
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 aga
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 una forte
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_m
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 t
| 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
CandleMomentum FX
Mazhar Ul Hassan Noorul Hassan Noor Ul Hassan
CandleMomentum FX – Precision Candlestick & Momentum Trading Bot Previously priced at $100 per month, all my bots are now available for a limited-time promotion at just $49 per month. I am new to this platform, which is why I have set a lower price for now. This special sale is solely for you to test my bots in a live trading environment before committing long-term. Overview CandleMomentum FX is a high-performance forex trading bot designed to analyze candlestick patterns and momentum shifts f
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 no
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 2022
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, Interest
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 prez
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_m
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
AEC Scalper
Gennady Kuznetsov
AEC Scalper I bring to your attention the AEC Scalper trading Advisor. The adviser works from 20:00 to 22:00 GMT. For testing in the strategy tester, the trading time should be set from 23:00 to 1:00. The EA works well on the following currency pairs: AUDCAD, AUDCHF, AUDJPY, CADCHF, CADJPY, EURAUD, EURCAD, EURCHF, EURGBP, EURUSD, GBPAUD, GBPCAD, GBPUSD  M5 Timeframe. Minimum deposit from $100 Trading is conducted on ECN accounts with a low spread.  Leverage from 1:100 Trading is conducted in a
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 tim
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 Sui
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+
Ichinoku Japan EA
Taman Talappetsakun
The Ichimoku Japan EA is a trading algorithm that uses two indicators, EMA and Ichimoku, to make decisions. While it was initially created for trading USD/JPY, it can also be used for EUR/USD and GBP/USD. The risk ratio for this EA is 1:2, meaning that the potential reward is twice the risk. The stop loss, take profit levels, and Lot size are determined by market volatility. Trading statistics List Details Initial Deposit $100 (minimum) but $1,000 is   recomment Currency Pair USD/JPY, EUR/USD, G
Gli utenti di questo prodotto hanno anche acquistato
Gold Scalping AI
Ho Tuan Thang
5 (6)
SOLO 3 COPIE SU 10 RIMASTI A $399! Dopodiché, il prezzo salirà a $499. - REAL SIGNAL (Real Signal attivo da oltre 6 mesi): Impostazione predefinita:  https://www.mql5.com/it/signals/2276213 Oro Scalping AI è un EA che utilizza la tecnologia di intelligenza artificiale per analizzare i dati di molti indicatori. Da lì, EA avrà la migliore opzione per immettere ordini. La differenza più grande di Gold Scalping   AI è che l'EA può controllare il rapporto rischio/rendimento molto meglio di altri EA.
Scalping Robot MT4
Marzena Maria Szmit
5 (7)
Introducing our advanced Scalping Forex Robot. The scalping algorithm is built to spot high-probability entry and exit points, ensuring that every trade is executed with the highest chance of success within the   M1 timeframe . The best pair to use with the Scalping Robot is   XAUUSD .  This robot is perfect for traders who prefer the   scalping method   and want to take advantage of rapid price movements without having to manually monitor the charts. It is suitable for both beginners looking fo
GbpUsd Robot MT4
Marzena Maria Szmit
5 (42)
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
Ai General EA MT4
Indra Maulana
5 (1)
43% off for 48 hours only (Original price: $1,595) 50% bonus by purchasing this Robot, Contact us "after purchase" to receive the bonus A fully automatic expert Designed and produced 100% by artificial intelligence, with the world's most advanced technology All trades have profit and loss limits, with the best and least risky market strategy, without using dangerous strategies such as Martingale and hedges, etc. A specialist who has been trained by artificial intelligence for years to correctl
Bitcoin Robot MT4
Marzena Maria Szmit
4.81 (42)
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.29 (7)
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
Forex GOLD Investor
Lachezar Krastev
4.48 (40)
WINTER Mega SALE! --> Buy Forex GOLD Investor with -60% OFF and get a BONUS EA -> Pips Master PRO - with amazing results! NOTE: Promo price: $197 (Regular Price: $497) - The offer ends soon! Live Signal Account:   https://www.mql5.com/en/signals/2276118 Forex GOLD Investor is one of the best expert advisors developed to trade on GOLD(XAUUSD) in the forex market. Forex GOLD Investor consists of 2 trading systems . The first one is based on scalping trading strategy and the second system has time
Quantum Emperor MT4
Bogdan Ion Puscasu
4.84 (154)
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 Wizard o Quantum StarMan o Quantum Gold Emperor gratis!*** Chiedi in
Neon Trade MT4
Evgeniy Ilin
5 (2)
La quintessenza di un approccio comprensivo, il cui obiettivo principale è ottenere guadagni a lungo termine e realistici con rischi minimi per il trader. La base consiste in concetti di trading avanzati combinati con l'apprendimento automatico, che si potenziano efficacemente a vicenda. Un'altra caratteristica unica è che il sistema non necessita di essere ottimizzato, poiché questa funzione è gestita dai miei server. Le impostazioni aggiornate vengono pubblicate quotidianamente nei nostri can
Aura Neuron MT4
Stanislav Tomilov
5 (3)
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
Diamond PRO
Fanur Galamov
4.83 (42)
1 copу left for $199 Tomorrow price  --> $299 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 advanced position
Supply Demand EA ProBot
Georgios Kalomoiropoulos
5 (8)
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 com
The Infinity EA MT4
Abhimanyu Hans
3.48 (25)
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
Boring Pips MT4
Thi Thu Ha Hoang
4.73 (15)
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
CyNera MT4
Svetlana Pawlowna Grosshans
2.8 (15)
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 elementi
Gold ISIS MT4
Lo Thi Mai Loan
5 (2)
EA Gold Isis – Una soluzione sicura ed efficace per il trading dell'oro Offerta lancio Solo 3 copie rimaste al prezzo attuale!  Prezzo successivo: $458 Prezzo finale: $1998  SEGNALE LIVE Versione MT5 Ciao! Sono EA Gold Isis, il secondo EA della famiglia Diamond Forex Group, progettato specificamente per il trading dell'oro (XAU/USD). Con funzionalità eccezionali e un approccio focalizzato sulla sicurezza, prometto di offrire un'esperienza di trading dell'oro sostenibile ed efficace per i trad
AW Recovery EA
AW Trading Software Limited
4.35 (79)
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
HFT Prop Firm EA
Dilwyn Tng
4.96 (667)
HFT Prop Firm EA, noto anche come Green Man per via del suo logo distintivo, è un Expert Advisor (EA) progettato specificamente per superare le sfide o le valutazioni delle società di trading proprietarie (prop firms) che consentono strategie di trading ad alta frequenza (HFT). Per un periodo limitato: utilità gratuite del valore di $198 quando acquisti HFT Prop Firm EA Versione MT5: https://www.mql5.com/en/market/product/117386 Monitoraggio delle prestazioni della sfida HFT (a partire da $200):
Dark Algo
Marco Solito
4.77 (56)
Last copy at 399$ -> next price 499$ Dark Algo  is a fully automatic Expert Advisor for Scalping Trading on Eurusd . This Expert Advisor is based on the latest generation of algorithm and is highly customizable to suit your trading needs.  If you   Buy this Expert   Advisor you can   write a feedback   at market and   get   a second EA for   Free , for More info contact me The basic strategy of this EA is built on a sophisticated algorithm  that allows it to identify and follow market trends . T
AI Gen XII MT4
Denis Kurnev
3.56 (45)
The   AI Gen ProX   Expert Advisor is a powerful solution based on advanced market analysis and data processing technologies. Utilizing cutting-edge algorithms for time series analysis and complex mathematical models, it ensures high accuracy in forecasts and automates trading processes. The EA is designed to combine performance and reliability, making it an effective tool for trading.   Real Time Signal GEN PRoX:  https://www.mql5.com/ru/signals/2283186 The price of the advisor will increase si
Aurum AI mt4
Leonid Arkhipov
4.63 (27)
Aurum AI – La potenza dell'intelligenza artificiale per il trading dell'oro (XAU/USD) Scopri tutto il potenziale della tecnologia nel trading! Aurum AI è un esperto consulente rivoluzionario progettato per garantire performance stabili e sicure sul mercato dell'oro. Combina la potenza dell'intelligenza artificiale, analisi precise delle tendenze e un rigoroso controllo del rischio per rendere ogni operazione il più efficace possibile. Promozione Discount - 50%. 3 copies available at a price of $
EvoTrade EA MT4
Dolores Martin Munoz
5 (1)
EvoTrade: Il primo sistema di trading auto-apprendente sul mercato Permettetemi di presentarvi EvoTrade, un consulente esperto unico nel suo genere, sviluppato con tecnologie all'avanguardia di visione artificiale e analisi dei dati. Si tratta del primo sistema di trading auto-apprendente sul mercato, operativo in tempo reale. EvoTrade analizza le condizioni di mercato, adatta le strategie e si adegua dinamicamente ai cambiamenti, garantendo una precisione eccezionale in qualsiasi ambiente. EvoT
AlphaFlow EA MT4
Dolores Martin Munoz
Alpha Flow EA: Porta il tuo trading a nuovi livelli Alpha Flow EA   è un consulente di trading all'avanguardia progettato per trasformare la tua esperienza di trading grazie a una precisione strategica, un'eccellente adattabilità e metodi avanzati di analisi del mercato. Sviluppato con algoritmi di trading proprietari e approfondimenti dettagliati sul mercato,   Alpha Flow EA   offre prestazioni eccezionali in diversi ambienti di trading, aiutandoti a rimanere sempre un passo avanti rispetto all
FX EurUsd Robot MT4
Marzena Maria Szmit
5 (13)
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.
Stock Indexes EA MT4
Marzena Maria Szmit
5 (1)
Stock Indexes EA is a sophisticated trading robot meticulously engineered to capitalize on the dynamics of the US30 . This expert advisor employs advanced algorithms and technical indicators to analyze market trends, identify potential entry and exit points, and execute trades with precision. A news filter has also been added to the robot, which prevents it from opening a position during important economic news , minimizing the risk. In robot, you can also specify the days and hours when the EA
Exp4 AI Sniper for MT4
Vladislav Andruschenko
5 (2)
Il nostro team è entusiasta di presentare Trading Robot, il consulente esperto di trading intelligente all'avanguardia per il terminale MetaTrader. AI Sniper   è un robot commerciale intelligente e auto-ottimizzante progettato sia per i terminali   MT4   . Utilizzando un algoritmo sofisticato e metodologie di trading all'avanguardia,   AI Sniper   incarna l'eccellenza nell'ottimizzazione del trading. Con oltre 15 anni di vasta esperienza sia nei mercati borsistici che azionari, il nostro team h
Quantum Gold Emperor MT4
Bogdan Ion Puscasu
4.82 (11)
Presentazione       Quantum Gold Emperor EA   , l'innovativo consulente esperto MQL5 che sta trasformando il modo in cui scambi la prestigiosa coppia XAUUSD (GOLD)! Sviluppato da un team di trader esperti con un'esperienza di trading di oltre 13 anni. IMPORTANTE! Dopo l'acquisto inviatemi un messaggio privato per ricevere il manuale di installazione e le istruzioni per la configurazione. ***Acquista Quantum Gold Emperor EA e potresti ottenere Quantum Trade EA gratis!*** Chiedi in privato per ma
BeiDou Trend
Xian Qin Ceng
Beidou Trend EA is a trend EA with a large profit-loss ratio.   Breakout trading is a very old method. It has been widely used since Livermore in the 1900s. It has been more than 120 years. This method is always effective, especially for XAUUSD and Gold with high volatility. I have been using the breakout method to make profits on XAUUSD since the beginning of my investment career. I am familiar with this method. It is old, simple and effective. Beidou Trend EA is improved based on Rising Sun Go
AW Double Grids EA
AW Trading Software Limited
4.43 (7)
Advisor AW Double Grids MT4   - è un consulente di griglia aggressivo e completamente automatizzato, con un pannello di trading informativo e una configurazione semplice. La strategia consiste in un lavoro simultaneo bidirezionale, moltiplicando il volume di una direzione. Sono implementati il calcolo automatico dei lotti integrato, varie varianti di aumento del volume delle posizioni e altre funzioni. Istruzioni ->   QUI   /   Risoluzione dei problemi ->   QUI   / Versione MT5 ->   QUI Come o
AW Scalping Dynamics EA
AW Trading Software Limited
4.67 (12)
Robot di trading avanzato completamente automatico che funziona in base alle inversioni di tendenza. Se necessario, è possibile utilizzare una strategia a griglia. 3 tipi di notifiche integrati e blocco della posizione quando viene raggiunto il carico massimo del carrello. Le impostazioni predefinite sono consigliate per EURUSD nell'intervallo di tempo M15. Caratteristiche e vantaggi: Capacità di lavorare in due direzioni contemporaneamente Capacità incorporata di lavorare in tempo in più fasi
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