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

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
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+
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를 거의 모든 거래 수단에 적용할 수 있습니다. 드로다운 복구 시스템, 손실 주문 및 잔액 보호 중복 그리드 거래가 반등하지 않는 가격 변동에 취약하다는 것은 비밀이 아니지만 주문 복구 시스템 덕분에 고문은 대부분의 하락에서 벗어날 수 있습니다. 드로우다운 탈출은 수익성이 없는 가장 먼 주문과 시장에 가장 가까운 주문을 이익이 있는 주문과 겹치는 방식으로 수행됩니다. 거래 로봇은 수동 거래 또는 다른 전문가가 개설한 거래의 경우 계정에서 손실된 위치를 복구하는 데 사용할 수 있습니다.
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
You CDI
Evgeny Vlasov
You CDI (You Can Do It) Порядок работы Советник работает на любом таймфрейме на любых валютных парах. При работе советника анализируется состояние рынка , при возникновении необходимых условий происходит открытие рыночного ордера. Советник имеет блок TrailingStop , позволяющий перемещать StopLoss за движением цены. Основным отличием этого блока от стандартного является его не линейность. То есть чем ближе цена будет к TakeProfit, тем ближе к цене будет StopLoss. Это позволяет достигать макс
PipFinite EA Breakout EDGE
Karlo Wilson Vendiola
5 (4)
The Official Automated Version of the Reliable Indicator PipFinite Breakout EDGE EA Breakout EDGE takes the signal of PipFinite Breakout EDGE indicator and manages the trade for you. Because of numerous financial instruments to consider, many traders want the signals to be fully automated. The EA will make sure all your trades are executed from entry to exit. Saving you time and effort while maximizing your profits. The Edge of Automation Effortless price action trading is now possible
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
Grandmaster
Agus Santoso
MT4 버전 : https://www.mql5.com/en/market/product/79803 MT5 버전 : https://www.mql5.com/en/market/product/107840 "Grandmaster" Expert Advisor(EA)는 지수 거래를 위해 특별히 설계된 정교한 자동 거래 시스템입니다. 이 EA는 고급 신호 분석과 강력한 위험 관리 기술의 결합을 기반으로 거래 포지션을 개설하고 관리하는 전략적 접근 방식을 사용합니다. 자세한 설명은 다음과 같습니다. 지수 트레이딩을 위한 "그랜드마스터" 전문 고문 신호 기반 포지션 개시 "Grandmaster" EA는 시장 신호를 매우 정확하게 감지하고 해석하도록 설계되었습니다. 기술 지표, 패턴 인식 알고리즘, 시장 정서 분석을 혼합하여 활용하여 최적의 진입점을 식별합니다. 이러한 신호는 다음에서 파생됩니다. 기술 지표: 이동 평균, RSI, MACD, 볼린저 밴드 및 기타 기술 도구를 활용하여 시장 동
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
EA Disperse
Oleg Pavlenko
The starting price of the adviser is 50 usd EA Disperse is an Expert Advisor for overclocking a deposit. The EA is not designed for long-term trading, so it makes no sense to test it for a long period. There is no point in describing his strategy, everything can be seen in the strategy tester in visual mode. If anyone is interested, then the options for overclocking deposits will be in discussions, in post #2 Timeframe: M15  Broker : Any Currency pair: Any, except metals, commodities and
Wolf Stream
Vadym Nemo
5 (2)
Робот Wolf Stream имеет в своей основе особенность "видеть" график так, как его видит человек. Именно поэтому он точно считывает настроение игроков. Страхи и надежды у толпы формируются в текущей момент, в текущих ситуациях. Робот реагирует на них и действует оптимальным образом для каждой из ситуаций.  Торговля в реальном времени принесла 103% прирост с 26 июля 2021 года (3.5 месяца) На рынке есть множество фаз, которые по характеру своему в корне отличаются друг от друга. Поэтому необходим инд
Max ScalperSpeed
Paranchai Tensit
Max ScalperSpeed   is a fully automated expert advisor. This system has been developed to improve the efficiency of generating more returns. Rely on scalping trading strategies and recovery strategies with appropriate trading frequencies, and also able to work well in all market conditions, whether trend or sideways, able to trade full time in all conditions. Enable or disable news filtering according to user needs. Added a proportional lot size adjustment function, where users can choose to ad
HFT King Ea
Ram Klein Caputol
HFT KING EA를 소개합니다 - 트레이딩의 궁극적인 HFT KING! 이 완전 자동화된 고주파 거래 시스템은 고급 알고리즘과 최첨단 기능을 통해 거래 경험을 혁신하도록 설계되었습니다. HFT King은 기술 분석, 인공 지능, 고주파 거래 및 기계 학습의 독특한 조합을 활용하여 거래자에게 안정적이고 수익성 있는 거래 신호를 제공합니다. HFT King 최첨단 기술은 거래 기회 식별, 시장 동향 분석 및 정밀한 거래 실행에 매우 효과적입니다. EA의 강력한 진입 및 퇴출 로직은 Bar Close에서만 작동하여 시장 소음을 제거하고 속도를 최적화하며 손절매 헌팅을 방지하여 향후 안정적이고 안정적인 수익을 보장합니다. 고주파 트레이딩의 최고 수준으로 올라설 준비를 하세요! 최첨단 기술과 고급 거래 기능의 힘을 경험해보세요. 권장사항: 통화쌍: XAUUSD 기간: M15 최소 입금액 : $1000 브로커 계정 유형: 스프레드가 매우 낮은 ECN, Raw 또는 Razor를 사용하는 모
Blue Dollar EA
NGUYEN NGHIEM DUY
Blue Dollar EA is based on a multifunctional template and is designed for intraday trading with all major currency pairs on any timeframe. The strategy is based on analysis of price action within the daily volatility range for a given period. The EA has a vast set of features - it can be configured for any trading style, which makes it not just a trading robot, but a multifunctional flexible designer. The EA applies order placement levels, stop loss, take profit and trailing stop levels invisibl
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
Chest of gold
Evgeny Belyaev
Chest of gold는 H1 기간에 금 거래를 위해 특별히 설계된 신경망을 사용하는 전문 자동 조언자입니다.나의 원래 전략에 따라 개발된 이 거래 로봇은 M5, M30 및 H1의 세 가지 시간 간격으로 6개 지표의 데이터를 동시에 분석합니다. 우리 프로그램은 무역 업계의 데이터 분석을 위한 고급 컴퓨팅 플랫폼의 가장 좋은 예입니다. Chest of gold Advisor는 인간 거래자가 접근할 수 없는 수준에서 작동하는 지능형 거래 시스템입니다. 우리 제품은 전례 없는 정확도로 금 시장의 현재 및 과거 데이터를 분석할 수 있습니다. 많은 지표로 구성된 복잡한 거래 전략은 잊어버리세요! Chest of gold 로봇은 귀하의 수익 잠재력을 높이는 데 도움이 되도록 설계되었습니다. 이것은 단지 전문적인 조언자가 아닙니다. 이것은 이미 지금 여기에 있는 금융 시장의 미래입니다! 고급 데이터 분석 방법을 사용하는 Chest of gold 로봇은 재정적 성취를 향한 길에서 신뢰할 수
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
MMM Zig Zag Strategy: The Expert Advisors uses its built-in Zig Zag indicator to determine the prices trends and calculates the signal to decide to open buy or sell positions. It sends an order, closes or moves the Trailing Stop loss position as the indicator works. You can define the time period of each day of the week the EA should not trade (the bad time to trade). Usually the period of day when the impact news are published. General Inputs: Closes orders with any profit of value (currency):
MavericksProPlus
Langtha Prosanta Daudung
The  MaverickProPlus  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 favorable 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 5 y
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
We present to your attention an expert who trades on indicators! It will become an indispensable assistant in building your trading strategy : it does not matter whether you trade manually or prefer to trust the work of robots — it will be useful for every trader. With it, you can test any arrow indicator , check the effectiveness of signals , and choose the best parameters for the selected instrument. The Expert Advisor trades on the signals of arrow indicators, processes any indicators th
The One EA
Thanat Thitithammaphong
The one EA trades the currency pairs GBPCAD, EURSGD, AUDNZD on the M1 timeframe. The EA has Take Profit=160-400 point and Stop Loss = 700-800 point, but it will enter and exit based on conditions, meaning it may not always reach the Take Profit if profitable, or the Stop Loss if experiencing losses. The recommended starting capital is $100 if not using a doubling lot strategy. However, if employing a doubling lot strategy, the capital should be $1000 per currency pair. The recommended broker is
Vizzion
Joel Protusada
Vizzion is a fully automated scalping Expert Advisor that can be run successfully using GBPJPY 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 o
BuckWise
Joel Protusada
BuckWise   is a fully automated scalping Expert Advisor that can be run successfully using EURUSD currency pair at H1 timeframe. Very Important This Expert Advisor can not run with any EAs in the same account. As part of the money management plan, it calculates and monitors the Margin Level % and assumes that all open trades are created by it. If you want an Expert Advisor that trades in a daily basis, this EA is not for you because using this requires a patience to wait for a few days or weeks
Santa Scalping
Morten Kruse
3.05 (21)
Santa Scalping is a fully automated Expert Advisor with no use of martingale. Night scalping strategy. The SMA indicator filter are used for entries. This EA can be run from very small accounts. As small as 50 EUR. General Recommendations The minimum deposit is 50 USD,  default settings reccomend for eurusd m5 gmt +2 . Please use max spread 10 if you will not have orders change it to -1. Use a broker with good execution and with a spread of 2-5 points. A very fast VPS is required, preferably
RebelFox Pro
Raphael Schwietering
RebelFox Pro is a fully automated EA designed to trade XAUUSD in H1 only. It is based on machine learning cluster analysis and genetic algorithms. EA contains self-adaptive market algorithm, which uses price action patterns and standard trading indicators.  Entry and exit logic operates on Bar Close only. This filters market noise, dramatically speeds up optimizations, avoids stop loss hunting, and ensures proper operation at any broker with a reasonable spread. The EA uses an advanced algorithm
Climbing Scalper
Liudmyla Bochkarova
4.25 (8)
Climbing Scalper EA is a night scalper that trades during the calmest periods of the market. During this period the markets usually fluctuate and the advisor will trade within these ranges. Each trade will have an initial stop loss and take profit, but the EA also uses advanced stop loss management algorithms that will assess the strength of the trades. 8 copy left at 399, next price 499 Buy this EA, post a feedback and get  Golden Future  for free The advisor works on all pairs with a stable s
Great Hunter
Pavel Malyshko
Авторская стратегия демонстрирующая хорошие результаты на валютной паре eurchf m15. Советник в своей работе ищет наиболее вероятные точки разворота на графике и если сигнал подтверждается открывает сделку. Советник работает круглосуточно, что делает его универсальным вне зависимости от времени на рынке, что также отличает его от большинства советников торгующих в строго ограниченное время. По мере роста спроса на советник и увеличения хороших отзывов, цена на него будет расти. Поспешит
Intensive
Evgeniy Zhdan
The Expert Advisor algorithm determines on daily charts those candlestick patterns, which set the intraday trading direction. The trading EA determines how long the price is moving in overbought/oversold zones and starts working in the direction of the expected trend movement. Each position is accompanied with a tight stop loss and take profit. Only one active position can be open in the market. The EA was developed and tested using 99% quality quotes. The Expert Advisor has a built-in news filt
이 제품의 구매자들이 또한 구매함
The Gold Reaper MT4
Profalgo Limited
4.86 (29)
소품 회사 준비 완료!   (   세트파일 다운로드   ) 출시 프로모션: 현재 가격으로 몇 장 남지 않았습니다! 최종 가격: 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에 약간의 경험이 있는 경우 매
Hercules AI MT4
Aleksandr Chebotaev
5 (1)
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
Quantum Emperor MT4
Bogdan Ion Puscasu
4.92 (131)
소개       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달러씩 인상됩니
GoldPulse AI
Babak Alamdar
4.29 (14)
백테스트가 아닌 실제 거래 시스템을 구매하세요:   Live Signal 1     Live Signal 2       Live Signal 3   이 가격은 프로모션 기간 동안 일시적이며 곧 인상될 예정입니다 1EA 무료로 받으세요 -> 구매 후 연락주세요 현재 가격으로 몇장 남지 않았으며, 다음 가격은 -->> 1480 $ Welcome to the GoldPulse AI Hey, I'm GoldPulse AI! 이것은 XAUUSD, XAUEUR, XAUGBP, XAUAUD, XAUJPY, XAUCHF, XAUSGD 및 XAUCNH와 같은 전체 쌍으로 금 또는 XAU를 거래하는 최초의 가장 똑똑한 로봇입니다! 매일매일 뉴스를 확인하며 기술적, 근본적, 감성적 확인이 있는 기회라면 무엇이든 활용합니다! 돈은 참을성 없는 상인의 주머니에서 환자의 주머니로 나올 것입니다! 이 시장에서 당신은 똑똑한 사람들과 경쟁하게 될 것입니다! 그들은 당신의 돈을 얻으려고 하고, 당
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
TrendMaster FX MT4
Chen Jia Qi
5 (13)
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
AI Gen XII MT4
Denis Kurnev
5 (1)
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
Daytrade Pro Algo
Profalgo Limited
5 (6)
프로모션 시작: 현재 가격으로 제공되는 제한된 수의 사본 최종 가격: 990$ 신규: 1개를 무료로 받으세요!   (거래 계좌 2개용) Ultimate Combo Deal   ->   click here LIVE RESULTS:   https://www.mql5.com/en/signals/1949810 JOIN PUBLIC GROUP:   Click here Set Files DayTrade Pro Algo에 오신 것을 환영합니다!   수년 동안 시장을 연구하고 다양한 전략을 프로그래밍한 후 좋은 거래 시스템에 필요한 모든 것을 갖춘 알고리즘을 찾았습니다. 브로커 독립적입니다. 독립적으로 확산됩니다. MT4, MT5, TDS2 및 여러 브로커에서 쉽게 실제 변수 확산 테스트를 사용하여 매우 안정적인 백 테스트를 보여줍니다. 수백 가지의 다양한 설정이 모두 테스트에서 수익성 있는 결과를 제공합니다(물론 저는 최고의 설정을 선택했습니다!). 매우 강력한 시스템 -> 설정은 상호
Bitcoin Robot MT4
Marzena Maria Szmit
5 (9)
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
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
Oracle MT4
Stanislav Tomilov
4.1 (10)
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
5 (3)
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 the EURUSD , GBPUSD , USDCHF , AUDUSD , USDCAD , NZDUSD  currency pairs Can be used in M30 , H1 , H4 , D1 time frames Has profit limit and loss limit Without using risky strategies like martingale or hedg
One Gold MT4
Stanislav Tomilov
4.67 (12)
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
Diamond Titan FX MT4
Lo Thi Mai Loan
5 (2)
런칭 프로모션: 30% 할인! 현재 가격으로 구입할 수 있는 판매가 3개만 남았습니다. 다음 가격: $1033 무료로 US30 Scalper EA와 Quantum Algo EA를 받으세요 -> 구매 후 저에게 연락하세요 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/
Ai Multi Trend MT4
Mansour Babasafary
5 (2)
45% discount, until 2024.06.14 (for old customers and first buyers >>> Expert final price: $1000) Get a 50% bonus by buying (or even renting) any of our products. After buying (or renting), send a message for more information. Expert trend hunter Combined with artificial intelligence Control the AI ​​with a variety of simple settings Without using dangerous strategies (all trades have a profit limit and a loss limit) Can be used in 6 main market currency pairs and 4 important time frames
FXMachine
Alexander Kozachuk
4.75 (12)
2020년 이후 실제 계정 통계 지난 13년간의 백테스트 낮은 손실 전략 다중 통화 알고리즘 모든 브로커와 호환 가능 검증된 감소 제어 시스템 2020년 이후 실제 계좌에서 거래 : 여기를 클릭하세요 USDCAD, EURGBP, GBPUSD, EURUSD 거래: 여기를 클릭하세요 EURGBP 거래: 여기를 클릭하세요 GBPUSD 거래: 여기를 클릭하세요 여기에서 다운로드할 수 있는 FXMachine EA의 전체 백테스트: 여기를 클릭하세요 회사 소개: FXMachine 및 기타 로봇의 개발 및 지원은 외환 분야에서 14년 이상의 경험 을 보유한 전문 팀에 의해 수행됩니다. 지난 14년 동안 우리는 개발을 개선하고 더 좋고 효과적인 거래 접근 방식을 찾아왔습니다. 저희에게 저희가 드릴 수 있는 최고의 조언<이 무엇인지 묻는다면 어떤 EA가 좋고 어떤 것이 좋지 않은지 판단하기 위해 다음과 같은 답변을 제공합니다. 가장 중요한 것은 실제 현금 계좌
TopBottomEA
lizhi fu
4.8 (54)
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
Supply Demand EA ProBot
Georgios Kalomoiropoulos
수요와 공급의 원칙에 기반한 완전 자동화된 조언자입니다 . 처음으로 우리는 완전히 자동화된 공급 및 수요 조언자를 제공합니다 . 거래가 쉬워졌으며 이제 거래 전략을 완벽하게 제어할 수 있습니다. 편리한 그래픽 제어판을 사용합니다. 15,000줄 이상의 코드가 포함된 매우 높은 품질의 알고리즘 거래 소프트웨어를 얻을 수 있습니다. EA 프로봇 공급 및 수요 가이드 Prop Firms를 거래하는 가장 좋은 방법은 자격을 갖춘 거래자가 되기 위한 모든 단계에 도전합니다. 모든 거래는 자동으로 이루어지고 관리됩니다. 항목을 선택하고 긴장을 풀면서 상금이 커지는 것을 지켜보세요. 패널 입력 매개변수: 거래 방향 선택(매수 또는 매도) 거래하려는 기간을 선택하세요. 서비스하려는 구역 유형 (넓음, 중간, 좁음, 매우 좁음)을 선택하십시오. 세 가지 자금 관리 옵션 중에서 선택하세요 일련의 승리 또는 손실 거래 후에 그만 두는 고문을 선택하십시오 . 위험 또는 ATR을
Golden Pickaxe
Valeriia Mishchenko
4.67 (6)
EA has high-performance live track records of different set files: XAU Risky Vol XAU Balanced Vol XAU Balanced MT5 version can be found here Golden Pickaxe is a mean-reversion grid trading system that uses machine learning technology to place high-profit potential trades on the Gold market. It uses real market inefficiencies to its advantage to have an edge over the market. The EA has 5 predefined set files, which are essentially 5 different trading systems on gold . You may choose the def
Greezly Bot Pro
Ivan Maruschak
1. 자동 거래 고문 2. EURUSD 쌍에서 최상의 결과를 얻을 수 있지만 다른 악기에 대한 설정도 조정할 수 있습니다. 3.m1에서 m15까지의 기간을 사용합니다. 4. Expert Advisor는 평균화 방법을 사용하여 거래하고 원활하고 안전하게 거래량을 늘립니다! 5. 거래를 지시하기 위해 EA는 촛대 분석을 사용합니다. 6. 가장 안전한 옵션은 $1500-2000마다 0.01랏을 사용하는 것입니다. 7. 위험을 줄이기 위해 4회 거래 후 단계를 300핍, 6회 거래 후 500핍으로 변경하는 것이 좋습니다. 8.경력 14년의 보수고문! 9. 원하는 수익률을 기준으로 추천 보증금 고려! 10. 거래에 손실이 있을 것입니다. 이것은 정상이며 로봇이 능숙하게 종료할 것입니다. 시간이 걸립니다.
XG Gold Robot MT4
Marzena Maria Szmit
4.39 (23)
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
Dragon Multi EA MT4
Mansour Babasafary
4.72 (18)
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 use 3 experts at the lowest price. All three strategies are based on price action. But based on different trends. Long term, medium term and short term Attributes : Can be used in the EURUSD , AUDUS
Gold Garden MT4
Chen Jia Qi
5 (4)
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
Goldminer AI MT4
Ruben Octavio Gonzalez Aviles
3.75 (8)
골드마이너 AI는 기존의 기술적 분석과 함께 인공 지능을 사용하여 시장 움직임을 예측하는 복잡하고 새로운 알고리즘입니다. 각 진입을 여러 개의 작은 거래로 분할하고 다른 거래에서 얻은 수익으로 하나씩 청산하는 혁신적인 복구 모드가 특징입니다. 또한 새로운 메커니즘을 통해 후행 지정가 주문을 사용하여 수익을 극대화할 수 있습니다. 이 전문가용 어드바이저는 기술 분석 지표의 데이터를 사용하여 학습된 순환신경망, 특히 장단기 기억 셀을 사용합니다. 이 방법을 통해 EA는 향후 가격 변동과 가장 관련성이 높은 지표를 학습하고 이에 따라 행동할 수 있습니다. 또한 LSTM 네트워크는 단기 및 장기 과거 데이터를 모두 고려할 수 있으므로 시계열 분석에 특히 적합합니다. 참고: 이 혜택은 한정된 입문용 혜택 입니다: 이 EA는 현재 가격으로 10장 중 1장만 판매됩니다. 다음 가격: $899 이 EA의 가격은 이 시스템으로 거래하는 사용자 수를 제한하기 위해 급격히 인상될 것입니다. 실시간 신호
NightVision EA
Alexander Kalinkin
4.14 (28)
NightVision EA  - is an automated Expert Advisor that uses night scalping trading during the closing of the American trading session. The EA uses a number of unique author's developments that have been successfully tested on real trading accounts. The EA can be used on most of the available trading instruments and is characterized by a small number of settings and easy installation. Live signal for NightVision EA:    https://www.mql5.com/en/signals/author/dvrk78 Ask me for   the   recommended FX
US30 Scalper EA MT4
Lo Thi Mai Loan
5 (4)
Launch promo! Only a few copies left at 499$! Next price: 599$ Final price: 999$ Live signal:  https://www.mql5.com/en/signals/2220893?source=Site+Profile+Seller MT5:   https://www.mql5.com/en/market/product/107337?source=Site+Profile+Seller For more top Expert Advisors and Indicators, visit:   https://www.mql5.com/en/users/lothimailoan/seller I am Los, please subscribe to receive more updates:   https://www.mql5.com/en/users/lothimailoan/news US30 Scalper EA는 거래 및 코딩 분야에서 높은 경험을 가진 팀에 의해 개발된
TS Prop Firm MT4
Marzena Maria Szmit
4 (4)
TS Prop Firm MT4 has been prepared for Prop Trading Firms and Forex Brokers. TS Prop Firm EA is a version that support the EURUSD, XAUUSD and US30 . There are three risk levels to choose from: Low, Medium and High. This robot is also protected during important news , when high-impact news comes out, the robot doesn't open positions for 60 minutes before and 60 minutes after the important news. TS Prop Firm is available in one version for MetaTrader 4. If you click on my profile, you can find the
Big Forex Players MT4
Marzena Maria Szmit
4.65 (23)
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
필터:
리뷰 없음
리뷰 답변
버전 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