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

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


Önerilen ürünler
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 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
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:
CN Hamster CN Hamster tamamen otomatik bir EA'dir. Martin'i kullanmıyor, depo ekleme stratejisi ve BOLL ve zigzag göstericilerine dayalı. Genel tavsiyeler En az depozit miktarı 100 dolar olduğunda, çok şeyi 0.01'e ve maxopenorder=1'e ayarlamak daha iyi. Öntanımlı ayarlar Greenwich Orta Zaman+2. İyi çalışan ve düşük yayılan brokerleri kullan. Sadece ECN veya STP hesaplarını düşük fiyat farklısıyla ve güçlü pazar idaresiyle kullanmak tavsiye ediliyor. VPS'i düşük bir ping değerinde
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 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
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
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
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 , Matrix Arrow Göstergesinin MT4 sinyallerini grafikteki bir ticaret paneli ile manuel olarak veya %100 otomatik olarak takas edebilen benzersiz bir uzman danışmandır. Matrix Arrow Indicator MT4 , mevcut eğilimi erken aşamalarında belirleyecek ve aşağıdakiler gibi 10'a kadar standart göstergeden bilgi ve veri toplayacaktır: Ortalama Yönlü Hareket Endeksi (ADX) Emtia Kanal Endeksi (CCI) Klasik Heiken Ashi mumları Hareketli ortalama Hareketli Ortalama Yakınsama Iraksaklığı (MA
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
Canlı performans : AUDUSD Hızlı başlangıç - EA'yı AUDUSD, EURUSD veya herhangi bir majör forex paritesinin M5 grafiğine ayarlayın. - Rahat bir risk seviyesi belirleyin. - Saat dilimi ayarlarının doğru olduğundan emin olun. Varsayılanlar çoğu broker için doğrudur. - Geri kalan ayarları varsayılan olarak bıraktım, EA işlem yapmaya hazır. Özelleştirilebilir ticaret mantığı - Döviz bazında günlük fiyat hareketleri takip edilir ve bu hareketlerin niteliğine göre fiyatın başlangıç seviyelerine ge
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
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_
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 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
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 - fiyat aksiyon araştırmasına dayalı mükemmel bir otomatik ticaret sistemidir! Bu, sizin için tüm ticaret işini yapan "ayarla ve unut" Uzman Danışmanıdır! 7 Set dosyası mevcuttur! Ticaret fikri, ünlü güçlü Fiyat Aksiyon kalıbına dayanmaktadır - OutsideBar! Price Action OB Trader EA çok iyi bir yatırımdır - sizin için yıllarca çalışacaktır, tüm Set_files pozitif matematiksel beklentiye sahiptir! EA'yı kullanmak/test etmek için "Yorumlar" bölümünden Set dosyalarını k
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+
Bu ürünün alıcıları ayrıca şunları da satın alıyor
CyNera MT4
Svetlana Pawlowna Grosshans
5 (8)
CyNera: Sizin Ticaretiniz, Bizim Teknolojimiz Sinyaller >400%:  CyNera Sinyaller >500%: CyNera Turbo 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ı: 4 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 ti
CyNeron MT4
Svetlana Pawlowna Grosshans
5 (1)
CyNeron: Hassas Ticaret ve Yapay Zeka İnovasyonu Sinyaller :   CyNeron Kılavuz ve ayar dosyaları : Satın alma işleminden sonra benimle iletişime geçin, kılavuz ve ayar dosyalarını alın Fiyat : Satılan kopya sayısına bağlı olarak fiyat artar Mevcut kopyalar : 5 Yapay Zeka Destekli Anlık Analiz: Piyasada Bir İlk CyNeron, gelişmiş yapay zekayı yenilikçi bir ticaret yaklaşımıyla entegre eden piyasadaki ilk EA'dir, piyasa koşullarının ayrıntılı anlık görüntülerini yakalayarak ve işleyerek. Yapay z
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
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,
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 – Altın Ticareti (XAU/USD) için Yapay Zekâ Gücü Ticarette teknolojinin tüm gücünü keşfedin! Aurum AI , altın piyasasında istikrarlı ve güvenli bir şekilde işlem yapmak için tasarlanmış devrim niteliğinde bir uzman danışmandır. Yapay zekâ gücü, doğru trend analizi ve sıkı risk yönetimini bir araya getirerek her işlemde maksimum verimlilik sağlar. Şeffaflık ve Sonuçlar 19 Aralık'ta uzman danışmanımız (EA), tüm canlı işlem dönemi boyunca ilk kez zarar etti ve toplam kâr %54,40'tan %36,72'y
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
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
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
Quantum Emperor MT4
Bogdan Ion Puscasu
4.84 (150)
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
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
Gold One MT4
Habib Gholamali Heidari
5 (4)
Gold One  MT4 Forex'teki altın ticaret meraklılarına merhaba, En iyi altın trader'larının arasına katılabileceğiniz robotumuza hoş geldiniz. Forex piyasasında 20 yılı aşkın hassas deneyimle, son nesil ticaret robotumuzu gururla sunuyoruz. Özellikler:  Prop firma zorlukları için ideal. Küçük sermayeler dahil olmak üzere tüm hesap boyutlarına uygundur. Hiç   Grid ve   Hiç   Martingale %100 Tamamen otomatik Bu robot, alış ve satış noktalarını belirlemede eşsiz doğrulukla, altın için en son, yeni
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)
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
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
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
Boring Pips MT4
Thi Thu Ha Hoang
4.71 (14)
Ç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 yokt
Aura Black Edition
Stanislav Tomilov
4.73 (15)
Aura Black Edition, yalnızca ALTIN ​​ticareti yapmak için tasarlanmış tamamen otomatik bir EA'dır. Uzmanlar, 2011-2020 döneminde XAUUSD'de istikrarlı sonuçlar gösterdi. Hiçbir tehlikeli para yönetimi yöntemi kullanılmadı, martingale yok, grid veya scalp yok. Herhangi bir broker koşulu için uygundur. Çok katmanlı bir algılayıcı ile eğitilen EA Sinir Ağı (MLP), ileri beslemeli yapay sinir ağı (ANN) sınıfıdır. MLP terimi belirsiz bir şekilde kullanılır, bazen gevşek bir şekilde herhangi bir ileri b
Aura Neuron MT4
Stanislav Tomilov
5 (1)
Aura Neuron, Aura serisi ticaret sistemlerini sürdüren özgün bir Uzman Danışmandır. Gelişmiş Sinir Ağları ve son teknoloji klasik ticaret stratejilerinden yararlanarak Aura Neuron, mükemmel potansiyel performansa sahip yenilikçi bir yaklaşım sunar. Tamamen otomatik olan bu Uzman Danışman, EURUSD ve XAUUSD (ALTIN) gibi döviz çiftlerinde işlem yapmak üzere tasarlanmıştır. 1999'dan 2023'e kadar bu çiftlerde tutarlı bir istikrar göstermiştir. Sistem, martingale, grid veya scalping gibi tehlikeli par
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
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)
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.
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
AW Recovery EA
AW Trading Software Limited
4.4 (75)
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
Vortex - geleceğe yatırımınız Vortex Gold EA uzman Danışmanı, Metatrader platformunda altın ticareti (XAU / USD) için özel olarak yapılmıştır. Tescilli göstergeler ve gizli yazarın algoritmaları kullanılarak oluşturulan bu EA, altın piyasasındaki karlı hareketleri yakalamak için tasarlanmış kapsamlı bir ticaret stratejisi kullanır. Stratejisinin temel bileşenleri, ideal giriş ve çıkış noktalarını doğru bir şekilde işaret etmek için birlikte çalışan CCI ve Parabolik Gösterge gibi klasik gösterg
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
这是一种全自动智能自适应算法。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
Aura White Edition
Stanislav Tomilov
3.67 (6)
Aura White Edition   is unique Expert Advisor that continues the Aura series of advisors. The Expert Advisor is based on the engine of   Aura Black Expert Advisor , but with a number of changes and author's settings for currency pairs. Innovative methods of the programme's approach to trading, and promising performance results are possible thanks to the use of modern technologies and methods. Aura White Edition is a fully automated EA designed to trade currencies only. Working pairs EURUSD, GBPU
Mevcut promosyon: 549$'dan sadece 1 adet kaldı Son fiyat: 999$ NEW: Choose 1 EA for free! (for 2 trade account numbers) Promosyon blogumuzdaki   "   Ultimate EA kombo paketimize "   göz atmayı unutmayın   !   LIVE SIGNAL Bitcoin Scalp Pro, piyasadaki benzersiz bir ticaret sistemidir.  Destek ve direnç seviyelerinin kırılmalarını ticaret yaparak tamamen Bitcoin piyasasının oynaklığından yararlanmaya odaklanmıştır. EA'nın odak noktası, işlemlerde aşırı düşük dezavantajlara ve çok iyi bir risk
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
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