• Genel bakış
  • İncelemeler
  • Yorumlar
  • Yenilikler

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


Önerilen ürünler
| 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
This is the latest iteration of my famous scalper, Goldfinch EA, published for the first time almost a decade ago. It scalps the market on sudden volatility expansions that take place in short periods of time: it assumes and tries to capitalize of inertia in price movement after a sudden price acceleration. This new version has been simplified to allow the trader use the optimization feature of the tester easily to find the best trading parameters. [ Installation Guide | Update Guide | Troublesh
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
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
MACD göstergesinde ticaret robotu Bu, ticaret robotunun basitleştirilmiş bir sürümüdür, yalnızca bir giriş stratejisi kullanır (gelişmiş sürümde 10'dan fazla strateji vardır) Uzman Avantajları: Scalping, Martingale, ızgara ticareti. Sadece bir emir veya bir emirler tablosu ile alım satım kurabilirsiniz. Dinamik, sabit veya çarpan adımı ve işlem lotu ile son derece özelleştirilebilir bir emirler tablosu, Expert Advisor'ı hemen hemen her işlem enstrümanına uyarlamanıza olanak tanır.
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
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
MT4 Versiyonu : https://www.mql5.com/en/market/product/79803 MT5 Versiyonu : https://www.mql5.com/en/market/product/107840 "Grandmaster" Uzman Danışman (EA), özellikle endeks ticareti için tasarlanmış gelişmiş bir otomatik ticaret sistemidir. Bu EA, gelişmiş sinyal analizi ve sağlam risk yönetimi tekniklerinin birleşimine dayalı olarak alım satım pozisyonlarını açmak ve yönetmek için stratejik bir yaklaşım kullanır. İşte ayrıntılı bir açıklama: Endeks Ticareti için "Büyük Usta" Uzman Danışm
>>> 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%
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+
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  раз больше преведущего.
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 1
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
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
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
A multi-currency scalping robot at night. In the second version, only EURCHF is traded. Signal version 1.0 (Multiplier = 1) Night Zen - the night scalper uses low-volatility areas on the chart to search for a potential price reversal. The Expert Advisor enters the market with only one transaction if all conditions are met. To protect trades, the EA sets a fixed Stop Loss. The adviser can close a deal both on Take Profit and on the strategy embedded in it. The Expert Advisor trades on the m15 tim
Fundamental Robot MT4
Kyra Nickaline Watson-gordon
Fundamental Robot is an Expert Advisor based on Fundamental Signals Indicator. The Fundamental Signals Indicator has a powerful calculation engine that can predict market movement over 30000 points. The indicator is named fundamental because it can predict trends with large movements, no complicated inputs and low risk.  The EA works with low margin levels and thus has low risk. Using EA : The EA is very simple and without complicated input parameters. These are main parameters must b
Dr Trade Pro'yu tanıtalım; zeki ve tutarlı ticaret için özenle tasarlanmış bir Uzman Danışman (EA). Uzman danışmanımız, hassasiyete dayanarak işlemleri sorunsuz bir şekilde gerçekleştirmek için trend tanıma ve doğru piyasa analizi kullanmaktadır. Dr Trade Pro, her işlem için stratejik bir yedek plan ile donatılmış olup karlılığı vurgularken potansiyel kayıpları en aza indirme konusunda öncülük etmektedir. Dr Trade Pro'yu farklı kılansa çeşitli piyasa koşullarına adapte olabilmesidir; bu özellik
The Expert Advisor is based on a long-term study of the volatility of the # DAX30 index. The Expert Advisor opens no more than one deal per day. If there is no signal, the deal will not be opened. IMPORTANT!!!! if there is an already open deal, the EA will not open a new one. Even if you opened a deal manually, the EA will not open a new one. made for the purpose of security of the deposit and opening in opposite directions. FOR THE EXPERT TO WORK, THERE SHOULD NOT BE OPEN DEALS IN THE TERMI
Bu ürünün alıcıları ayrıca şunları da satın alıyor
CyNera MT4
Svetlana Pawlowna Grosshans
5 (4)
CyNera: Sizin Ticaretiniz, Bizim Teknolojimiz Sinyaller:  CyNera Kılavuz ve ayar dosyaları: Kılavuz ve ayar dosyalarını almak için satın aldıktan sonra benimle iletişime geçin Fiyat: Fiyat, satılan lisanslara göre artar Mevcut kopya sayısı: 1 Piyasadaki en değişken araçlardan biri olan altın ticareti, hassasiyet, derinlemesine analiz ve güçlü risk yönetimi gerektirir. CyNera Expert Advisor, bu unsurları kusursuz bir şekilde entegre ederek, optimum altın ticareti için tasarlanmış sofistike bir
AI Golden Jet Fighter GTX     MT4, Meta Trader 4 platformunda altın ticareti için basit ve etkili bir Uzman Danışmandır (EA). Yapay Sinir Ağlarını kullanan bu EA, altın piyasasında (XAU/USD) scalping yapmak için tasarlanmıştır. AI Golden Jet Fighter GTX'in ana stratejisi, küçük fiyat dalgalanmalarını belirlemeye ve kısa zaman dilimlerinde kar elde etmek için pozisyonlar açmaya odaklanır. EA, piyasa koşullarını gerçek zamanlı olarak analiz eder ve önceden tanımlanmış zarar durdurma ve kar alma s
Gold Trading AI
Ho Tuan Thang
4.67 (15)
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/2258186 Gold Trading 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 Trading 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 entry
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
ChatGPT Turbo ile AI Destekli Teknoloji Infinity EA, GBPUSD ve XAUUSD için tasarlanmış gelişmiş bir ticaret Uzman Danışmanıdır. Güvenliğe, tutarlı getirilere ve sonsuz karlılığa odaklanır. Martingale veya grid ticareti gibi yüksek riskli stratejilere dayanan diğer birçok EA'nın aksine. Infinity EA, genel ticaret deneyiminizi olağanüstü kılmak için en son ChatGPT sürümü tarafından sağlanan makine öğrenimi, veri analitiği AI tabanlı teknoloji üzerine yerleştirilmiş sinir ağına dayalı disiplinli,
Bitcoin Robot MT4
Marzena Maria Szmit
4.82 (22)
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
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.
CoreX G MT4
Arseny Potyekhin
4.88 (8)
Genel Bakış CoreX G EA, Forex piyasasının karmaşıklıklarını ele almak üzere özel olarak tasarlanmış gelişmiş bir ticaret sistemidir. Son teknoloji sinir ağlarını, gelişmiş makine öğrenimi teknolojilerini ve entegre büyük veri stratejisini kullanarak CoreX G, ticarette olağanüstü doğruluk ve güvenlik sağlar. Bu Uzman Danışman (EA), teknolojik mükemmelliği ve premium müşteri desteği ile öne çıkarak, kullanıcıların herhangi bir soru veya endişelerinde her zaman yardımcı olunmasını sağlar. Sinyal
Yarukami Mnukakashi is an automated trading advisor designed for traders in the Forex market. Key Features: Strategy type: 24-hour trading, but I recommend avoiding the American session and setting a daily take of $30-40 per 0.01 lot. Can work in one direction or both at once independently of each other. Trading instruments: GOLD Timeframes: M1 Algorithm: uses technical analysis with moving average indicators, Bollinger and Momentum. Risk management: there is a function to forcibly close order
Supply Demand EA ProBot
Georgios Kalomoiropoulos
5 (3)
Arz ve talep ilkelerine dayanan tam otomatik bir danışman . İlk defa tam otomatik arz ve talep danışmanları sunuyoruz . Ticaret artık daha kolay hale geldi ve artık ticaret stratejiniz üzerinde tam kontrole sahipsiniz. Kullanışlı bir grafik kontrol paneli kullanın. 15.000 satırdan fazla kodla en yüksek kalitede algoritmik ticaret yazılımına sahip olursunuz. EA Probot Arz ve Talep Kılavuzu Nesne Varlıklarıyla Ticaret Yapmanın En İyi Yolu sizi uzman bir tüccar olma yolunda her adımda zorlar.
Lansman Promosyonu: Mevcut fiyattan sınırlı sayıda kopya mevcuttur Son fiyat: 990$ YENİ: 1 EA'yı ücretsiz alın!   (2 ticaret hesabı için) Ultimate Combo Deal   ->   click here LIVE RESULTS:   https://www.mql5.com/en/signals/1949810 JOIN PUBLIC GROUP:   Click here Set Files DayTrade Pro Algo'ya hoş geldiniz!   Yıllarca piyasaları inceledikten ve farklı stratejiler programladıktan sonra, iyi bir ticaret sisteminin ihtiyaç duyduğu her şeye sahip bir algoritma buldum: Broker bağımsızdır Bağımsız
HFT Prop Firm EA, kendine özgü logosu nedeniyle Green Man olarak da bilinir ve yüksek frekanslı ticaret (HFT) stratejilerini izin veren ticaret firmalarının (prop firms) zorluklarını veya değerlendirmelerini aşmak için özel olarak tasarlanmış bir Uzman Danışmandır (EA). Sınırlı süre için: HFT Prop Firm EA satın aldığınızda $198 değerinde ücretsiz yardımcı programlar MT5 versiyonu: https://www.mql5.com/en/market/product/117386 HFT Challenge Performans Monitörü ($200'dan başlayarak): Broker: IC Ma
Merhaba, ben Diamond Titan FX. Bu EA, US30 çiftleri için özel olarak tasarlanmıştır. EA, Martingale veya Grid gibi herhangi bir riskli strateji kullanmaz. Varsayılan olarak, EA her işlem için 50 pip sabit bir SL belirler, ancak isterseniz bunu değiştirebilirsiniz. EA ayrıca 10 pip'ten itibaren karı kilitleyen bir takip durdurma (trailing stop) uygular; bunu da değiştirebilirsiniz. Tüm hesap için drawdown yönetim işlevi bulunmaktadır. EA, haber olayları sırasında ticareti kapatmak isterseniz hab
Quantum Emperor MT4
Bogdan Ion Puscasu
4.88 (144)
Tanıtımı       Quantum Emperor EA   , prestijli GBPUSD çiftinde işlem yapma şeklinizi değiştiren çığır açan MQL5 uzman danışmanı! 13 yılı aşkın ticaret tecrübesine sahip deneyimli yatırımcılardan oluşan bir ekip tarafından geliştirilmiştir. IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. ***Quantum Emperor EA satın alın ve Quantum StarMan veya Quantum Gold Emperor'ı ücretsiz edinin!*** Daha fazla ayrıntı için özeld
Diamond PRO
Fanur Galamov
5 (22)
Sale 30% OFF! Only 1 copy left for $199. Next 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 a
AW Recovery EA
AW Trading Software Limited
4.39 (72)
Expert Advisor, kârsız pozisyonları kurtarmak için tasarlanmış bir sistemdir.   Yazarın algoritması kaybeden bir pozisyonu kilitler, onu birçok ayrı parçaya böler ve her birini ayrı ayrı kapatır. Kolay kurulum, düşüş durumunda gecikmeli başlatma, kilitleme, diğer Uzman Danışmanları devre dışı bırakma, trend filtreleme ile ortalama alma ve kaybedilen bir pozisyonun kısmi kapanması tek bir araçta yerleşiktir. Sadece tüm gruplarda siparişleri kapatan şebeke stratejilerinin aksine, kayıplarla daha g
CyBRG RX Mt4
Arseny Potyekhin
5 (3)
Introducing CyBRG RX: The Next-Generation Trading Assistant Step into the future of trading with CyBRG RX, your cutting-edge trading companion designed to elevate your trading experience. Harnessing the power of advanced neural networks, CyBRG RX is engineered to analyze and adapt to ever-changing market conditions with unparalleled precision. Signals:   Live Signal 1 Live Signal 2 Because this strategy is so unique, I only want to sell a limited number of licenses. Therefore, the price
Boring Pips MT4
Thi Thu Ha Hoang
5 (13)
Çoğu uzman danışmanın neden canlı işlemlerde etkili olmadığını, mükemmel geri test performanslarına rağmen, hiç merak ettiniz mi? En olası cevap Over-fitting'dir. Birçok EA, mevcut tarihsel verilere mükemmel şekilde 'öğrenmek' ve uyum sağlamak için oluşturulur, ancak oluşturulan modelde genelleme eksikliği nedeniyle geleceği tahmin etmekte başarısız olurlar. Bazı geliştiriciler basitçe Over-fitting'in varlığından haberdar değillerdir veya biliyor olmalarına rağmen bunu önlemenin bir yolu yoktur
-   Real price is 1000$   - Limited Discount (It is now 399$) Welcome, Bitcoin Expert opens automatically trade with Highly profit, Fixed Stop loss. After purchase, You can receive  Gold Trade Expert  for  Free ! Contact me for this  BONUS ! No Martingale, No Grid, No Scam It is fully focused on exploiting the volatility of the Bitcoin market by trading the breakouts of support and resistance levels with  many AI conditions to find best position trades. The focus of the EA lies on safety, whi
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
Gold Trade Pro
Profalgo Limited
4.63 (24)
Tanıtımı başlat! 449$'dan sadece birkaç kopya kaldı! Sonraki fiyat: 599$ Son fiyat: 999$ 1 EA'yı ücretsiz alın (2 ticari hesap için) -> satın aldıktan sonra benimle iletişime geçin 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, Altın ticareti EA'ları kulübüne katılıyor, ancak bü
The Gold Reaper MT4
Profalgo Limited
4.55 (29)
PROP FİRMASI HAZIR!   (   SETFILE'ı indirin   ) PROMO BAŞLAT: Mevcut fiyata yalnızca birkaç kopya kaldı! Son fiyat: 990$ 1 EA'yı ücretsiz alın (2 ticari hesap için) -> satın aldıktan sonra benimle iletişime geçin Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here New V2.2 Live Signal Old Live Signal Altın Reaper'a hoş geldiniz! Çok başarılı Goldtrade Pro'yu temel alan bu EA, aynı anda birden fazla zaman diliminde çalışacak şekilde tasarlanmıştır ve ticaret sıklığını çok m
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
Indicement MT4
Profalgo Limited
5 (2)
Indicement'a Hoş Geldiniz! PROP FİRMASI HAZIR! -> set dosyalarını   buradan indirin LANSMAN PROMOSYONU: Güncel fiyattan sadece birkaç adet kaldı! Son fiyat: 990$ NEW: Choose 1 EA for FREE! (limited to 2 trading account numbers) En İyi Kombo Fırsatı     ->     buraya tıklayın KAMU GRUBUNA KATILIN:   Buraya tıklayın   LIVE SIGNAL INDICEMENT,   Endeks piyasalarına profesyonel işlem algoritmaları oluşturma konusunda 15 yıllık deneyimimi getiriyor. EA, en iyi giriş fiyatını bulmak için çok iyi düş
Forex trading bot ai is an artificial intelligence-based robot with self-learning capabilities. This robot initiates its first trades based on the input parameters specified in the settings. Each trade executed by the robot is recorded in a file (memorized). The robot then analyzes all the closed trades and the conditions under which they were closed. If the overall profit of the closed trades is negative, the robot examines the parameters with which they were opened and adjusts them to improve
Way To Stars, düşük riskli fırsatlardan yararlanmak için düşük piyasa oynaklığı dönemlerinde ticaret yapmak için özel olarak tasarlanmış bir gece scalping EA'sıdır. Bu gece scalping EA, sık ticaret için küçük fiyat hareketlerini yakalamaya ve böylece zaman içinde kar biriktirmeye odaklanır. İşlem başına potansiyel kayıpları sınırlamak için katı stop-loss önlemleri kullanır ve etkili risk yönetimi sağlar. Way To Stars, sözde sinir ağlarına, yapay zekaya, ChatGPT'ye veya mükemmel düz çizgi geriye
Z4scalp
Cence Jk Oizeijoozzisa
2.75 (12)
----------------------------------------------Tanıtıyoruz: Z4SCALP------------------------------------------------- Z4SCALP, işlem başına bir SL'ye sahip, çok küçük SL'li, martingale olmadan tasarlanmış gelişmiş bir işlem robotudur. Özel Teklif: Bir ürün satın alın ve diğerini ÜCRETSİZ alın! Diğer üç versiyon ücretsiz olarak mevcuttur ------------------------------------------------------------------------------------------------------------------------------------- Test stratejisine güvenmiyo
Long and Short PRO EA
Aleksandr Kazmirchuk
5 (1)
Long and Short PRO EA is an improved advisor Long and Short FREE EA (unfortunately, users down conduct assessments on purpose, so we had to release a paid version). All the functions that were requested are implemented. The code has been rewritten and many errors have been fixed, including those related to closing positions. This advice will be improved in the future. One of the Yarukami Mnukakashi family of advisors for gold (XAUUSD). You can also trade Forex currency pairs. Work with a spread
Bonnitta EA
Ugochukwu Mobi
2.9 (20)
Bonnitta EA, Bekleyen Pozisyon stratejisine (PPS) ve çok gelişmiş bir gizli ticaret algoritmasına dayanmaktadır. Bonnitta EA'nın stratejisi, gizli bir özel gösterge, Trend çizgileri, Destek ve Direnç seviyeleri (Fiyat Eylemi) ve yukarıda belirtilen en önemli gizli ticaret algoritmasının bir kombinasyonudur. 3 AYDAN FAZLA GERÇEK PARA TESTİ OLMADAN BİR EA ALMAYIN, BONNITTA EA'YI GERÇEK PARA ÜZERİNDE TEST ETMEM VE SONUCU AŞAĞIDAKİ BAĞLANTIDAN GÖRMEM 100 HAFTADAN FAZLA (2 YILDAN FAZLA) ALDI. BONN
Canlı Sinyal-1: Buraya tıklayın MT5 Sürümü: Buraya tıklayın Quantum Pip   'yı ücretsiz alın (2 işlem hesabı için) -> satın aldıktan sonra benimle iletişime geçin Nasdaq Algo Trading'e hoş geldiniz Bu EA (Uzman Danışman), 13 yılı aşkın programlama ve ticaret deneyimine sahip bir ekip tarafından oluşturulmuş ve tasarlanmıştır. EA, uzun vadeli ve istikrarlı kâr sağlayabilen bir sistem geliştirmeye odaklanır. Risk içermeyen stratejiler kullanır ve Martingale, Grid ve Hedging yöntemlerini, ayr
Filtrele:
İnceleme yok
İncelemeye yanıt
Sürüm 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.
Sürüm 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
Sürüm 1.4 2024.04.02
- moved the window size change to the indicator
- changed parameter name to Built-in
Sürüm 1.3 2024.03.29
fixed typo in pending orders
Sürüm 1.2 2024.03.24
changed parameter names
Sürüm 1.1 2024.03.23
Fixed statistics window