• Обзор
  • Отзывы
  • Обсуждение
  • Что нового

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


Рекомендуем также
Grid and MA
Vladimir Gribachev
5 (3)
Сеточный советник. Имеет несколько торговых стратегий, основанных на индикаторе Moving Average. Работает по ценам открытия минутного бара. Установка виртуальных уровней трейлинг-стоп, стоп-лосс, тейк-профит может производиться в пипсах, в валюте депозита или процентах от баланса. В зависимости от настроек, могут быть открыты разнонаправленные ордера для диверсификации рисков, закрытие которых может быть как и разнонаправленной, так и однонаправленной корзиной ордеров. Сетка ордеров адаптивная,
Hedge Guru is a full automated Expert Advisor that can work on all timeframes with  all currencies . 1 Hour timeframe and major currencies recomended. It simply uses the combination of martingale and hedging strategies with stop loss to reduce the risk. MaximumLevel Parameter defines the point to close an order with loss. Attention: For targeting more profit with HEDGE GURU , using high lot size is not recommended, for targeting higher profits, HEDGE GURU should be used on multiple currenc
Сеточный советник. Имеет несколько торговых стратегий основанных на индикаторе MACD. Установка виртуальных уровней трейлинг-стоп, стоп-лосс, тейк-профит могут быть в пипсах, в валюте депозита или процентах от баланса. В зависимости от настроек могут быть открыты разнонаправленные ордера для диверсификации рисков, закрытие которых может быть как и разнонаправленной так и однонаправленной корзиной ордеров. Сетка ордеров адаптивная, ведется рыночными ордерами. Если цена ушла в противоположную сто
| 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
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
Fxdolarix - автоматический робот скальпер для GBPUSD M5. Был протестирован на реальном счету в течении 3 месяцев. Робот использует стратегию скальпинга, ориентированную на краткосрочное движение цены внутри дня. Основной акцент детается на выявление моментов краткосрочной волатильности и выоспроизведении быстрых сделок. Робот использует в своей работе такие индикаторы как: iMACD, iMA, iStochastic. С помощью этих индикаторов робот выявляет направление тренда, а с помощью активности тикового движе
Общие сведения Для начала торговли достаточно небольшого депозита. Подходит для мульти-валютной торговли. Не зависим от качества соединения и торговых условий.  Принцип работы Эксперт открывает ордера по встроенному индикатору. Если прибыль ордера плюсовая. Данный ордер закрывается и открывается новый в противоположном направлении объёмом  Lot . Если прибыль ордера минусовая. Данный ордер закрывается и открывается новый в этом же направлении и объёмом в  Martingale  раз больше преведущего.
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
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
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
HFT Hunter
Vladimir Gribachev
1 (2)
Внутридневной скальперский советник, торговля заключается на ловле резких скачков цен при высокой волатильности рынка. Может работать как рыночными, так и отложенными ордерами. Основное время советник находится в режиме ожидания, поэтому не следует ждать от него сразу быстрых результатов. Отвечает правилам FIFO. В момент времени по символу может быть открыт только один рыночный ордер. Мартингейл, сетка, хеджирование не используются. Внимание! Данный советник работает на скорости движения котиров
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
Extreme EA MT4
Salvatore Caligiuri
5 (2)
PROMO PERIOD 5 COPIES SPECIAL PRICE NEXT PRICE: 400,00 COPIES AVAILABLE: 2 EXTREME EA  is a professional EA built on  EURUSD  pair behaviors on the FOREX market. Fully automated with the  AUTO TRADE MODE  and fully customable with the  DOUBLE MONEY MANAGEMENT  system. The AUTO TRADE MODE will use the best parameters, you need only to activate the strategy from the menu and choose your risk level. NECESSARY:  YOU NEED TO ACTIVATE THE STRATEGY FROM EXPERT SETTINGS, CHECK FIRST SCREE
Торговый советник "Золотой Король" – это автоматизированная торговая программа, разработанная специально для рынка Форекс, с уникальной скальперской стратегией, ориентированной в основном на торговлю золотом (XAU/USD). Этот советник предназначен для трейдеров, которые ищут высокочастотный и быстрый способ заработка на колебаниях цен золота. Основные характеристики "Золотого Короля": Скальперская стратегия : Этот советник использует стратегию скальпинга, что означает, что он открывает и закрывает
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
Советник использует трендовую стратегию основанную на многочисленных технических индикаторов "Moving Average" на таймфрейма: M4, M5, M6, M10, M12, M15, M20, M30, H1. Советник использует элементы из таких стратегий как: Мартингейл, Сетка и Усреднения. В торговли может быть открыто до 3 ордеров одновременно на каждой из валютных пар. Советник использует алгоритм частичного закрытия ордера и скрытый Стоп лосс, Тейк профит, Безубыток и Трейлинг стоп. Советник мультивалютный торгует на 17 валютных
Ilanis
Mikhail Sergeev
4.61 (28)
Советник Ilanis - торговый эксперт для биржевой торговли, подходит как для работы на Форекс, так и для других рынков, товарных, рынков металлов, индексов. Для определения входа в рынок используется современный и сверх-адаптивный индикатор FourAverage . Принцип ведения позиции схож с работой не без известного форекс советника "Ilan", с использованием усреднения. Но в отличии от Илана, Ilanis использует точный и выверенный вход в рынок. Робот внимание уделяет контролю позиции, в случае если цена п
>>> 8 copies are available by price $150 >>> Next price $200 >>> Index Trader Suite Live Results  here >> >>> Index Trader Suite v.1.0 Presets:   Download >> >>>    Index Trader Suite MT5 version available   here >> Index Trader Suite - это полностью автоматизированный торговый советник, в основе которого заложена авторская стратегия торговли наиболее популярными и ликвидными мировыми Фондовыми Индексами . Система базируется на принципах Price Action и не использует технические индикаторы
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
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%
DayTrend
Vyacheslav Vorobev
DayTrend. Советник работающий на реальных счетах, представляет собой прекрасную альтернативу банковскому депозиту. Создавалась система изначально для получения прибыли 100-600% в год . Демонстрация торговли на Демонстрационном счете , сигнал DayTrendSignal  Цена динамическая и изменяется в процентном соотношении от стартовой 30$, до прибыли в сигнале по данному советнику. Поддержка и вопросы по советникам -   Telegram   канал Принцип входа в рынок, это расчет направления тренда и входа в его
This Expert Advisor is designed for news trading. This version is the professional version for MT4. The price of this version is going to be 50 USD for a limited number of copies. The Final price is 99 USD. Please find below the MT5 version of this expert: News Advisor MT5 Pro. The main advantage of this expert is that it’s offering backtesting capabilities (something that is not found in most news expert advisors). This ability gives you the opportunity to optimize and test the efficacity, the
Brown Bear EA  - это простая автоматическая торговая система торгует по тренду после отталкивания от важных ценовых уровней.  Советник использует сеточную систему, а так же мартингейл и разработан под пару EURUSD. Советник не привязан к таймфрейму. Параметры: AutoStops = 1 - Включить автоматическое определение StopLoss и TakeProfit. StopLoss= 0  - Стоплосс TakeProfit = 0 -Тейкпрофит. TakeProfitAverage = 300 - Общий тейкпрофит для сетки ордеров, количество пунктов от линии усреднения. LotRisk = 0
Торговый робот на индикаторе MACD Это упрощенная версия   торгового робота , использует только одну стратегию для входа (расширенная версия имеет более 10 стратегий) Преимущества эксперта: Скальпинг, Мартингейл, сеточная торговля. Вы можете настроить торговлю только одним ордером или сеткой ордеров. Гибко настраиваемая сетка ордеров с   динамическим,  фиксированным или мультипликатором шага и торгового лота позволит адаптировать эксперт практически под любой торговый инструмент. Система в
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
Советник Smart Averager представляет собой систему усреднения стоимости. Алгоритм советника работает по следующему принципу: Советник находит участок тренда, исходя из заданных параметров. Затем отслеживается момент, когда цена начинает постепенно разворачиваться против тренда. Производится первый вход. Далее, если цена продолжает двигаться в сторону тренда советник открывает дополнительные позиции по тому же алгоритму. Прибыль по всем позициям фиксируется по достижении заданного значения относи
Exp Tick Hamster MT4
Vladislav Andruschenko
3.5 (14)
Советник с автоматическим подбором и оптимизацией всех параметров под торговый символ для MetaTrader 4.   Торговый советник без настроек! Tick Hamster  – Это Автоматический торговый эксперт для новичков и пользователей, которые не хотят настраивать советник! Испытайте беспроблемную автоматическую торговлю с нашим удобным для новичков экспертным советником. Не нужно беспокоиться о сложных настройках – наш специалист сделает все за вас. Начните свой путь к успешной торговле сегодня! Версия МТ5 П
Эксперт построен на многолетнем изучении волатильности индекса #DAX30. Эксперт открывает не более одной сделки в день. При отсутствии сигнала, сделка не откроется.  ВАЖНО!!!!  при наличие уже открытой сделки, эксперт новую не откроет. Даже если вы открыли сделку в ручную, эксперт не откроет новую. сделано с целью безопасности депозита и открытия в противоположные стороны. ЧТОБЫ ЭКСПЕРТ РАБОТАЛ НЕ ДОЛЖНО БЫТЬ ОТКРЫТЫХ СДЕЛОК В ТЕРМИНАЛЕ!!! Преимущества: Эксперт можно включать только на короткий п
PairsTrading
Evgenii Kuznetsov
3.67 (9)
Советник находит расхождения в двух коррелирующих валютных парах и торгует в сторону их обратного схождения. Рабочий таймфрейм: M30 Входные параметры MagicNumber - идентификационный номер на советника; OrdersComment - комментарий к ордеру, при пустом значении автоматический; Lots - размер лота; DepoPer001Lot - автоматический расчет лота (указывается баланс на единицу 0.01 лота) (при 0 используется значение лота из параметра Lots); TimeFrame - рабочий период; Symbol #2 - коррелирующая валюта; S
С этим продуктом покупают
The Gold Reaper MT4
Profalgo Limited
4.85 (27)
ПРОП ФИРМА ГОТОВА!   (   скачать SETFILE   ) ЗАПУСК ПРОМО: Осталось всего несколько экземпляров по текущей цене! Окончательная цена: 990$. Получите 1 советник бесплатно (для 2 торговых счетов) -> свяжитесь со мной после покупки Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal Добро пожаловать в Gold Reaper! Созданный на основе очень успешного Goldtrade Pro, этот советник был разработан для одновременной работы на нескольких таймфреймах и имеет возможность уста
Gold Trade Pro
Profalgo Limited
4.59 (22)
Запустить промо! Осталось всего несколько экземпляров по 449$! Следующая цена: 599$ Окончательная цена: 999$ Получите 1 советник бесплатно (для 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 присоединяется к клубу советников по торговле золотом, но с одним большим отличием: это настоящая торговая стратегия. Что
Quantum Emperor MT4
Bogdan Ion Puscasu
4.93 (124)
Представляем       Quantum Emperor EA   , новаторский советник MQL5, который меняет ваш подход к торговле престижной парой GBPUSD! Разработан командой опытных трейдеров с опытом торговли более 13 лет. IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. ***Купите советник Quantum Emperor, и вы получите Quantum StarMan, Quantum Trade EA или Quantum Gold Emperor бесплатно! *** Для получения более подробной информации обра
One Gold MT4
Stanislav Tomilov
5 (8)
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
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
Предупреждения ЭС содержит максимум 6 точек входа, объем каждой сделки равен объему ордера, умноженному на 6, поэтому, пожалуйста, не используйте слишком большой объем. Способ расчета объема по умолчанию - это не процент от капитала. Наш способ расчета по умолчанию не зависит от плеча, что позволяет более точно контролировать риск.  Рекомендуется использовать капитал не менее 1000 долларов США для повышения устойчивости к риску. Одновременное использование нескольких валютных пар может привести
Глубокое обучение меняет ландшафт торговли золотом, а интеллектуальные помощники, подобно садовникам, ухаживают за торговыми садами. "Золотой сад" EA использует интеллектуальные технологии глубокого обучения и 20-летний опыт обучения на данных для значительного повышения эффективности стратегии. С ним торговля становится проще и интеллектуальнее. Давайте вместе откроем эру интеллектуальной торговли и превратим трейдинг в цветущий сад. Это будет ваш эксклюзивный Gold Garden Steward. Версия для MT
Live signal : TrendMaster FX The MT5 version : TrendMaster FX MT 5 В настоящее время действует акция на пробное использование советника. После покупки свяжитесь с нами, чтобы получить доступ к "Gold Garden" или "AI TradingVision GPX". Для получения подробной информации, пожалуйста, свяжитесь с нами. Рекомендуемые валютные пары: Фунт/Доллар США (GBPUSD) Доллар США/Канадский доллар (USDCAD) Евро/Доллар США (EURUSD) Австралийский доллар/Доллар США (AUDUSD) Доллар США/Швейцарский франк (USDCHF) Осо
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
Odin AI
Nestor Alejandro Chiariello
5 (2)
Здравствуйте, трейдеры, я тщательно разработал ODIN AI с реальными результатами, безупречный по своей мудрости и интеллекту, инструмент, основанный на нескольких моих предыдущих стратегиях, адаптировав его к рынку Форекс, поэтому он адаптирован к искусственному интеллекту машинного обучения, то есть ИИ прочитает параметры и затем сверит их с моей стратегией, затем он научится, чтобы записи были более высокого качества, у него также есть узел, где вы можете восстанавливать позиции, еще одна инно
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
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
TopBottomEA
lizhi fu
4.79 (53)
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
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
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
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
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
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
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
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
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
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
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
Turbo PIPs EA   is a smart trend detector robot using advanced mathematical and statistical theories. The entry filters have powerful and advanced corrections on the entry points.  All trades are powered by TP/SL to control the risk of the account. Also some smart algorithms inserted inside the EA to adjust some settings based on selected symbols and timeframe automatically. So using the EA is easy for all traders. Only some major settings are added to the EA input parameters. MT5 Version : Dow
Darwin Evolution MT4
Guillaume Duportal
4.83 (12)
Дарвин Эволюция !! 1490 USD до 990 долларов США ограниченное время !!! Вы не можете сделать резервную тему из этого советника, потому что MT4 не обрабатывает одновременных многополей. Дарвин нужны 28 пар для расчета показателей !! Описания: - Чтобы понять операцию, приходите и прочитайте блог (этот советник отражает мою философию Forex Trading ... Если вам нравится мой путь, чтобы увидеть вещи, то вам понравится мой советник. Найдите время, чтобы сделать это !! (Форекс не гонка): https
Waka Waka EA
Valeriia Mishchenko
4.41 (49)
EA has a live track record with 4.5 years of stable trading with low drawdown: Live performance MT5 version can be found here Waka Waka is the advanced grid system which already works on real accounts for years. Instead of fitting the system to reflect historical data (like most people do) it was designed to exploit existing market inefficiencies. Therefore it is not a simple "hit and miss" system which only survives by using grid. Instead it uses real market mechanics to its advantage to make p
Never Dies EA is a super professional EA using advanced mathematical and statistical theories. The EA analyzes multiple timeframes (Chart Timeframe and D1) to detect strongest directions and verify signals. The EA is in the category of HFT trading EAs and will not use any dangerous recovery methods such as grid, martingale, hedge, .... All trades are powered by TP/SL to control the risk of the account. Also some smart algorithms inserted inside the EA to adjust some settings based on selected sy
Фильтр:
Нет отзывов
Ответ на отзыв
Версия 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