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

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 - Трендовый сигнальный скальпер Советник торгует по трендовой стратегии с использованием оригинального встроенного индикатора для открытия и закрытия ордеров. Доступны внешние настройки для ограничения входа в рынок по пятницам и понедельникам. Цель стратегии - максимально выгодно использовать текущий тренд. По результатам тестирования и работы на демо и реальных счетах, наилучшие результаты достигаются при использовании таймфрейма Н4 на паре GBP/USD Работает на МТ4 Build
Bear vs Bull EA Is a automated adviser for daily operation of the FOREX currency market in a volatile and calm market. Suitable for both experienced traders and beginners. It works with any brokers, including American brokers, requiring FIFO to close primarily previously opened transactions. *In order to enable the panel, it is necessary to set the parameter DRAW_INFORMATION = true in the settings;  Recommendations Before using on real money, test the adviser with minimal risk on a cent tr
Торговый робот на индикаторе MACD Это упрощенная версия   торгового робота , использует только одну стратегию для входа (расширенная версия имеет более 10 стратегий) Преимущества эксперта: Скальпинг, Мартингейл, сеточная торговля. Вы можете настроить торговлю только одним ордером или сеткой ордеров. Гибко настраиваемая сетка ордеров с   динамическим,  фиксированным или мультипликатором шага и торгового лота позволит адаптировать эксперт практически под любой торговый инструмент. Система в
Surf EA
Rustem Gabetdinov
5 (1)
Surf EA - это полностью автоматический сеточный советник, который ищет разворотные области на графике МТ5 версия:   https://www.mql5.com/ru/market/product/99693 Характер работы: Советник использует несколько паттернов, индикаторов и других важных условий для поиска сигналов Позиции в покупку и продажу независимы друг от друга На одном баре текущего периода может быть открыт только один ордер Использующиеся в советнике индикаторы входят в стандартный набор терминала Рекомендации: Торговая пара: A
You CDI (You Can Do It) Порядок работы Советник работает на любом таймфрейме на любых валютных парах. При работе советника анализируется состояние рынка , при возникновении необходимых условий происходит открытие рыночного ордера. Советник имеет блок TrailingStop , позволяющий перемещать StopLoss за движением цены. Основным отличием этого блока от стандартного является его не линейность. То есть чем ближе цена будет к TakeProfit, тем ближе к цене будет StopLoss. Это позволяет достигать макс
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
Сеточный советник. Имеет несколько торговых стратегий основанных на индикаторе MACD. Установка виртуальных уровней трейлинг-стоп, стоп-лосс, тейк-профит могут быть в пипсах, в валюте депозита или процентах от баланса. В зависимости от настроек могут быть открыты разнонаправленные ордера для диверсификации рисков, закрытие которых может быть как и разнонаправленной так и однонаправленной корзиной ордеров. Сетка ордеров адаптивная, ведется рыночными ордерами. Если цена ушла в противоположную сто
Версия MT4: https://www.mql5.com/en/market/product/79803 Версия MT5: https://www.mql5.com/en/market/product/107840 Советник «Грандмастер» (EA) — это сложная автоматизированная торговая система, разработанная специально для торговли индексами. Этот советник использует стратегический подход к открытию и управлению торговыми позициями, основанный на сочетании расширенного анализа сигналов и надежных методов управления рисками. Вот подробное описание: Советник "Грандмастер" для индексной торгов
Grid and MA
Vladimir Gribachev
5 (3)
Сеточный советник. Имеет несколько торговых стратегий, основанных на индикаторе Moving Average. Работает по ценам открытия минутного бара. Установка виртуальных уровней трейлинг-стоп, стоп-лосс, тейк-профит может производиться в пипсах, в валюте депозита или процентах от баланса. В зависимости от настроек, могут быть открыты разнонаправленные ордера для диверсификации рисков, закрытие которых может быть как и разнонаправленной, так и однонаправленной корзиной ордеров. Сетка ордеров адаптивная,
This fully automated trading system is part of the Bergland signal. It features a highly efficient trading logic, and a money management system. Reasonable calculated stop loss and take profit levels. It is easy to install and do not require a special setfile. XAUUSD, M15 Live Signal: Bergland Gold You can rent the Bergland signal here. If you like my product, please write a review.
Робот Wolf Stream имеет в своей основе особенность "видеть" график так, как его видит человек. Именно поэтому он точно считывает настроение игроков. Страхи и надежды у толпы формируются в текущей момент, в текущих ситуациях. Робот реагирует на них и действует оптимальным образом для каждой из ситуаций.  Торговля в реальном времени принесла 103% прирост с 26 июля 2021 года (3.5 месяца) На рынке есть множество фаз, которые по характеру своему в корне отличаются друг от друга. Поэтому необходим инд
-40% OFF Telegram Group: Find the link in my profile or contact me   Welcome. Advanced Semi Auto Trading : You can use the EA at your own will BASED ON YOUR ANALYSIS. ANALYZE THE MARKET and then just press the sell or buy buttons of the EA. The EA will manage the trades based on an advanced algorithm of market analysis,Take profit systems AND A VERY ADVANCED AND SOPHISTICATED OVERLAPPING SYSTEM for avoiding big drawdowns in case YOUR ENTRY is BAD. You can test this in strategy tester
Стартовая цена советника 50 usd EA Disperse - советник для разгона депозита. Советник не предназначен для длительной торговли, поэтому нет смысла его тестировать на длительном периоде. Расписывать его стратегию нет смысла, все можно увидеть в тестере стратегий в визуальном режиме. Если кому будет интересно, то варианты разгона депозиты будут в обсуждениях, в посте #1 Таймфрейм: М15 Брокер: Любой Валютная пара: Любая, кроме металлов, товаров и индексов Тип счета: любой Кредитное плечо: от 1:5
Представляем советник HFT KING — лучшего HFT-короля трейдинга! Эта полностью автоматизированная высокочастотная торговая система призвана революционизировать ваш торговый опыт благодаря передовому алгоритму и новейшим функциям. HFT King использует уникальное сочетание технического анализа, искусственного интеллекта, высокочастотной торговли и машинного обучения, чтобы предоставлять трейдерам надежные и прибыльные торговые сигналы. Передовая технология HFT King очень эффективна для определения т
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
Добро пожаловать в торговую программу LUNA! Мы с гордостью представляем LUNA, экспертного советника, специально разработанного для XAUUSD. Созданный автором с более чем 15-летним опытом торговли, LUNA представляет собой прорыв в технологии после многолетних исследований. ————————————————   —————— Live Signal(mt4): Click here mt5: Click here ————————————————   —————— Особенности: Честная торговая система: LUNA не использует нейронные сети ИИ, стратегии Мартингейла и другие подобные техники. Она
Chest of gold   — профессиональный автоматический советник использующий нейросети, разработанный специально для торговли золотом на временном интервале H1. Этот торговый робот, разработанный в соответствии с моей авторской стратегией, одновременно анализирует данные 6 индикаторов на трех временных интервалах: M5, M30 и H1. Наша программа является лучшим примером передовых вычислительных платформ для анализа данных в сфере трейдинга. Советник Chest of gold представляет собой интеллектуальную тор
PairsTrading
Evgenii Kuznetsov
3.67 (9)
Советник находит расхождения в двух коррелирующих валютных парах и торгует в сторону их обратного схождения. Рабочий таймфрейм: M30 Входные параметры MagicNumber - идентификационный номер на советника; OrdersComment - комментарий к ордеру, при пустом значении автоматический; Lots - размер лота; DepoPer001Lot - автоматический расчет лота (указывается баланс на единицу 0.01 лота) (при 0 используется значение лота из параметра Lots); TimeFrame - рабочий период; Symbol #2 - коррелирующая валюта; S
Зигзагообразная стратегия МММ: Советники используют встроенный индикатор Zig Zag для определения ценовых тенденций и расчета сигнала для принятия решения об открытии позиций на покупку или продажу. Он отправляет ордер, закрывает или перемещает позицию Trailing Stop loss по мере работы индикатора. Общие входы: Закрывает ордера с любой прибылью значения (валюты): этот параметр работает как традиционный Take Profit, но разница в том, что вы определяете его значение в валюте депозита, обычно в долл
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
Представляем Вашему вниманию эксперт, торгующий по индикаторам! Он станет незаменимым помощником при построении Вашей стратегии торговли: не важно, торгуете Вы вручную или предпочитаете доверять работу роботам  — он будет полезен каждому трейдеру.  С его помощью Вы сможете протестировать любой стрелочный индикатор , проверить эффективность сигналов , подобрать лучшие параметры для выбранного инструмента. Эксперт торгует по сигналам стрелочных индикаторов, обрабатывает любые индикаторы, имеющие
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 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   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
С этим продуктом покупают
The Gold Reaper MT4
Profalgo Limited
4.75 (32)
ПРОП ФИРМА ГОТОВА!   (   скачать SETFILE   ) ЗАПУСК ПРОМО: Осталось всего несколько экземпляров по текущей цене! Окончательная цена: 990$. Получите 1 советник бесплатно (для 2 торговых счетов) -> свяжитесь со мной после покупки Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal Добро пожаловать в Gold Reaper! Созданный на основе очень успешного Goldtrade Pro, этот советник был разработан для одновременной работы на нескольких таймфреймах и имеет возможность уста
FT Gold Robot MT4
Marzena Maria Szmit
5 (24)
Introducing the FT Gold Robot MT4, your ultimate companion in navigating the intricate world of XAUUSD trading. Developed with precision and powered by cutting-edge algorithms, FT Gold is a forex robot meticulously crafted to optimize your trading performance with   XAUUSD pairs . With its advanced analytical capabilities,   FT Gold Robot   constantly monitors the gold market, identifying key trends, patterns, and price movements with lightning speed. The FT Gold Robot opens 5 positions every da
Gold Trade Pro
Profalgo Limited
4.61 (23)
Запустить промо! Осталось всего несколько экземпляров по 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.92 (131)
Представляем       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 бесплатно! *** Для получения более подробной информации обра
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
Live signal :   TrendMaster FX The MT4 version : TrendMaster FX MT4   618 Акция, Ограниченное Время Скидка 300$ В настоящее время действует акция на пробное использование советника. После покупки свяжитесь с нами, чтобы получить доступ к "Gold Garden" или "AI TradingVision GPX". Для получения подробной информации, пожалуйста, свяжитесь с нами. Рекомендуемые валютные пары: Фунт/Доллар США (GBPUSD) Доллар США/Канадский доллар (USDCAD) Евро/Доллар США (EURUSD) Настройки риска: Для агрессивных трей
Акционное предложение: СКИДКА 30%!  Осталось всего 3 распродажи, чтобы купить по текущей цене. Следующая цена: $993 Бесплатно получите 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 История сделок после прохождения Pro
Предупреждения ЭС содержит максимум 6 точек входа, объем каждой сделки равен объему ордера, умноженному на 6, поэтому, пожалуйста, не используйте слишком большой объем. Способ расчета объема по умолчанию - это не процент от капитала. Наш способ расчета по умолчанию не зависит от плеча, что позволяет более точно контролировать риск.  Рекомендуется использовать капитал не менее 1000 долларов США для повышения устойчивости к риску. Одновременное использование нескольких валютных пар может привести
GoldPulse AI
Babak Alamdar
4.75 (12)
Покупайте не бэктест, а настоящую торговую систему:    Live Signal 1     Live Signal 2       Live Signal 3   Эта цена является временной на время акции и в ближайшее время будет повышена. Получите 1 советник бесплатно -> свяжитесь со мной после покупки  По текущей цене осталось всего несколько экземпляров, следующая цена -->> 1480 $ Welcome to the GoldPulse AI   Hey, I'm GoldPulse AI! Это первый умнейший робот, который торгует золотом или XAU на всех парах, такими как XAUUSD, XAUEUR, XAUGBP
Gold Trading Algo
Ho Tuan Thang
4.11 (9)
ONLY 3 COPIES OUT OF 10 LEFT AT $299! After that, the price will be raised to $399. Limited price $299 is only for 10 first sales. After 10 sales, the price will be raised +$100. Final price for Gold Trading Algo is $1999. IMPORTANT! Contact me immediately after the purchase to get instructions and Manual Guide to set up EA. Forex EA Trading Channel:  Update the latest news from me Some Features: - No Martingale, No Grid - The order is always protected by Stoploss - EA is using in-bu
Ai Multi Trend MT4
Mansour Babasafary
5 (4)
32% discount, until 2024.06.24  (Original 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 An expert who has been trained by artifi
Путь к звездам — это ночной скальпирующий EA, специально разработанный для торговли в периоды низкой волатильности рынка, чтобы извлечь выгоду из возможностей с низким риском. Эта ночь скальпирования 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
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
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
Daytrade Pro Algo
Profalgo Limited
5 (6)
Запустить промо: Ограниченное количество копий по текущей цене Окончательная цена: 990$ НОВОЕ: получите 1 EA бесплатно!   (за 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!   После многих лет изучения рынков и программирования различных стратегий я нашел алгоритм, в котором есть все, что нужно хорошей торговой системе: Не зависит от брокера Распрос
XG Gold Robot MT4
Marzena Maria Szmit
4.44 (25)
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
Scalp Bot EURUSD
Abu Talha Md Mahi Uddin
5 (5)
Buy One Get one Live again.. limited time offer (Gift  gold ea aviable just in unlimit  version) Best EuroUsd EA in the market...101$ to 1040$ (940%)  in 12 months ....with 21% drawdown.. For Last 1 year real time performance :  Click here PUBLIC GROUP CHAT : Click Here EA Strategy Take scalp Positions in Higher Time Frame Trend with safe Pips Distance/ Major Pair EurUsd Then you can also use :AudUsd/GbpUsd/NzdUsd Major & Safe TF is H1 / Minor & Aggressive TF is M1 Minimum Deposit is 100$ /
Bitcoin Scalp Pro
Profalgo Limited
5 (2)
Текущее промо: Остался только 1 по 349$ Окончательная цена: 999$ Обязательно ознакомьтесь с нашим «   комбо-пакетом Ultimate EA   » в нашем   промо-блоге   !   LIVE SIGNAL Bitcoin Scalp Pro — уникальная торговая система на рынке.  Он полностью сосредоточен на использовании волатильности рынка биткойнов, торгуя на прорывах уровней поддержки и сопротивления. В центре внимания советника находится безопасность, что выражается в чрезвычайно низких просадках и очень хорошем соотношении риска и во
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
Промо-акция запуска! Осталось всего несколько копий по текущей цене! Следующая цена: 693$ Окончательная цена: 1993$ 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
Powerful 1 min scalping system - автоматический робот скальпер для торговли на валютной паре XAUUSD (робот торгует и на других валютных парах, но на золоте получает найлучшие результаты). Рекомендуемые временные периоды M1 и M5. Минимальный начальный баланс от 500$. Этот робот автоматически определяет точки разворота цены и выставляет несколько отложенных ордеров в вероятном будущем направлении тренда. Если цена не разворачивается в нужном направлении, робот удаляет отложенные ордера. Но если це
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
Dark Algo
Marco Solito
4.79 (61)
Last copy at 399$ -> next price 499$ Dark Algo  is a fully automatic Expert Advisor for Scalping Trading on Eurusd . This Expert Advisor is based on the latest generation of algorithm and is highly customizable to suit your trading needs.  If you   Buy this Expert   Advisor you can   write a feedback   at market and   get   a second EA for   Free , for More info contact me The basic strategy of this EA is built on a sophisticated algorithm  that allows it to identify and follow market trends .
Bonnitta EA
Ugochukwu Mobi
3.5 (20)
Советник Bonnitta EA  основан на стратегии отложенной позиции (   PPS   ) и очень продвинутом алгоритме скрытной торговли. Стратегия   Bonnitta EA   представляет собой комбинацию секретного пользовательского индикатора, линий тренда, уровней поддержки и сопротивления (   Price Action   ) и наиболее важного алгоритма скрытной торговли, упомянутого выше. НЕ ПОКУПАЙТЕ EA БЕЗ КАКИХ-ЛИБО ПРОВЕРОК НА РЕАЛЬНЫЕ ДЕНЬГИ БОЛЕЕ 3 МЕСЯЦЕВ, МНЕ ЗАНИМАЛОСЬ БОЛЕЕ 100 НЕДЕЛЬ (БОЛЕЕ 2 ЛЕТ), ЧТОБЫ ПРОВЕРИТЬ BONNI
Supply Demand EA ProBot
Georgios Kalomoiropoulos
5 (1)
Полностью автоматический советник, основанный на принципе спроса и предложения . Первый, предлагающий полностью автоматизированный советник спроса и предложения . Торговать теперь легко и иметь полный контроль над своей торговой стратегией Через удобную графическую торговую панель. Вы получаете сверхвысококачественное программное обеспечение для алгоритмической торговли с более чем 15 000 строк кода. Спрос и предложение EA Руководство ProBot Лучший способ торговать «Вызовы Prop Firms» и прой
Bitcoin Robot MT4
Marzena Maria Szmit
5 (11)
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
SouthEast is an expert advisor developed from my experience in manual trading that has been automated. SouthEast is specifically designed to generate maximum profits with small deposits by prioritizing the security of your funds. Why SouthEast? SouthEast does not require complicated settings and is easy to use because user only need to upload a set file that is already available. Currently there are set files for 20 fx pairs. The best GRID EA with the ability to control risks. I will share
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
RSF MT4 Pro
Van Hoa Nguyen
5 (6)
RSF MT4 PRO is specially developed for the EURUSD pair on the 1H timeframe. RSF MT4 Pro is a high frequency trading advisor. EA uses many algorithms to confirm short-term trends, medium-term trends and implements many internal strategies to spread risk in trading. Backtests show a very stable growth curve, with tightly controlled declines and rapid recovery. This EA has been stress tested for the longest period of time available for EURUSD, using multiple price feeds for different brokers and
Фильтр:
Нет отзывов
Ответ на отзыв
Версия 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