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

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.


Rules and my backtest methodology:

  1. Disable the genetic algorithm if you want to use my statistics file
  2. Open prices only testing model. There is no need to test every tick because EA takes a position only on new candles
  3. set mine TP first: M15 TP=15, M30: TP =20, H1: TP=30, H4: TP=40 /change if you want, but try mine/
                                                                                                                                                                                     

method 1 /detailed/

step one:

  • EA default values: and disable the final_optimization parameter (enabled, averages trades, and we don't want that now), Built-in settings set to user
  • BarsRange1: range 5-50 with step 5 (pattern higher lower trades)
  • BarsRange2: range 3-15 with step 2 (pattern higher lower trades)
  • TakeProfit as above (unless you prefer otherwise, I recommend mine to start with)
  • StopLoss you accept (100,150,200 it depends on the symbol and is only used to count bad signals)

Run optimization with BarsRange1 and BarsRange2 selected. The results that the tester shows or does not show are not important. Important information is saved in the MT4/tester/files/ShortTrendReversal/*.txt file. The file is only created when StopLoss is greater than 0. Now open the created file. I recommend notepad++ for this because it reloads the file if it changes. Analyze the results.

step two:

  • narrow the ranges of BarsRange1 and 2
  • min_dist:       range 10-70 with step 10 /minimum distance from the previous order, 0 completely disables the limit/
  • pending_dist: range 10-70 with step 10 /pending order distance, 0 disables pending orders/
  • StopLoss set to 0
  • enable final_optimization

Run optimization. Now choose what suits you. Additionally, once you have your optimization results, you can set StopLoss as above call up the individual results. At this point /with StopLoss/ the result itself won't matter, but you can see and compare the new statistics in the file (MT4/tester/files/ShortTrendReversal/*.txt). Statistics will be different than before and will certainly be very helpful in making decisions. You can save selected results to a file with external parameters (MQL4/files/ShortTrendReversal/params.txt). Details can be found in the file.

My rules when backtesting Built-in settings: SAFE,MODERATE,AGGRESIVE

SAFE:           BarsRange2 range 7-11
MODERATE:  BarsRange2 range 5-7,9
AGGRESIVE: BarsRange2 range 3-5,7

                                                                                                                                                                                     

method 2 /fast and simple/

Everything as above in one go.

  • EA default values
  • BarsRange1:   range 5-50 with step 5 /pattern higher lower trades/
  • BarsRange2:   range 3-15 with step 2 /pattern higher lower trades/
  • min_dist:       range 10-70 with step 10 /minimum distance from the previous order, 0 completely disables the limit/
  • pending_dist: range 10-70 with step 10 /pending order distance, 0 disables pending orders/
  • TakeProfit set my TP first: M15 TP=15, M30: TP =20, H1: TP=30, H4: TP=40
  • StopLoss set to 0
  • enable final_optimization

Run optimization. Now choose what suits you. Additionally, once you have your optimization results, you can set StopLoss as above and run individual results. Statistics in the file as above.

                                                                                                                                                                                     

While writing this description, I extended the pending_dist functionality and did not backtested it. When you set a negative value, the EA will set a buy stop order a few pips above the local high and sell stop a few pips below.

here is the formula:
BUY STOP at the highest high of the last 10 bars + ((-1)*pending_dist + spread)

SELL STOP at the lowest low of the last 10bars - ((-1)*pending_dist)

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

Settings:

BarsRange1:
main signal 1 /pattern higher lower trades/
BarsRange2:
main signal 2 /pattern higher lower trades/
min_dist:
minimum distance from the previous order, 0 completely disables the limit
pending_dist:
distance of pending order, 0 disables pending orders, negative value: distance from local maximums and minimums for pending orders
TakeProfit:
M15 TP=15, M30: TP =20, H1: TP=30, H4: TP=40
StopLoss:
100,150,200 /depends on the symbol/
final_optimization:
enable/disable averaging
Built-in settings: user,SAFE,MODERATE,AGGRESIVE,ReadFromFile
TP,SL in %:
calculation in % for other instruments than currencies
StartTrading:
the beginning of trading, set Start and Stop to 0:00, trading is active all the time, set Start and Stop to 9:9, trading is inactive all the time
StopTrading:
end of trade, Start and Stop disabled for backtests
MagicNumber:
EA recognizes orders by number and _Period
Lots:
trade volume
dynamic_lots:
 each subsequent order will be increased modes: none,simple,fibo_sequence,martingale up to 10 trades. on chart you'll see (N),(S),(F),(M)
UseRiskManager:
you know, risk manager
EntryRisk:
% of capital per trade for accounts with leverage>=100. the position size is always calculated as for an account with leverage = 100 (for secure)
GUI_enable:
two graphical interface modes, simple GUI, also works in visual mode
UseSounds:
on/off sounds
LogLvL:
silent/MT4logs/alerts
ShowInitConfig:
shows a window with parameters at startup
Built-in settings:                           user: all settings can be changed by the user for use or backtesting
SAFE,MODERATE,AGGRESIVE:         all parameters from the first section are permanently set:
  •     BarsRange1, BarsRange2, min_dist, pending_dist are saved in arrays
  •     TakeProfit: M15 TP=15, M30: TP =20, H1: TP=30, H4: TP=40
  •     StopLoss set to 0
  •     final_optimization enabled
ReadFromFile:    During the first launch, EA will create a params.txt file in the folder MQL4/files/ShortTrendReversal/ with a saved SAFE table as an example of use. After backtesting, you can save the parameters there and you don't have to do anything else. EA will reload the file on the new D1 candle. You  can also restart MataTrader.


Due to the fact that importing external DLL libraries is prohibited, I moved the window resize to the indicator. Source code below.

https://www.mql5.com/en/code/48973

script that opens a set of charts:

#property copyright     "https://www.mql5.com/en/market/product/Short Trend Reversal"
#property link          "https://www.mql5.com/en/market/product/114909"
#property description   "script that opens a set of charts"
#property version       "1.00"
#property strict
#property show_inputs

#import "stdlib.ex4"
   string ErrorDescription(int error_code);
#import
#import "user32.dll"
   int  GetParent(int hWnd);
   void MoveWindow(int hWnd,int X,int Y,int nWidth,int nHeight,int bRepaint);
#import
#define INITIAL_PAIRS "EURUSD,GBPUSD,USDCHF,USDCAD,USDJPY,AUDUSD,NZDUSD,EURGBP,EURCHF,EURCAD,EURJPY,EURAUD,EURNZD,GBPCHF,GBPCAD,GBPJPY,GBPAUD,GBPNZD,CADCHF,CHFJPY,AUDCHF,NZDCHF,CADJPY,AUDCAD,NZDCAD,AUDJPY,NZDJPY,AUDNZD" 
string all_pairs[];

input string                  basket         = "EUR";
input ENUM_TIMEFRAMES         period         = PERIOD_H1;
input string                  inp_template   = "default.tpl";
input int                     Monitor        = 0;
extern int                    _X             = -5;
input int                     _Y             = -15;
input int                     Width          = 332;
input int                     Height         = 363;
input string                  prefix         = "";
input string                  suffix         = "";
//+------------------------------------------------------------------+
//| script program start function                                    |
//+------------------------------------------------------------------+
void OnStart() {
   StringSplit(INITIAL_PAIRS,',',all_pairs);
   if(Monitor > 0) _X += 1920;
   for(char i=0; i<ArraySize(all_pairs); i++) {
      if(StringFind(all_pairs[i],basket) != -1) {
         long chart = ChartOpen(prefix+all_pairs[i]+suffix,period);
         ChartApplyTemplate(chart,"\\Files\\ShortTrendReversal\\"+inp_template);
         int parent = GetParent((int)ChartGetInteger(chart,CHART_WINDOW_HANDLE));
         MoveWindow(parent,_X,_Y,Width,Height,true);
         ObjectCreate(chart,"ShortTrendReversal",OBJ_LABEL,0,0,0);
         ObjectSetInteger(chart,"ShortTrendReversal",OBJPROP_CORNER,CORNER_RIGHT_LOWER);
         ObjectSetInteger(chart,"ShortTrendReversal",OBJPROP_XDISTANCE,30);
         ObjectSetInteger(chart,"ShortTrendReversal",OBJPROP_YDISTANCE,15);
         ObjectSetString(chart,"ShortTrendReversal",OBJPROP_TEXT,basket);
         ObjectSetString(chart,"ShortTrendReversal",OBJPROP_FONT,"Arial Black");
         ObjectSetInteger(chart,"ShortTrendReversal",OBJPROP_FONTSIZE,7);
         ObjectSetInteger(chart,"ShortTrendReversal",OBJPROP_ALIGN,ALIGN_CENTER);
         ObjectSetInteger(chart,"ShortTrendReversal",OBJPROP_COLOR,clrGainsboro);
         ObjectSetInteger(chart,"ShortTrendReversal",OBJPROP_BGCOLOR,clrNONE);
         ObjectSetInteger(chart,"ShortTrendReversal",OBJPROP_BORDER_COLOR,clrNONE);
         ObjectSetInteger(chart,"ShortTrendReversal",OBJPROP_SELECTABLE,false);
         ObjectSetInteger(chart,"ShortTrendReversal",OBJPROP_HIDDEN,true);
         ObjectSetInteger(chart,"ShortTrendReversal",OBJPROP_READONLY,true);
         ChartRedraw(chart);
         _X+=274;Sleep(100);
      }
   }
}


Рекомендуем также
| Fully-automated Smart Money Concept (ICT) inspired trading solution with multi-strategy capabilities | Built by a grid trader >> for grid traders.  This is MT4 version, click  here  for  Blue CARA MT5  (settings and logics are same in both versions)     Real monitoring signal  -->  Cara Gold Intro Blue CARA EA   ('CARA') - short for  C omprehensive  A lgorithmic R esponsive A dvisor is a next-gen  multi-currency    multi-timeframe  EA base on the widely known (and perhapse most popular) Inn
PairsTrading
Evgenii Kuznetsov
3.67 (9)
Советник находит расхождения в двух коррелирующих валютных парах и торгует в сторону их обратного схождения. Рабочий таймфрейм: M30 Входные параметры MagicNumber - идентификационный номер на советника; OrdersComment - комментарий к ордеру, при пустом значении автоматический; Lots - размер лота; DepoPer001Lot - автоматический расчет лота (указывается баланс на единицу 0.01 лота) (при 0 используется значение лота из параметра Lots); TimeFrame - рабочий период; Symbol #2 - коррелирующая валюта; S
TC Poseidon EA
Pablo Leonardo Spata
This is a trading robot to work on USDCHF - Timeframe H1 . It exploits a statistical advantage produced in the Swiss franc. All trades with SL and TP. Backtest now!   Special OFFER for this week Discount price - $ 49. Next price $ 149. BUY NOW!!!   Would you like to see how 100 dollars turn into more than 3 million dollars? Do you already have a robust strategy that works on USDCHF ? TC Poseidon EA is the god of the seas, water, storms, hurricanes, earthquakes, and horses. Use its power to
Grid and MACD
Volodymyr Hrybachov
Сеточный советник. Имеет несколько торговых стратегий основанных на индикаторе MACD. Установка виртуальных уровней трейлинг-стоп, стоп-лосс, тейк-профит могут быть в пипсах, в валюте депозита или процентах от баланса. В зависимости от настроек могут быть открыты разнонаправленные ордера для диверсификации рисков, закрытие которых может быть как и разнонаправленной так и однонаправленной корзиной ордеров. Сетка ордеров адаптивная, ведется рыночными ордерами. Если цена ушла в противоположную сто
Grid and MA
Volodymyr Hrybachov
5 (3)
Сеточный советник. Имеет несколько торговых стратегий, основанных на индикаторе Moving Average. Работает по ценам открытия минутного бара. Установка виртуальных уровней трейлинг-стоп, стоп-лосс, тейк-профит может производиться в пипсах, в валюте депозита или процентах от баланса. В зависимости от настроек, могут быть открыты разнонаправленные ордера для диверсификации рисков, закрытие которых может быть как и разнонаправленной, так и однонаправленной корзиной ордеров. Сетка ордеров адаптивная,
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 стратегий) Преимущества эксперта: Скальпинг, Мартингейл, сеточная торговля. Вы можете настроить торговлю только одним ордером или сеткой ордеров. Гибко настраиваемая сетка ордеров с   динамическим,  фиксированным или мультипликатором шага и торгового лота позволит адаптировать эксперт практически под любой торговый инструмент. Система в
Alize EA — это передовой торговый советник, специально разработанный для торговли на рынке Форекс.Он использует сложные математические алгоритмы для анализа рынка и принятия торговых решений на основе модифицированных стандартных индикаторов и анализа ценового действия. Этот робот прост в использовании и полностью автоматизирован: достаточно просто установить его на график валютной пары AUDCAD и задать желаемый уровень риска. Одной из ключевых особенностей Alize EA является продвинутая сист
Основа стратегии - выявление быстрых коррекционных движений между кроссами рабочей валютной пары или металла. В моменты расхождений цен торговых инструментов советник анализирует возможное направление движения цены на рабочем инструменте и начинает работу. Каждая позиция имеет стоп-лосс и тейк-профит. Уникальный алгоритм сопровождения позиций позволяет контролировать превосходство профита над убытком. Советник не использует опасные методы торговли. Рекомендуемые торговые инструменты (TF 1
Версия MT4: https://www.mql5.com/en/market/product/79803 Версия MT5: https://www.mql5.com/en/market/product/107840 Советник «Грандмастер» (EA) — это сложная автоматизированная торговая система, разработанная специально для торговли индексами. Этот советник использует стратегический подход к открытию и управлению торговыми позициями, основанный на сочетании расширенного анализа сигналов и надежных методов управления рисками. Вот подробное описание: Советник "Грандмастер" для индексной торгов
Surf EA
Rustem Gabetdinov
5 (1)
Surf EA - это полностью автоматический сеточный советник, который ищет разворотные области на графике МТ5 версия:   https://www.mql5.com/ru/market/product/99693 Характер работы: Советник использует несколько паттернов, индикаторов и других важных условий для поиска сигналов Позиции в покупку и продажу независимы друг от друга На одном баре текущего периода может быть открыт только один ордер Использующиеся в советнике индикаторы входят в стандартный набор терминала Рекомендации: Торговая пара: A
>>> 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 и не использует технические индикаторы
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%
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.
H4 GBPUSD Trend Scalper - Трендовый сигнальный скальпер Советник торгует по трендовой стратегии с использованием оригинального встроенного индикатора для открытия и закрытия ордеров. Доступны внешние настройки для ограничения входа в рынок по пятницам и понедельникам. Цель стратегии - максимально выгодно использовать текущий тренд. По результатам тестирования и работы на демо и реальных счетах, наилучшие результаты достигаются при использовании таймфрейма Н4 на паре GBP/USD Работает на МТ4 Build
Fxdolarix - автоматический робот скальпер для GBPUSD M5. Был протестирован на реальном счету в течении 3 месяцев. Робот использует стратегию скальпинга, ориентированную на краткосрочное движение цены внутри дня. Основной акцент детается на выявление моментов краткосрочной волатильности и выоспроизведении быстрых сделок. Робот использует в своей работе такие индикаторы как: iMACD, iMA, iStochastic. С помощью этих индикаторов робот выявляет направление тренда, а с помощью активности тикового движе
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
DJ30 Picsou
Julien Jean Bernard Lajardie
DJ30 Auto-Adaptative MA EA - Expert Advisor for DJ30 Trading The DJ30 Auto-Adaptative MA EA is a robust trading tool specifically designed for the DJ30 index on the 30-minute timeframe. This Expert Advisor combines a proven moving average strategy with an innovative auto-adaptive Stop Loss system, providing a balance between risk management and trade optimization. Key Features: Auto-Adaptative Stop Loss : The EA automatically adjusts Stop Loss levels in real-time based on the Average True Range
Nano Gold
Nguyen Hang Hai Ha
Expert Nano Gold is a fully automated trading robot programmed with the most advanced and advanced algorithms. This is an EA dedicated to the Gold market. It uses the Stop Order entry method suitable for the fast and strong fluctuations of the Gold market. Signals are selected with Tick patterns, price movements and correlations of popular indicators. Along with Scalper and Trailing strategies to quickly close positions with low risk and optimize performance. Trading orders always have Stop Los
Общие сведения Для начала торговли достаточно небольшого депозита. Подходит для мульти-валютной торговли. Не зависим от качества соединения и торговых условий.  Принцип работы Эксперт открывает ордера по встроенному индикатору. Если прибыль ордера плюсовая. Данный ордер закрывается и открывается новый в противоположном направлении объёмом  Lot . Если прибыль ордера минусовая. Данный ордер закрывается и открывается новый в этом же направлении и объёмом в  Martingale  раз больше преведущего.
GOLD Scalper PRO
Lachezar Krastev
4.38 (16)
PROMOTION: BUY 1 GET 1 FREE! --> Buy GOLD Scalper PRO with -50% OFF + 1 FREE EA! NOTE: Promo price: $197 ( Regular Price: $397) - The offer ends soon!  For more info about the promotion and possible free EAs, contact me! GOLD Scalper PRO is a fully automated trading system which takes much of the work out of trading, leaving you free to do other things! You should not be fooled by the low price – GOLD Scalper Pro is a very effective and profitable trading strategy, professionally developed es
CryptoHFT AI
Aldo Marco Ronchese
Trade all crypto pairs including BTCUSD BITCOIN BTCEUR LTC ETH etc (any pair with a spread over 100 including US100 ) CryptoHFT   isn't just another Expert Advisor.   It's your gateway to a new era of intelligent,   adaptive trading in the volatile world of cryptocurrencies.   Powered by a cutting-edge 5-neuron AI engine,   CryptoHFT learns from your chosen timeframe - days,   weeks,   months,   or even years - to discover the optimal settings for   any crypto pair  with spreads ranging from 100
Jet Punch
Didit Haryadi Saputra
Jet Punch is another best expert advisor for MT4,  can help you make money while you sleep by automatically entering and exiting trades. It trades by opening trades every day and closing them at the right time to ensure you always earn a profit. The software is very simple and can be used by both beginner and experienced traders.  Jet Punch was tested and has successfully passed the stress test with slippage and commission approximate to the real market condition. Recommendations: Currency pair
Stpaos
Vladislav Filippov
STPAOS - это автоматизированный торговый советник. Программный функционал советника кастомизировался под стратегию безопасной торговли по тренду, суть которой заключается в закрытии сделки при достижении положительного коэффициента прибыльности в несколько пунктов, что дает покупателю возможность свести к минимуму потери средств от открытия проигрышных сделок. Советник оснащен специальными программными установками и утилитами, помогающими добиться положительного показателя прибыльности торговли.
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
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
Ilanis
Mikhail Sergeev
4.74 (27)
Советник Ilanis - торговый эксперт для биржевой торговли, подходит как для работы на Форекс, так и для других рынков, товарных, рынков металлов, индексов. Для определения входа в рынок используется современный и сверх-адаптивный индикатор FourAverage . Принцип ведения позиции схож с работой не без известного форекс советника "Ilan", с использованием усреднения. Но в отличии от Илана, Ilanis использует точный и выверенный вход в рынок. Робот внимание уделяет контролю позиции, в случае если цена п
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
Мультивалютный скальпирующий в ночное время робот. Во второй версии торгуется только EURCHF. Мониторинг версии 1.0 (Multiplier = 1) Night Zen - ночной скальпер использует низковолатильные участки на графике для поиска потенциального разворота цены. Советник входит в рынок только одной сделкой при соблюдении всех условий. Для защиты сделок советник выставляет фиксированный Stop Loss. Закрывать сделку советник может как по Take Profit, так и по заложенной в него стратегии. Советник торгует на тайм
Fundamental Robot MT4
Kyra Nickaline Watson-gordon
Fundamental Robot is an Expert Advisor based on Fundamental Signals Indicator. The Fundamental Signals Indicator has a powerful calculation engine that can predict market movement over 30000 points. The indicator is named fundamental because it can predict trends with large movements, no complicated inputs and low risk.  The EA works with low margin levels and thus has low risk. Using EA : The EA is very simple and without complicated input parameters. These are main parameters must b
С этим продуктом покупают
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
ONLY 3 COPIES OUT OF 10 LEFT AT $399! After that, the price will be raised to $499. - REAL SIGNAL: Default Setting:  https://www.mql5.com/en/signals/2251841 Gold Scalper Trading is an EA that uses a complex trading methodology that includes cross-market analysis to find scalpable entry points with XAUUSD, one of the market's wildest running pairs. EA uses stop loss for all orders, only 1 order and does not use any dangerous trading methods: No grid, no martingale,... Gold Scalper Trading is o
The Gold Reaper MT4
Profalgo Limited
4.69 (29)
ПРОП ФИРМА ГОТОВА!   (   скачать SETFILE   ) ЗАПУСК ПРОМО: Осталось всего несколько экземпляров по текущей цене! Окончательная цена: 990$. Получите 1 советник бесплатно (для 2 торговых счетов) -> свяжитесь со мной после покупки Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal Добро пожаловать в Gold Reaper! Созданный на основе очень успешного Goldtrade Pro, этот советник был разработан для одновременной работы на нескольких таймфреймах и имеет возможность уста
Please do not   pm   me if you are asking for:  Discount ( Price will go back to original price 3800 in the future ) Backtesting result ( We don't trust mislead informations ) (LOJ IS NOT A HFT Strategy, Will not be violated by Prop firm rules) We don't rely on backtest results. The backtesting environment can't access our database to retrieve historical data. We aim to provide clarity to EA traders and not mislead them. The best approach is to monitor our signals. If you're wondering how to ve
Акционное предложение  Осталось всего 3 распродажи, чтобы купить по текущей цене. Следующая цена: $1233 Бесплатно получите 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 Challeng
HFT Prop Firm EA
Dilwyn Tng
4.98 (560)
HFT Prop Firm EA, также известный как Green Man из-за своего отличительного логотипа, является экспертом-советником (EA), специально созданным для преодоления проблем или оценок со стороны проприетарных торговых компаний (prop firms), которые разрешают стратегии высокочастотной торговли (HFT). На ограниченный период: бесплатные утилиты стоимостью $198 при покупке HFT Prop Firm EA Версия для MT5: https://www.mql5.com/en/market/product/117386 Мониторинг производительности при прохождении HFT
Quantum Emperor MT4
Bogdan Ion Puscasu
4.86 (128)
Представляем       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 EA и вы можете получить Quantum StarMan или Quantum Queen или Quantum Gold Emperor бесплатно!*** За подробностями обращайтесь в личном сообщени
Путь к звездам — это ночной скальпирующий EA, специально разработанный для торговли в периоды низкой волатильности рынка, чтобы извлечь выгоду из возможностей с низким риском. Эта ночь скальпирования EA фокусируется на захват небольших движений цен для частой торговли, тем самым накапливая прибыль с течением времени. Она применяет строгие меры по прекращению потерь для ограничения потенциальных потерь в торговле, обеспечивая эффективное управление рисками. Путь к звёздам — это подлинная и честн
Предупреждения ЭС содержит максимум 6 точек входа, объем каждой сделки равен объему ордера, умноженному на 6, поэтому, пожалуйста, не используйте слишком большой объем. Способ расчета объема по умолчанию - это не процент от капитала. Наш способ расчета по умолчанию не зависит от плеча, что позволяет более точно контролировать риск.  Рекомендуется использовать капитал не менее 1000 долларов США для повышения устойчивости к риску. Одновременное использование нескольких валютных пар может привести
Z4scalp
Cence Jk Oizeijoozzisa
5 (2)
------------------------------------------- Введение: Z4SCALP ------------------------------------------- Z4SCALP – это передовой торговый робот, разработанный для предотвращения проскальзывания цен на торговых счетах. Эксклюзивное предложение: Купите один продукт и получите другой БЕСПЛАТНО ! Детали демонстрационного счета: Чтобы увидеть торгового робота в действии, войдите в следующий демонстрационный счет. Этот счет просто отражает реальный счет и не имеет активных роботов. Номер счета: 217
CyBRG RX Mt4
Arseny Potyekhin
5 (2)
Представляем CyBRG RX: Трейдинг-ассистент нового поколения Шагните в будущее трейдинга с CyBRG RX, вашим ультрасовременным трейдинг-помощником, созданным для повышения эффективности ваших торговых операций. Используя мощь передовых нейронных сетей, CyBRG RX анализирует и адаптируется к постоянно меняющимся рыночным условиям с непревзойденной точностью. Сигналы:   Живой сигнал 1 Живой сигнал 2 Поскольку эта стратегия настолько уникальна, я хочу продать только ограниченное количество лице
Осталось только 2 копира по этой цене, следующая цена $ 2333 Смотрите живые результаты здесь: $50K Персональный сигнал:   [Нажмите здесь] Персональный сигнал:  [Нажмите здесь] Сигнал проп фирмы:   [Нажмите здесь] Версия MT5 здесь:   [Нажмите здесь] Добро пожаловать в   Quantum Algo Trading MT4 EA . Этот советник предназначен быть не просто механической системой, но и вашим спутником в торговом пути на протяжении всей жизни. Советник использует систему пробоя с алгоритмом, оптимизированным
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 high risk :  https://www.mql5.com/en/signals/2242498 Live Signal Set Prop Firm Set JOIN PUBLIC GROUP:   Click here Parameter overview Gold Trade Pro присоединяется к клубу советников
Daytrade Pro Algo
Profalgo Limited
5 (5)
Запустить промо: Ограниченное количество копий по текущей цене Окончательная цена: 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!   После многих лет изучения рынков и программирования различных стратегий я нашел алгоритм, в котором есть все, что нужно хорошей торговой системе: Не зависит от брокера Распрос
Boring Pips MT4
Thi Thu Ha Hoang
5 (11)
Вы когда-нибудь задавались вопросом, почему большинство советников-экспертов неэффективны в реальной торговле, несмотря на их идеальные результаты на исторических данных? Самый вероятный ответ - overfitting. Многие советники создаются для "обучения" и идеальной адаптации к доступным историческим данным, но они не могут предсказать будущее из-за недостатка обобщаемости в построенной модели. Некоторые разработчики просто не знают о существовании overfitting, или они знают, но не имеют способа пре
ONLY 3 COPIES OUT OF 10 LEFT AT $199! After that, the price will be raised to $299. - REAL SIGNAL: Default Setting:  https://www.mql5.com/en/signals/2253757 (*) IMPORTANT NOTE: To be able to back test the EA or install the EA correctly to be able to trade normally. You will need to allow EA access to the GPT API in addition to installing other news-related websites. For details, please contact me to receive specific installation instructions. Gold Quantum AI is an EA that I have used for a
GRain EA MT4
Roman Erokhin
4.25 (4)
Good afternoon. My name is Roman, I am the creator of Gold Rain EA. I have been preparing for its realization for a long time, went through a lot of tests and now I finished the product and went on sale with a live good signal. My motto is to use only live signals, I do not release products without history or lack of real accounts. Now you have the opportunity to try Gold Rain EA in your hands. I will help every client to customize and install EA, from beginner to pro. Tired of complicated EA mo
Supply Demand EA ProBot
Georgios Kalomoiropoulos
5 (2)
Полностью автоматический советник, основанный на принципе спроса и предложения . Первый, предлагающий полностью автоматизированный советник спроса и предложения . Торговать теперь легко и иметь полный контроль над своей торговой стратегией Через удобную графическую торговую панель. Вы получаете сверхвысококачественное программное обеспечение для алгоритмической торговли с более чем 15 000 строк кода. Спрос и предложение EA Руководство ProBot Лучший способ торговать «Вызовы Prop Firms» и прой
Big Forex Players MT4
Marzena Maria Szmit
4.67 (24)
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
AW Recovery EA
AW Trading Software Limited
4.32 (65)
Советник является системой, предназначенной для восстановления убыточных позиций. Авторский алгоритм локирует убыточную позицию, дробит ее на множество отдельных частей, и закрывает каждую из них отдельно. Простая настройка, отложенный запуск при просадке, локирование, отключение других советников, усреднение с фильтрацией тренда и частичное закрытие убыточной позиции встроенные в один инструмент Именно использование закрытия убытков частями позволяет уменьшать убытки с меньшей загрузкой депозит
Adapt EA
Alexander Kozachuk
1 (1)
Бэктест за последние 24 года (с 2000) Высокая прибыльность Адаптивный алгоритм для разных состояний рынка Совместим со всеми брокерами Надежная система ограничения просадки Пары: USDCAD, EURUSD, AUDUSD, EURGBP, USDJPY Скачать стандартные бэктесты : Нажать тут Скачать 99% TickData (Ducascopy) backtest: Нажать тут Лив сигнал : Нажать тут Лив сигнал (Агрессивный) : Нажать тут О разработке: Мы профессиональная команда трейдеров, которая занимается разработкой Forex Экспертов (роботов) уже б
Live signal :   TrendMaster FX The MT5 version : TrendMaster FX MT 5 В настоящее время действует акция на пробное использование советника. После покупки свяжитесь с нами, чтобы получить доступ к "Gold Garden" или "AI TradingVision GPX". Для получения подробной информации, пожалуйста, свяжитесь с нами. Рекомендуемые валютные пары: Фунт/Доллар США (GBPUSD) Доллар США/Канадский доллар (USDCAD) Евро/Доллар США (EURUSD) Настройки риска: Для агрессивных трейдеров максимальный уровень риска установлен
Эксперт Richter — это профессиональный рыночный аналитик, работающий с использованием специализированного алгоритма. Анализируя цены за определенный временной промежуток, он определяет силу и амплитуду цен с помощью уникальной индикационной системы на основе реальных данных. При изменении тренда и его направления, эксперт закрывает текущую позицию и открывает новую. В алгоритмах бота учтены сигналы о перекупленности и перепроданности рынка. Покупка происходит, когда сигнал опускается ниже опред
FT Gold Robot MT4
Marzena Maria Szmit
4.39 (28)
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
XG Gold Robot MT4
Marzena Maria Szmit
4.28 (18)
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
Prop Hunter Pro EA — это продвинутый Советник (EA), включающий 6 тщательно разработанных стратегий, включая HFT и Скальпинг . Три из этих стратегий предназначены для помощи трейдерам в преодолении сложностей, связанных с проп-фирмами, в то время как остальные три предназначены для использования в личных торговых счетах. Оригинальная цена   399$  —> 60% скидка только   $169 (4 копии доступны ) Чтобы увидеть его работу в реальном времени, вы можете проверить, войдя в MT4, используя следующие
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
TopBottomEA
lizhi fu
4.61 (41)
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
Diamond PRO
Fanur Galamov
4.85 (20)
Diamond PRO is enhanced powerful version of Diamond for advanced traders. Pro version includes optimized cores, new impoved entry points filters, new multistage profit closure algorithm and сontains number of external control parameter that allows build and fine tune own tradind decisions and algorithms. The system provides more accurate market entries, analyzes and filters upcoming economic news, contains spread protection and an advanced position management algorithm. Main goal of Diamond PRO
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
Фильтр:
Нет отзывов
Ответ на отзыв
Версия 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