• 미리보기
  • 리뷰
  • 코멘트
  • 새 소식

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.

======================================== LIVE SIGNALS ========================================

EUR basket: https://www.mql5.com/en/signals/2218143

GBP basket: https://www.mql5.com/en/signals/2225924

=============================================================================================

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


추천 제품
| 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
TC Poseidon EA
Pablo Leonardo Spata
This is a trading robot to work on USDCHF - Timeframe H1 . It exploits a statistical advantage produced in the Swiss franc. All trades with SL and TP. Backtest now!   Special OFFER for this week Discount price - $ 49. Next price $ 149. BUY NOW!!!   Would you like to see how 100 dollars turn into more than 3 million dollars? Do you already have a robust strategy that works on USDCHF ? TC Poseidon EA is the god of the seas, water, storms, hurricanes, earthquakes, and horses. Use its power to
Grid and MACD
Vladimir Gribachev
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
Vladimir Gribachev
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 MT4
NGUYEN NGHIEM DUY
Bear vs Bull EA Is a automated adviser for daily operation of the FOREX currency market in a volatile and calm market. Suitable for both experienced traders and beginners. It works with any brokers, including American brokers, requiring FIFO to close primarily previously opened transactions. *In order to enable the panel, it is necessary to set the parameter DRAW_INFORMATION = true in the settings;  Recommendations Before using on real money, test the adviser with minimal risk on a cent tr
Universal MT4 MACD
Vladimir Gribachev
MACD 표시기의 거래 로봇 이것은 거래 로봇의 단순화된 버전이며 하나의 진입 전략만 사용합니다(고급 버전에는 10개 이상의 전략이 있음) 전문가 혜택: 스캘핑, 마틴게일, 그리드 트레이딩. 하나의 주문 또는 주문 그리드로만 거래를 설정할 수 있습니다. 동적, 고정 또는 승수 단계 및 거래 로트가 있는 고도로 사용자 정의 가능한 주문 그리드를 통해 Expert Advisor를 거의 모든 거래 수단에 적용할 수 있습니다. 드로다운 복구 시스템, 손실 주문 및 잔액 보호 중복 그리드 거래가 반등하지 않는 가격 변동에 취약하다는 것은 비밀이 아니지만 주문 복구 시스템 덕분에 고문은 대부분의 하락에서 벗어날 수 있습니다. 드로우다운 탈출은 수익성이 없는 가장 먼 주문과 시장에 가장 가까운 주문을 이익이 있는 주문과 겹치는 방식으로 수행됩니다. 거래 로봇은 수동 거래 또는 다른 전문가가 개설한 거래의 경우 계정에서 손실된 위치를 복구하는 데 사용할 수 있습니다.
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
Index Trader Suite
Ivan Pochta
5 (1)
>>> Index Trader Suite Live  Results  here >> >>> Index Trader Suite v.1.0 Presets: Download >> >>>    Index Trader Suite MT5 version available   here >> Index Trader Suite is a fully automated trading advisor based on a proprietary trading strategy for the world's most popular and liquid Stock Indices. The system is based on the principles of Price Action and does not use technical indicators to determine the optimal points for opening trades. The strategy is based on 2 key principles of
Success Forex
Mr Teerawoot Aonlamool
Way  to success  EA EA used to trade gold, try to get up to 10000 points of chart drag Trade according to trends, use up to 5 indicators to set values. It is a Martingale system. Fixed when the first lot lost by multiplying not over There is a trailing system. Stop comes when there is a profit. Max drawdown only 24.18% Testing Through the Crisis of War Within 6 months the profit reaches 128.74%
H4 GBPUSD Trend Scalper is a trend signal scalper The EA trades according to the trend strategy using original built-in indicator for opening and closing orders. The external inputs for limiting trading on Fridays and Mondays are available. The purpose of the strategy is to use the current trend with the most benefit. According to the results of testing and working on demo and real accounts, the best results achieved by using the Н4 timeframe on the GBP/USD pair Works on MetaTrader 4 Build 971+
Fxdolarix
Andrey Kozak
Fxdolarix is an automatic robot scalper for GBPUSD M5. Was tested on a real account for 3 months. The robot uses a scalping strategy focused on short-term intraday price movements. The main emphasis is on identifying moments of short-term volatility and executing quick trades. The robot uses such indicators as: iMACD, iMA, iStochastic. Using these indicators, the robot identifies the direction of the trend, and with the help of tick price movement activity, the robot identifies sharp impulses i
Trendless Scalper
Jaspreet Singh Saini
As the name says, Trendless Scalper doesn't care for what trend is going on in the currency pair. It opens one trade as selected by user and then keep on adding trades according to direction itself. It don't have very complicated parameters. Simply apply on any chart and it works. It is recommended that the spread of the account should be low, but it dont have any restriction for accounts with high Spread too. It can trade any chart and any timeframe. This EA works for those accounts which can h
Общие сведения Для начала торговли достаточно небольшого депозита. Подходит для мульти-валютной торговли. Не зависим от качества соединения и торговых условий.  Принцип работы Эксперт открывает ордера по встроенному индикатору. Если прибыль ордера плюсовая. Данный ордер закрывается и открывается новый в противоположном направлении объёмом  Lot . Если прибыль ордера минусовая. Данный ордер закрывается и открывается новый в этом же направлении и объёмом в  Martingale  раз больше преведущего.
Forex Fibonacci
Yuriy Kuzmin
4.43 (7)
After purchasing, you can request and receive any two of my products for free! После покупки вы можете запросить и получить два любых моих продукта бесплатно! The trading robot is designed for trading in the Forex market. Safety in trading: constant stop loss, take profit, protection from increased spread. The advantage of the advisor is trading Money Management (money management system) automatic lot calculation based on the size of your deposit, automatic installation and movement of Fibona
EA Golden King
Maksym Shyshatskyi
Golden King Expert Advisor는 주로 금(XAU/USD) 거래에 초점을 맞춘 독특한 스캘핑 전략을 사용하여 외환 시장을 위해 특별히 설계된 자동 거래 프로그램입니다. 이 EA는 금 가격 변동으로 돈을 벌 수 있는 빈도가 높고 빠른 방법을 찾는 거래자를 위해 설계되었습니다. "황금왕"의 주요 특징: 스캘핑 전략: 이 EA는 스캘핑 전략을 사용합니다. 즉, 짧은 시간, 종종 몇 분 내에 포지션을 개설하고 청산합니다. 이를 통해 작은 가격 변동에도 빠르게 수익을 올릴 수 있습니다. 독특한 개발: 고문의 저자는 금 시장에서 최적의 결과를 위해 독특하고 정제될 수 있는 전략 개발에 특별한 주의를 기울였습니다. 자동화된 거래: Golden King은 완전 자동화되어 있어 사람의 개입 없이 연중무휴로 운영될 수 있습니다. 거래자는 매개변수를 조정하고 결과를 모니터링하기만 하면 됩니다. 위험 준수: 이 EA에는 일반적으로 손실을 최소화하고 거래자의 투자를 보호
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
Circadian
Conor Stephenson
3 (4)
Circadian은 세 가지 통화 쌍 간의 가격 상관 관계를 사용하여 작동하는 삼각형 차익거래 전문 자문입니다. 전문가는 한 번에 세 쌍을 거래하며, 이들은 한 세트로 그룹화됩니다. 세트는 사용자 정의 순열 계산기를 사용하여 찾거나 기본 선택에서 선택됩니다. 동기화된 재정 거래 기회를 검색하기 위해 각 세트에 대해 1분 20초가 할당됩니다. 일단 유효한 신호가 발견되면 세트가 잠기고 3개의 거래가 열립니다. 알고리즘에는 세트의 모든 쌍을 자동으로 관리하는 동적 이익실현 및 바스켓 청산 논리가 장착되어 있습니다.      신호 및 그룹 채팅: https://www.mql5.com/en/users/conorstephenson      전문가 개념에 대한 자세한 설명과 각 입력에 대한 설명은 사용자 가이드를 확인하세요.      설정 조언과 무료 전문가 조언을 받으려면 구매 후 저에게 연락하세요! 제 제품은 MQL5에서만 판매하고 있는 제품인데, 다른 곳에서 이 제품을
Ilanis
Mikhail Sergeev
4.61 (28)
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
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
Night Zen
Anton Iudakov
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 MT4
Julia Lopez
5 (3)
Dr Trade Pro을 소개합니다. 지능적이고 일관된 거래를 위해 정교하게 디자인된 EA입니다. 저희 전문가 어드바이저는 정확성에 의존하여 트렌드 인식 및 정확한 시장 분석을 활용하여 거래를 원활하게 실행합니다. Dr Trade Pro은 각 거래에 대한 전략적인 백업 계획을 갖추어 수익성을 강조하면서 잠재적인 손실을 최소화합니다. Dr Trade Pro을 돋보이게 만드는 특징 중 하나는 다양한 시장 조건에 대응 가능하다는 점입니다. 이는 뉴스 및 시장 변동성에 대한 저항성이 뛰어난 신뢰할 수 있는 EA에 필수적인 특성입니다. 이러한 적응성 덕분에 봇은 시장 변화를 원활하게 감지하고 알고리즘을 업데이트하여 크거나 더 변동성이 있는 시장에서도 안정성과 최적의 성능을 유지합니다. Dr Trade Pro이 거래에서 평균 전략을 채용하고 있다는 점을 주목해주시기 바랍니다. 이 EA 스타일에 익숙하지 않은 경우 구매를 고려하기 전에 기능을 면밀히 검토하는 것이 좋습니다. Dr Trade P
DAX30 expert Optimus
Ol'ga Alpatova
5 (1)
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 TERM
Gold Digger vMT4
Dragan Drenjanin
The   Gold Digger   is designed for trading on the   XAUSUD   or   GOLD   symbol. The current recommendation is to use the robot on the   H41 timeframe.   The robot is crafted in a minimalist style, yet it possesses all the features of a fully rounded system. Therefore, the robot has an option that allows it to work with all types of orders, reverse positions, and an advanced money management system. All exit rules are calculated based on independent ATR indicators. If the robot is used on vario
The Immortal Tree system EA is a  Fully automated Smart grid strategy , advanced money management Designed for trading NZDCAD,AUDNZD,AUDCAD as protection against failures – when the connection is restored, the advisor will continue to work with its orders. Advanced setting trading time intervals. The purchase price rises to USD 399 when the signal account profit rises over 115%. ** 1/10 ** for $159 next 359  Live Signals : *** Live Signal ** >>>   Live 1   <<< ** ***     Designed for t
HFT Hunter
Vladimir Gribachev
1 (2)
This intraday scalper Expert Advisor trades by capturing sharp jumps during a high market volatility. It can work both with market and pending orders. Most of the time, the EA is in standby mode, therefore do not expect fast results immediately. FIFO compliant. Only one market order can be opened on each symbol at a time. No martingale, no grid, no hedging Attention! This EA relies on the movement speed of the quotes, and requires a VPS server for stable operation. The recommended minimum deposi
Please DON'T Keep Default settings try the set below https://drive.google.com/open?id=17byTA0brzBJl8B56l2r2gJf-C0gKtHva The Forex Hacked is a grid scalper EA fully automated expert Advisor This EA is a cycle of buy or sell depending of signaling, it start with the base"lot and increase the size at every step by its factor and set a global take profit," if daily target profit is hit then close all orders, also have a time filtering, you can enable hedging after especified quantity of loss or
Impuls Pro MT4
Sergey Batudayev
5 (3)
EA의 전략은 스윙 트레이딩을 기반으로 하며 iPump 지표에 의해 계산된 날카로운 충동 이후의 항목이 있습니다. 앞서 언급했듯이 EA는 자동 지원으로 수동 거래를 열 수 있습니다. - 하락추세의 경우 ↓ 가격 조정 후 거래에 진입하고 자산이 과매수 영역에 들어가 추세를 따라 매도합니다. - 상승 추세 ↑의 경우 가격 조정 후 거래에 진입하고 자산이 과매도 영역에 빠지면 추세를 따라 매수합니다. 선택한 자산에서 거래할 때 고문은 추세를 고려하고 현재 추세에 따라 거래를 엽니다. 수익성이 없는 거래는 중지와 평균을 사용하여 마감할 수 있습니다. 두 번째 옵션은 확실히 더 수익성이 높지만 더 위험합니다. 장점 다양한 TF에 대한 레벨 분석을 위한 내장 레벨 표시기 차트에서 수동으로 평균화 수준을 선택하는 기능 많은 피라미드형 주문을 열어 이익을 배가할 수 있는 능력(주문 수는 스스로 제어할 수 있음) iPump 표시기의 역 신호를 기반으로 TP in% 설정에 대한 추가 기준 "손" 모
이 제품의 구매자들이 또한 구매함
The Gold Reaper MT4
Profalgo Limited
4.85 (27)
소품 회사 준비 완료!   (   세트파일 다운로드   ) 출시 프로모션: 현재 가격으로 몇 장 남지 않았습니다! 최종 가격: 990$ 1EA를 무료로 받으세요(2개의 거래 계정에 대해) -> 구매 후 저에게 연락하세요 Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal 골드 리퍼에 오신 것을 환영합니다! 매우 성공적인 Goldtrade Pro를 기반으로 구축된 이 EA는 동시에 여러 기간에 걸쳐 실행되도록 설계되었으며 거래 빈도를 매우 보수적인 것부터 극단적인 변동까지 설정할 수 있는 옵션이 있습니다. EA는 여러 확인 알고리즘을 사용하여 최적의 진입 가격을 찾고 내부적으로 여러 전략을 실행하여 거래 위험을 분산시킵니다. 모든 거래에는 손절매와 이익 실현이 있지만, 위험을 최소화하고 각 거래의 잠재력을 극대화하기 위해 후행 손절매와 후행 이익 이익도 사용합니다. 이 시스템은 매우
Gold Trade Pro
Profalgo Limited
4.59 (22)
프로모션 시작! 449$에 얼마 남지 않았습니다! 다음 가격: 599$ 최종 가격: 999$ 1EA를 무료로 받으세요(2개의 거래 계정에 대해) -> 구매 후 저에게 연락하세요 Ultimate Combo Deal   ->   click here New live signal:   https://www.mql5.com/en/signals/2084890 Live Signal Set Prop Firm Set JOIN PUBLIC GROUP:   Click here Gold Trade Pro는 금 거래 EA의 클럽에 합류하지만 한 가지 큰 차이점이 있습니다. 이것은 진정한 거래 전략입니다. "실제 거래 전략"이란 무엇을 의미합니까?   아시다시피 시장에 있는 거의 모든 Gold EA는 단순한 그리드/마팅게일 시스템으로 시장이 초기 위치와 반대 방향으로 갈 때 거래를 추가합니다.  그들은 종종 "신경망/AI/머신 러닝"으로 위장하지만 외환 및 EA에 약간의 경험이 있는 경우 매
Quantum Emperor MT4
Bogdan Ion Puscasu
4.93 (124)
소개       Quantum Emperor EA는   유명한 GBPUSD 쌍을 거래하는 방식을 변화시키는 획기적인 MQL5 전문 고문입니다! 13년 이상의 거래 경험을 가진 숙련된 트레이더 팀이 개발했습니다. IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. ***Quantum Emperor EA를 구매하면 Quantum StarMan, Quantum Trade EA 또는 Quantum Gold Emperor를 무료로 받을 수 있습니다!*** 자세한 내용은 비공개로 문의하세요. 새로운 라이브 신호 V4:   여기를 클릭하세요 MT5 버전 :   여기를 클릭하세요 Quantum EA 채널:       여기를 클릭하세요 *프로모션 가격: $1199. 10번 구매시마다 가격이 100달러씩 인상됩니
One Gold MT4
Stanislav Tomilov
5 (9)
Welcome to the world of next-generation investments with our unique trading robot for gold on the MetaTrader platform! Our proprietary developments represent the pinnacle of advanced data analysis computational platforms in the world of trading. One Gold EA is a genuine smart algorithm, operating at a level beyond human traders' reach. Its unique method is based on the principles of a neuroscanner and advanced technologies in neural networks, EA is capable of analyzing historical and current dat
Strategy Introduction The EA will find the best entry and exit points based on the data trained by the neural network and the current market trend. It includes multiple loss exit strategies to ensure capital safety. Because the market is full of uncertainties, it is impossible to enter at the most ideal point every time. Our EA uses a unique batch entry method, adding up to 5 entry points. Even occasional misjudgments can quickly recover subsequently. Each order has a fixed stop loss (SL) and t
Bitcoin Robot MT4
Marzena Maria Szmit
5 (5)
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
Aura White Edition
Stanislav Tomilov
4.4 (5)
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
Gold Garden MT4
Chen Jia Qi
4.2 (5)
Deep learning is reshaping gold trading, with intelligent assistants tending to trading gardens like skilled gardeners. The "Gold Garden" EA employs deep learning intelligent technology and 20 years of data training to significantly enhance strategy performance. With it, trading becomes more effortless and intelligent. Let's join hands to usher in the intelligent era and transform trading into a blissful garden. This will be your exclusive Gold Garden Steward. The MT5 version: Gold Garden MT5
Aura Black Edition
Stanislav Tomilov
4.76 (17)
Aura Black Edition is a fully automated EA designed to trade GOLD only. Expert showed stable results on XAUUSD in 2011-2020 period. No dangerous methods of money management used, no martingale, no grid or scalp. Suitable for any broker conditions. EA trained with a multilayer perceptron Neural Network (MLP) is a class of feedforward artificial neural network (ANN). The term MLP is used ambiguously, sometimes loosely to any feedforward ANN, sometimes strictly to refer to networks composed of mult
TrendMaster FX MT4
Chen Jia Qi
5 (9)
Introducing our MT5 EA: Designed with advanced algorithms and utilizing deep learning technology, our Expert Advisor (EA) is crafted to assist you in the intricate world of forex trading. The system analyzes market behaviors and conducts transactions based on specific criteria, empowering you to engage with market trends more effectively. With the backing of nearly a decade of data, the EA employs deep learning to examine past market conditions, aiming to provide enhanced decision-making. Recom
Hercules AI MT4
Aleksandr Chebotaev
Hello, my name is Alexander. I would like to introduce you to my new development, the Hercules AI advisor. The advisor is synthesis of Price Action Method and Artificial Intelligence technologies.  It doesn't use  any indicators. The EA works well on Gold  pair. The advisor has shown stable performance for more than 10 years. It does not use dangerous trading methods such as martingale, etc. All transactions are protected by take profit and stop loss. I tried to make the advisor as easy to insta
Odin AI
Nestor Alejandro Chiariello
5 (2)
안녕하세요 거래자 여러분, 저는 이전의 몇 가지 전략을 기반으로 한 도구인 그의 지혜와 지능에 대해 흠잡을 데 없는 실제 결과로 ODIN AI를 외환 시장에 적용하여 기계 학습의 인공 지능에 적용하도록 설계했습니다. , AI는 매개 변수를 읽은 다음 이를 내 전략에 참조한 다음 항목의 품질이 더 좋도록 학습하고 위치를 복구할 수 있는 노드도 있습니다. 또 다른 혁신적인 점은 다음과 같습니다. 모든 것이 가상 방식으로 캡슐화됩니다. 즉, 손실 정지 및 이익 실현 등의 서버로 전송되는 데이터가 없으며 매우 인도적인 방식이 될 것입니다. 이 스캘퍼는 위험을 제한하면서 전략적으로 진입할 수 있도록 미끄러짐 및 프리드 보호 기능을 갖추고 설계되었습니다. 완전히 지능적이고 자체 관리되는 메타 트레이더를 위해 독점적으로 설계되었습니다. 두 번째 중요한 점은 내가 extractFeatures 및 trainModel 함수를 디자인한다는 것입니다. 이는 양초를 디자인하고 Sli
Dragon Multi EA MT4
Mansour Babasafary
4.71 (17)
77% discount for the next 10 buyers (original price $3000): 1 person left Get a 50% bonus by buying (or even renting) any of our products. After buying (or renting), send a message for more information. 3 experts in 1 expert Strategy based on price action Made specifically for the best forex currency pairs Can be used in the best time frame of the market at a very reasonable price This expert is basically 3 different experts. But we have combined these 3 experts in 1 expert so that you can
TopBottomEA
lizhi fu
4.78 (51)
TopBottomEA's advantage: the first support for small capital work EA, real trading for more than 4 years; this EA based on volatility adaptive mechanism, only one single at a time, each single with a stop-loss, an average of about 4 orders per day, holding a single length of 12 hours or so, with a limit of $ 20 principal challenge backtesting ran through more than 10 years. Every interval of three days to increase the price of $ 100, the price process: 998 --> 1098 --> 1198...... Up to the targ
Oracle MT4
Stanislav Tomilov
4.29 (7)
Oracle Trading Expert the Quintessence of Modern Programming Technologies Expert Oracle for MetaTrader, trading on GBPUSD and Gold, represents the quintessence of modern programming technologies. Our unique proprietary methods and developments are based on advanced machine learning concepts, making our trading expert truly one-of-a-kind. We offer cutting-edge modules and neural architecture that embody innovative advancements in financial programming. Our algorithms rely on in-depth data analysi
Ai Hybrid Robot MT4
Mansour Babasafary
71% discount for the next 5 buyers (original price $9000): 1 person left Get a 50% bonus by buying (or even renting) any of our products. After buying (or renting), send a message for more information. Several experts in one expert With this expert, you can use several up-to-date strategies Enhanced with artificial intelligence Can be used in several popular forex currencies Can be used in the most popular forex time frames Without using high-risk strategies Attributes : Can be used in t
Gold Excel
Gregory Hay
4.5 (4)
에 오신 것을 환영합니다       GoldExcel EA   , XAUUSD(골드) 통화 쌍의 일일 거래자. 우리 팀에서 개발했으며 일반 계정, 후원 소품 계정 및 소품 콘테스트에 사용할 수 있습니다. 고주파 거래를 사용하지 마십시오. See all products here:   https://www.mql5.com/en/users/fxmanagedforexltd/seller 초기 가격은 몇 주마다 인상됩니다. Live $1K account Aggressive :  https://www.mql5.com/en/signals/2133201 Live $5K Low Risk:  https://www.mql5.com/en/signals/2133189 Live ICMarkets Test account Medium Risk :  https://www.mql5.com/en/signals/2133192 진 주오       이것은 금 쌍만을 사용하는 독특한 일일 거래 전략입니다. 금 쌍은 높은 일일
Big Forex Players MT4
Marzena Maria Szmit
4.64 (22)
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
XG Gold Robot MT4
Marzena Maria Szmit
4.57 (21)
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
Gyroscopes
Nadiya Mirosh
Gyroscope        professional forex expert   (for EURUSD, GBPUSD, USDJPY, AUDUSD, USDCHF, EURGBP, EURJPY, NZDUSD, USDCAD, EURCHF, AUDJPY, CADJPY pairs)   alyzing the market using the Elliot Wave Index. Elliott wave theory is the interpretation of processes in financial markets through a system of visual models (waves) on price charts. The author of the theory, Ralph Elliott, identified eight variants of alternating waves (of which five are in the trend and three are against the trend). The mo
CyberVision EA MT4
Eduard Nagayev
4 (1)
CyberVision EA is a technology I developed during my undergraduate studies. CyberVision EA is not just an advisor, it is a high-speed computing machine that can generate historical data. CyberVision EA is not just an EA, it is a high-speed computing machine that works with recurrent neural network (RNN) and generative adversarial network (GAN), and my EA also uses data quantization. Live Signal High:  https://www.mql5.com/ru/signals/2221931 Live Signal:  https://www.mql5.com/en/signals/2218278 C
Diamond Titan FX MT4
Lo Thi Mai Loan
5 (1)
런칭 프로모션: 50% 할인! $693에 몇 개의 사본만 남아 있습니다! 다음 가격: $993 Live signal:  https://www.mql5.com/en/signals/2220190?source=Site+Profile+Seller Prop Signal:  https://www.mql5.com/en/signals/2223219?source=Site+Signals+Profile+From+Author MT5:  https://www.mql5.com/en/market/product/116010?source=Site+Market+Product+Page Prop Challenge 트레이드 히스토리:   https://www.mql5.com/en/blogs/post/757093 자주 묻는 질문:   https://www.mql5.com/en/blogs/post/757094 Diamond Titan FX 추가 분석:   https://www.mql5.com/en/blogs/post/75
Pipsurfer EA
Clinton Keenan Obinna Butler
5 (1)
The Pipsurfer EA is a high level trend trading grid system designed to look for higher lows in an uptrend and lower highs in a down trend. It has the capabilities to be used on multiple different forex pairs at the same time and will pick the best entries out of the trading criteria among the pairs to enter trades with.  The Pipsurfer EA Comes with many features to ensure a smooth trading experience. Prebuilt settings package for easy set up for each tier of forex pairs. Each pair falls into a d
AI NeuroX EA MT4
Denis Kurnev
5 (2)
AI NeuroX EA is an innovative trading advisor based on advanced artificial intelligence technologies, including neural networks and the Perplexity and GPT-4 platforms. This advisor has a unique ability to analyze and predict the dynamics of financial markets using deep learning and advanced algorithms. Thanks to the intuition that even the most experienced traders would envy, AI NeuroX EA is capable of developing unprecedented trading strategies, ensuring excellent performance. This advisor oper
SSX Titan TT MT4
Artem Minchuk
2.55 (11)
Delving deep into the sphere of finance and trading strategies, I decided to conduct a series of experiments, exploring approaches based on reinforcement learning as well as those operating without it. Applying these methods, I managed to formulate a nuanced conclusion, pivotal for understanding the significance of unique strategies in contemporary trading. Neural network advisors, despite showcasing impressive efficiency in the initial stages, proved to be highly unstable in the long run. Vario
Candle EA MT4
Mansour Babasafary
4.58 (38)
This expert is based on patterns The main patterns of this specialist are candlestick patterns Detects trends with candlestick patterns It has a profit limit and a loss limit, so it has a low risk The best time frame to use this expert is M30 time frame The best currency pairs to use with this expert is the EURUSD, GBPUSD, AUDUSD, USDCAD currency pairs The price will increase by 100$ after every 10 purchases! Final price 2450$ Get a 50% bonus by buying (or even renting) any of our product
Bandwagon
ADELYN CASTILLO
4.91 (22)
22번째 달에 240% 수익을 냈습니다. 2년 실적 Bandwagon 2년 또 는 Bandwagon V2 로 Bandwagon Live Account를 확인할 수 있습니다. *메모: 지금 50% 할인 중이에요! 지금 사본을 받으세요! 매달 가격 인상이 예상됩니다. *경고: 불법 복제를 금지하십시오. 악 대차 EA 사본을 요청하는 사용자를 조심하십시오. Bandwagon은 불법 복제를 감지할 수 있으며 귀하의 계정이 그러한 행위를 하는 것으로 감지되면 EA가 계속해서 정상적으로 작동할 것이라고 약속할 수 없습니다. 악대차 특징: Bandwagon은 스윙, 그리드 및 헤징 EA입니다. 자금 관리는 모든 거래 전략에서 매우 중요합니다. Bandwagon은 적절한 자금 관리를 갖추고 있습니다. Bandwagon은 100% 자동화된 EA입니다. EA는 시장이 후퇴했는지, 아니면 언제 추세가 반전되었는지 알고 있습니다. 모든 메이저 및 마이너 쌍에 대해 작업하는 Multicurrency
R Factor EA
Raphael Minato
4.78 (41)
R FACTOR Multi Strategy Expert Advisor with Proprietary Dynamic Portfolio Management System After 4 years of development and more than    3    years  of real positive results , R Factor is available for MQL5 community! It has always been important for us that the strategies performed positively for the creator before it could be shared.     Skin In The Game  is essential to demonstrate the belief in the strategy and also to provide a continuous improvement of it. Anyone who has been in this
Darwin Evolution MT4
Guillaume Duportal
4.83 (12)
다윈 진화 !! 1490 USD ~ 990 USD 제한 시간 (다음 업데이트 도착에 대한 유효한 제안, 시간 낭비하지 마십시오 ) !!! MT4가 동시 멀티 쌍을 처리하지 않으므로이 EA의 백터를 만들 수 없습니다. Darwin은 지표 계산을 위해 28 쌍을 필요로합니다 !! 설명 : - 작업을 이해하고, 블로그를 읽고 (이 EA는 외환 거래의 철학을 반영합니다. 그것을 할 시간을 가져라 !! (Forex는 경주가 아닙니다) : https://www.mql5.com/en/blogs/post/745790. - 과거의 성능을 보려면 여기서 신호의 링크가 있습니다. 라이브 정상 신호 모드 : https://www.mql5.com/en/users/tradedeal/seller 라이브 신호 위험 모드 : https://www.mql5.com/en/users/tradedeal/seller 데모 버전 과거 성능 : https://www.mql5.com/
2 of 5 Units at 600 USD. Next price 900 USD This expert advisors search for perfect impulse setups. The approach is use a very few but high effectives rules / filters and an effective management of the opened position. Signal https://www.mql5.com/es/signals/2049326 Backtest The EA must be backtest in any timeframe, but for use in live, must be attached to a M5 chart. Live setup The EA is very easy to configure, and can be used with the default parameters. Only the parameters re
필터:
리뷰 없음
리뷰 답변
버전 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.
버전 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
버전 1.4 2024.04.02
- moved the window size change to the indicator
- changed parameter name to Built-in
버전 1.3 2024.03.29
fixed typo in pending orders
버전 1.2 2024.03.24
changed parameter names
버전 1.1 2024.03.23
Fixed statistics window