Nash Equilibrium

I am pleased to present to you a powerful EA, and everything about this EA is HUGE: profit, drawdown, number of orders, deposit.
EA trade all 28 symbols x 5 timeframes (M15,M30,H1,H4,D1), individual timeframes and currencies (not symbols) can be disabled.
Simple calculation: 28*5 = 140 signals to trade, and * 2 directions(buy/sell) = 280. If you are interested, read on.

1. How it was created:

EA was created when, after writing EA for manual basket trading, I was looking for an idea to automate it. Then I watched the movie “A Beautiful Mind” again and was inspired by the following scene. To understand how everything works, you just need to understand what John Nash is talking about in following scene:
https://www.youtube.com/watch?v=LJS7Igvk6ZM
THE BEST RESULT WOULD COME FROM EVERYONE IN THE GROUP DOING WHAT'S BEST FOR HIMSELF AND THE GROUP, that's how EA works.
I will explain grouping below. That is why buy and sell signals are not the most important thing. It is enough for them to be potentially profitable. What is important is managing groups (baskets and baskets in groups).

2. Minimum requirements:

Minimum deposit:  $5,000 for 1:500 leverage, $25,000 for 1:100 (the account must be able to handle a large number of positions, the EA will handle any number)
Maximum ping:      50 ms (30 ms is better than enough), small delays during closing work in favor of EA
Working time:        24 hours/5 days
Without meeting these conditions, it is a waste of your time and money.

3. Why cheap rent:

I set EA rent at a very low price for 6 months because it is not possible to perform backtests for all symbols in MT4. The only thing you can do is some optimization for take profit on one symbol (for reference), because everything is calculated for 28 currency pairs x 5 timeframes in real time anyway.
The EA rent is time-limited, and my suggestion is as follows: a) 2-3 months of learning and understanding, b) 3 months of real account, c) earn and buy. You just need to understand how it works and what the risks are and it is high.

4. Generating your own parameters:

The EA has the same SAFE, MODERATE, and AGGRESSIVE parameters encoded as in the following EA: Short Trend Reversal Using this EA, you can generate your own signal parameters (this EA was created for this purpose) and enter them into the ‘ReadFromFile.txt’ file.
The file with details will be created when you enable the Activity:ReadFromFile option for the first time on any timeframe.

5. EA as a manager:

Additionally, EA can work as an independent manager for your EA or supplement it. You need to apply logic for OrderMagicNumber(). Details can be found in the EA directory in the ‘ReserveMagic.txt’ file, which will be created after launching EA. If you attach my previous EA Short Trend Reversal to a chart opened with this EA, orders can be managed in manage mode (External or Main&External). The EAs are compatible.
You can send to EA from another EA/indicator/script EventChartCustom to close or open orders.

closing orders CustomEvents from other EA,indicator or script

char EAManageMode = 0; 0 - Main, 1 - External, 2 - Main&External
long currChartID = ChartID();
EventChartCustom(EAChartID,201,currChartID,EAManageMode,"M15"); /*close all M15*/ returned: EventChartCustom(currChartID,299,0,1,"M15");
EventChartCustom(EAChartID,202,currChartID,EAManageMode,"M30"); /*close all M30*/ returned: EventChartCustom(currChartID,299,0,2,"M30");
EventChartCustom(EAChartID,203,currChartID,EAManageMode,"H1");  /*close all H1*/  returned: EventChartCustom(currChartID,299,0,3,"H1");
EventChartCustom(EAChartID,204,currChartID,EAManageMode,"H4");  /*close all H4*/  returned: EventChartCustom(currChartID,299,0,4,"H4");
EventChartCustom(EAChartID,205,currChartID,EAManageMode,"D1");  /*close all D1*/  returned: EventChartCustom(currChartID,299,0,5,"D1");
EventChartCustom(EAChartID,200,currChartID,EAManageMode,"ALL"); /*close all ALL*/ returned: EventChartCustom(currChartID,299,0,0,"ALL");

open orders CustomEvents from other EA,indicator or script

char ManageMode = 0; //0 - Main, 1 - External, 2 - Main&External
char tf_idx;
switch(_Period) {
   case PERIOD_M15: tf_idx = 1; break;
   case PERIOD_M30: tf_idx = 2; break;
   case  PERIOD_H1: tf_idx = 3; break;
   case  PERIOD_H4: tf_idx = 4; break;
   case  PERIOD_D1: tf_idx = 5; break;
   default: break;
}
ushort EventID = (ushort)StringFormat("3%d%d",tf_idx,ManageMode);
long currChartID = ChartID();
double Lots = 0.01;
string trade_cmd = "STRONG,EUR,EURUSD"; //example
EventChartCustom(EAchartID,EventID,currChartID,Lots,trade_cmd); returned: EventChartCustom(currChartID,300,ChartID(),Lots,"STRONG,EUR,EURUSD");

6. GUI, CLI:

GUI resolution made for FullHD (1920x1080), I have no plans for 4k (if you buy, ask by PM), the GUI engine is my own creation.
You can see the clickables by typing in the command-line: show demo.
You can see the list of CLI by clicking ‘i’ on the top bar of the GUI. The list of commands is quite long and described in EA, so there is no need to describe everything here.

7. Events reading:

EA has the ability to send pending orders a few seconds before macroeconomic data readings and delete them after the reading. Data is downloaded from ForexFactory (HIGH IMPACT) automatically and in local mode uses a *.txt file. This functionality is only available to buyers, it is blocked in the rent version. In the rental version, pending orders for readings can be sent manually. You can see the commands by clicking ‘i’ on the top GUI bar.
Events do not work on VPS.

8. Modes (group description):

each buy/sell signal generates 4 players
example: EURUSD sell signal
dual: (4 orders) (higher risk, greater DD movements, greater profit)
        EA sends two SELL orders and recognizes them as:        WEAK EUR and STRONG USD
                                    + 2 x opposite pending BUY STOP: STRONG EUR and WEAK USD
single: (2 orders) (lower risk, smaller DD movements, smaller profit)
        EA sends one SELL order but recognizes it as:              WEAK EUR or STRONG USD
                                + 1 x opposite pending BUY STOP:   STRONG EUR or WEAK USD
The following groups are created from the above example:
group(-1): or groupM15,groupM30,... ‘Group Mxx orders (all orders)’ (I call it clearing the table)
    - groups all orders regardless of direction, simple (sum of orders) * (Group Mxx profit per order)
    - rarely reaches TakeProfit but it depends on the TakeProfit set for TF (difference: Mxx Profit per order and Group Mxx orders) (averaging mode has a big impact, but it is very risky)
group0: (per timeframe, main group)
    - STRONG OR WEAK on each timeframe has its own TakeProfit and these are entered all the time: Mxx Profit per order
group1:
    - (STRONG, WEAK for all orders) is created from group0 (per timeframe) and has its own TakeProfit but has additional execution conditions (group definition and orders are for more than 1 timeframe)
group1ext:
    - groups the two above STRONG&WEAK, with similar conditions, and one of group1 cannot be empty (also depends on group definition and the difference between TP group1 and group1ext) (table clearing)
groupN: (table clearing):
    - I have never seen TP execution (left side of the GUI) you can combine and display groups (-1) in any configuration.
As you can read above, you can only choose the appropriate TakeProfit. Without backtesting on all symbols, it is impossible to set this with 100% certainty (don't  forget what D. Trump did in 2025, it is impossible to generate perfect settings).

9. Settings:

settings affecting risk:
 - Initial Lots,
 - Averaging Method,
 - Averaging steps,
 - TF activity,
 - Pending rules1,
 - Pending rules2

Enable GUI GUI ON/OFF
GUI 3D 3D ON/OFF
Start/Stop (Broker Time) Start/Stop trading
BrokerOffset (remember saving time change) difference between local and broker time (it is safer to set it manually)
Initial Lots do not change if you have previously enabled averaging and have open orders
Pending Lots Initial Lots, Same as previous opened order
Averaging Method NONE, simple: Initial Lots*(cnt+1), fibo: Initial Lots * fibo[cnt] e.g. [1,1,2,3,...]
Averaging steps array size for averaging method, max 7
Enable Factor for calculations ONLY after switch from averaging
Manual limits noLimits, byTotalOrders, byMarginLvL, byTotalAndMargin, byTotalOrMargin
EA working mode DualMode, SingleMode (description above)
Disable order distance limits disabling distance limits for new orders, 3rd signal parameter
        Timeframe settings (groups0, trading signals):
Enable TF enabling TF trading TF=(M15, M30, H1, H4, D1)
TF base MagicNumber min 4digits, different for each TF (leave default)
TF Profit per order group0, (0 disabling)
Group TF orders group(-1), all orders
Group TF Profit per order group(-1) profit per order
TF activity Safe, Moderate, Aggressive, ReadFromFile (read description above)
        Group Baskets (group1, group1ext):
Group all STRONG enable/disable grouping STRONG orders (group1)
Group all WEAK enable/disable grouping WEAK orders (group1)
Group all STRONG&WEAK enable/disable grouping STRONG&WEAK orders(group1ext)
Group definition minimal orders in groups1 to close TakeProfit
STRONG TakeProfit for STRONG basket (group1)
WEAK TakeProfit for WEAK basket (group1)
Optimization for backtesting only, sets the same TP for both of the above
STRONG&WEAK TakeProfit for STRONG&WEAK baskets (group1ext)
Add D1 to STRONG&WEAK groups Add D1 orders to calculations
        Group Timeframes (groupN):
Group timeframes set1-set11 grouping groups(-1), groupsN
Group set1-set11 profit per order TP for created groupsN
        Pending settings:
Save/Restore pendings OFF, SaveToFile, InternalArray. save/restore pending orders for overnight spread. on VPS, EA uses an internal array
Save after StopTrading [min] (0 = OFF)
Restore before StartTrading [min] (0 = OFF)
Save/Restore behavior for external pendings: Do Not Touch, Save/Restore As Is, Take Ownership
Delete old Pending distance delete pendings if distance is more than N pips
Open Pending rules1 (if other pending exist): Reject When Pending Exist, Move Existing, Add Even When Pending Exist
Open Pending rules2 (if other buy or sell exist): Reject When Opened Exist, Add If Below Highest/Above Lowest, Add Even When Opened Exist
        AutoEvents (buyers only):
AutoEvents enable/disable, events are downloaded directly from ForexFactory with below settings. events do not work on VPS
Timeframe timeframe to trade
Distance place pending orders with N pips distance
Expiration[s] expiration is coded, max 23m:59s converted to seconds
Before[s] place pending orders N seconds before, max 23m:59s converted to seconds
        Manage settings:
Coma separated list excluded baskets here you can disable baskets. disabling more than two does not make sense. exaple:CHF,JPY
EA suffix usefull for multiple instances, max 5letters
External EA OrderComment() part of the text is enough to recognize
Manage mode Main, External, Main&External
External pendings delete behavior DoNotTouch: if true and Manage Mode is External or Main&External EA will not delete pending orders from external EA
External ChartEvents receiver enable/disable receiving CustomChartEvents to close or open orders from other EA or indicator
        Notification/Alerts/Logs:        there is no need to describe
Send heartbeat every N hours (0 disable), sends a push notification “Alive and Kicking” every N hours
        Graphics settings:        there is no need to describe, fonts: Arial Narrow, Arial Nova, Bahnschrift (check if you have it installed)

10. Indicator for analysis:      https://www.mql5.com/en/code/65634

11. External indicator with prohibited import dll (you need it for some features):

#property copyright     "https://www.mql5.com/en/market/product/Nash Equilibrium"
#property link          "https://www.mql5.com/en/market/product/154150"
#property description   "NashEquilibrium ChartEvents"
#property version       "1.00"
#property strict
#property indicator_chart_window

#import "user32.dll"
   int GetParent(int hWnd);
   int SetWindowPos(int hWnd,int hWndInsertAfter ,int X,int Y,int cx,int cy,int uFlags);
   int MoveWindow(int hWnd,int X,int Y,int nWidth,int nHeight,int bRepaint);
#import
#import "shell32.dll"
   int ShellExecuteW (int hwnd, string lpOperation, string lpFile, string lpParameters, string lpDirectory, int nShowCmd);
#import
//----------
int OnInit(void)  {
   return(INIT_SUCCEEDED);
}
//----------
void OnDeinit(const int reason) {
}
//----------
int OnCalculate(const int rates_total,
                const int prev_calculated,
                const datetime &time[],
                const double &open[],
                const double &high[],
                const double &low[],
                const double &close[],
                const long &tick_volume[],
                const long &volume[],
                const int &spread[]) {
   return(rates_total);
}
//----------
void OnChartEvent(const int id, const long &lparam, const double &dparam, const string &sparam) {  int customEventID,parent;
   if(id>CHARTEVENT_CUSTOM) {//Print(lparam," | ",dparam," | "sparam);
      customEventID = id - CHARTEVENT_CUSTOM;
      switch(customEventID) {
         case 1: parent = GetParent((int)ChartGetInteger(0,CHART_WINDOW_HANDLE));         SetWindowPos(parent,0,0,0,(int)lparam,(int)dparam,0x0002); break; //GUI ON
         case 2: parent = GetParent((int)ChartGetInteger(0,CHART_WINDOW_HANDLE));         SetWindowPos(parent,0,0,0,(int)lparam,(int)dparam,0x0002); break; //GUI OFF
         case 3: ShellExecuteW(NULL, "open", "explorer",TerminalInfoString(TERMINAL_DATA_PATH)+"\\MQL4\\Files\\"+sparam, NULL, 1);     break;
         case 4: ShellExecuteW(NULL, "open", "notepad", TerminalInfoString(TERMINAL_DATA_PATH)+"\\MQL4\\Files\\"+sparam, NULL, 1);     break;
         default: break;
      }
      if(customEventID>=11 && customEventID<40) {
         int Width = 282,Height = 363;
         long chartID = lparam;
         parent = GetParent((int)ChartGetInteger(chartID,CHART_WINDOW_HANDLE));
         int _X = (int)ObjectGetString(chartID,"X",OBJPROP_TEXT);
         int _Y = (int)ObjectGetString(chartID,"Y",OBJPROP_TEXT);
         MoveWindow(parent,_X,_Y,Width,Height,true);
      }
      else if(customEventID==100) {
         Print(sparam);
         //Your commands
      }
   }
}

12. At the end

Finally, if you have read this far, I would be very grateful for any suggestions for improvements. I can also add additional entry signals (they must work on all timeframes and symbols). MACD divergence I will add and inform.
Рекомендуем также
Описание советника Modern Forex Technologies Additional information on EA settings, monitoring, and support is available at: https://www.mql5.com/ru/blogs/post/767656 Общая информация Основные характеристики Универсальность. Работает с любыми валютными парами. Мульти‑трендовый анализ. Оценивает тренды на нескольких временных периодах одновременно. Стабильность индикатора. Используемый индикатор не перерисовывается и не запаздывает, обеспечивая надёжность сигналов. Работа индикатора в тестере с
Aurus Gold
Dmitriq Evgenoeviz Ko
"Aurus Gold" - это программа, способная автоматически анализировать и торговать на рынке валют (Forex) без участия человека. Этот инновационный инструмент  для решений о покупке или продаже валютных пар. полный список для Вашего удобства доступен https://www.mql5.com/ru/users/pants-dmi/seller Основная задача Aurus Gold- максимизировать прибыль и минимизировать риски для инвесторов. Он способен работать круглосуточно, основываясь на заранее заданных параметрах и правилах торговли. Основные пр
The Gold Titan — это автоматизированный торговый советник для платформы MetaTrader, разработанный для работы с инструментом XAU/USD (золото). Алгоритм анализирует рыночные данные и совершает сделки в соответствии с заданными параметрами, поддерживая трейдера в процессе принятия торговых решений. Основные характеристики: • Оптимизация под XAU/USD Советник учитывает особенности инструмента золото/доллар США, что делает его адаптированным к высокой волатильности этого актива. • Комбинированный ана
Banker Pro
Aleksandr Valutsa
5 (1)
Советник «Banker»: описание и руководство Additional information on EA settings, monitoring, and support is available at: https://www.mql5.com/ru/blogs/post/767656 Концепция «Banker» — советник для форекс, нацеленный на разгон небольшого депозита с минимальным риском. Ключевая идея: рисковать малой суммой ради потенциально крупного заработка. Как работает советник Алгоритм действий: Определение тренда. Встроенный пользовательский индикатор выявляет направление тренда. Установка отложенного орде
The Arrow Scalper
Fawwaz Abdulmantaser Salim Albaker
1 (2)
Dear Friend..  I share with you this simple Expert Adviser .. it is full automatic  this Expert Adviser following the trend of the pair you install on or any stocks or indices , it is works like that: - when the trend on H4 chart show a start of up trend the expert will wait till the 15M & 1H charts show an up trend the EA will open a buy order directly , and do the same for down trend and open a sell order the buy or sell  order lot size and take profit and stop loss will measured manually  by
FREE
SFire Gold EA
Jacques Scholtz Fourie
This EA is a grid-based trading system. It incorporates several advanced features to manage trades dynamically and adapt to market conditions. Here's a summary of its functionality: I am happy to provide my settings file. Recomendation would be to run on a 20 000 cent account. Key Features: 1. Grid Trading Strategy:    - The EA uses a grid-based approach to open buy and sell trades at predefined price intervals.    - It dynamically adjusts the grid levels based on market conditions and risk se
MT4 Time-Based Auto Close System EA ​ is an intelligent time-algorithm-based automated order management trading tool. Utilizing a high-tech decision-making engine, it automatically executes precise closing operations when preset holding periods expire, designed to help traders maintain strict trading discipline and avoid emotional interference   . Core Closing Modes The five core closing modes you mentioned form the cornerstone of this EA's strategic logic, allowing flexible configuration base
Basket Recovery System : is useful for trading multiple pair on a single account, single chart. Functions Of this Ea with a simple click on a button in any Symbol row, this Utilities will, Open new Order, Set Lot, Close Order, Reverse Order, Add new Symbol, Delete Symbol, with a simple click on a Navigation Button, this Utilities will, Select all Symbol Available on Broker, ReSet Symbol Lots, Close all Order, Set Low Risk for all Symbol, Remove all Pair with spread above 2two.
FREE
TOKYO SNIPER USDJPY                     Точная торговля в Токийскую сессию Живой сигнал:    • MQL5 сигнал: https://www.mql5.com/ru/signals/2359128    • Полная история за 1+ год: Поиск «HACHI FXTF» на myfxbook.com    («HACHI» = название продукта для японского рынка) 22-летний бэктест (2004-2025) | Качест
TSO Loss Management - это советник, который включает в себя усовершенствованные механизмы покрытия убытков от проигрышных сделок. Адаптируется к различным рыночным условиям и управляет каждой позицией, чтобы как можно быстрее покрыть убытки при минимальном риске. Он использует все инструменты советника TSO Signal Builder - почти бесконечные стратегии входа/выхода. Добавьте Negative Management к любой стратегии, чтобы устранить убыточные сделки. Отложенные ордера не устанавливаются. Можно работат
Details of each condition Type 1. Set no use Hedging Martingale, to open the order by yourself only through the push button. TP and SL follow setting. Set Setting_Hedging =false;     Use_Signal =false;  Type 2. Semi Auto Recovery Zone You have to open the order by yourself only through the push button. If in the wrong direction and Set true on Hedging Martingale, EA will fix the order with the zone system by use Hedging Martingale Set Setting_Hedging =true;     Use_Signal =false;  Type 3. Use
Торговая стратегия представляет собой "сеточную" технологию с элементами мартингейла.  Робот рассчитан на просадки в 700-800 пунктов без отката. Для торговли подойдут основные валютные пары, такие как EURUSD, GBPUSD, USDJPY, USDCHF, AUDUSD, USDCAD.  Общие настройки Разрешение торговли на продажу   -      Разрешить | Запретить открывать Sell ордера и выставлять SellStop отложенные ордера. Разрешение открывать первый ордер   - Разрешить | запретить боту самому открывать первый ордер Sell сетки.
NewsCatcher Pro
Evgeniy Scherbina
4.71 (14)
Советник NewsCatcher Pro открывает как отложенные, так и рыночные ордеры на основе данных из календаря mql5.com . В режиме реальной торговли NewsCatcher Pro автоматически скачивает календарь, открывает, сопровождает и закрывает ордеры. NewsCatcher Pro может торговать любые новости из календаря на любом символе, доступном в МетаТрейдере, включая золото, нефть и кросс-курсы. Чтобы изменить символ, перейдите в представление стратегии. Советник NewsCatcher Pro работает по двум стратегиям: Стратегия
This is an fully automated Forex EA  Can be used with TP and SL settings with trailing stop as Martingale The robot works on all Currency Pairs and all Time Frames. The higher the Frame so higher the possibility of the trade accuracy. Be aware that using a different Broker can result in different results . I wish everyone who purchases the EA maximum sucess and good trading results Please trade carefully and responsibly. Thank you and Happy trading everyone
The Expert Advisor works on sharp price movements; it can apply open position locking and pyramiding. Virtual stops are used (take profit, trailing stop), to limit losses, order locking and stop loss are used in% of balance. At the same time, several dozens of orders can be opened and the advisor will need free funds to exit the locks and close all positions for total profit, this should be taken into account when choosing the number of instruments for trading. The work of the adviser does not
Aurum Syna
Dmitriq Evgenoeviz Ko
AURUM SYNA — это профессиональная алгоритмическая торговая система, разработанная специально для работы с золотом (XAUUSD). Архитектура робота ориентирована на таймфрейм H1, где золото демонстрирует наиболее структурированные и воспроизводимые ценовые модели. В основе системы лежит многослойная нейросетевая логика с адаптивной памятью, которая анализирует рынок не по отдельным сигналам, а как единое динамическое пространство. Алгоритм оценивает силу импульса, фазу рынка, внутреннюю волатильность
Set TP & SL by Price – Auto Order Modifier for MT4 Автоматически устанавливает точные уровни TP и SL на любую сделку ️ Работает со всеми парами и советниками, фильтрация по символу или magic number Этот советник позволяет вам задавать точные уровни Take Profit (TP) и Stop Loss (SL), используя ценовые значения (например, 1.12345 на EURUSD). Без пунктов или пипсов — только точное управление ордерами по цене, для всех ордеров или отфильтрованных по графику или magic number. Основные функци
grid under control is an EA that opens an orders buy or sell or both, if the market moves an adverse move the EA will open new trade if the first trade is to buy the EA will open buy or if the first trade is to sell the EA will open sell after trade step as you insert in parameters take a look for the pictures and controller the EA is very simple and easy to use try it for free.
Multicurrency Scalper
Corentin Petitgirard
4 (4)
Hello everyone, Today I want to share with you a sclaping strategy who can works on many currency pair timeframe M1 . Multicurrency Scalper is not a spread sensitive scalper . Multicurrency Scalper is an expert with a backtest around 67% of winrate . Multicurrency Scalper is very easy to use . Multicurrency Scalper do not use any dangerous strategy . Multicurrency Scalper can work on XAUUSD, EURUSD, GBPUSD, USDJPY, AUDCAD, EURCHF and many others. This expert is free because results are variab
FREE
Der rebound EA handelt vollautomatisch  Du bekommst hier einen tollen EA mit extra Zubehör, Kostenlos ! Er verwendet keine gefährlichen Strategien wie Martingale oder Gritter usw. Bei diesem EA kannst du vieles nach deinen Wünschen, oder nach meinem Set einstellen. Zusätzlich hat er einen News Filter, er pausiert die trades während der eingestellten Zeit. Zusätzlich erhöht er auf Wunsch die lots Grösse automatisch. Der Backtest und die trades wurden mit Fusion Markets gemacht Hebel 1:500 Zer
FREE
This EA is a breakthrough EA. When the monitoring market changes rapidly, fluctuates rapidly in one direction, and exceeds the set threshold, the EA will quickly place an order and quickly adopt a mobile stop loss strategy to complete capital preservation and profitability. Advantages of this EA: 1. The transaction is very fast to the closing of the position, and it is never procrastinated. 2. After the transaction, the accuracy rate is very high. 3. Place an order with compound interest, and th
RocketGold EA
Muhammad Muṣṭafā ʿAbd Al-jawād Aḥmad
================================================================  HOURLY MARTINGALE EA — MQL5 MARKET DESCRIPTION ================================================================ --- SHORT DESCRIPTION (subtitle) --- Smart candle-based Martingale EA with auto lot scaling, live dashboard, and per-candle P&L labels. Works on any symbol and any timeframe. Minimum deposit $100 — recommended $500 (Cent). ---------------------------------------------------------------- --- FULL DESCRIPTION --- Hou
Gold Pulse MT4
Ivan Martinez Guillen
5 (1)
GoldPulse MT4 — Professional Gold Scalper GoldPulse MT4 is a fully automated Expert Advisor designed exclusively for XAUUSD on MetaTrader 4. The strategy is based on pure price action. The EA reads the market bar by bar and only opens trades when Gold shows clear directional conviction, avoiding noise and false signals. When no valid setup is present, it waits. Recovery System When a trade moves against the initial entry, GoldPulse activates a conditional grid recovery. New positions are only ad
Spd EA
David Binka Kumatse
THE PRODUCT This Spd Expert is an EA to be used on multiple chosen pairs simultaneously. Every order has a TP and an SL, so there is nothing to fear. You just have to be patient as EA trades to grow your account. After purchasing the EA, you can also message me for my optimized settings.    Recommended TimeFrame is 1H TRADE PLAN Consider a recommended minimum starting capital of $100 and an initial lotsize of 0.01 yielding a minimum profit of $20 over 12 months of trading on a single pair. Then
Семи Мартингейл EA Спасибо, что выбрали этого советника. Это инструмент, который, я считаю, должен быть у каждого трейдера. Я сам являюсь трейдером, создавая этот советник для личного пользования, и нахожу его очень прибыльным (не говоря уже об этих жадных трейдерах). С помощью этого инструмента очень ЛЕГКО и ВОЗМОЖНО достичь цели 5% в месяц. Для серьезного трейдера вы удивитесь, как скоро вы получите обратно то, за что заплатили, и даже больше. Давайте помогать друг другу и ДОЛЖНЫ БЫТЬ ПРИБЫЛЬН
Принцип работы советника основан на открытии сделок при получении сигнала от своих индикаторов. Закрытие происходит при поступлении противоположного сигнала. Настройки упрощены до минимума, можно выставить только рабочий лот. Советник настроен на работу на паре EUR/USD, таймфреймы  M5, M15, M30, H1 Советник не  использует в торговле, мартингейл и усреднение. Мониторинг советника   https://www.mql5.com/ru/signals/795297
Breaking News
David Zouein
3.67 (3)
Советник Breaking News торгует на новостях. Робот анализирует рынок во время выхода важных новостей и определяет уровни входа на основе ценовых колебаний в это время. Направление торговли определяется интеллектуальной адаптивной системой советника. Благодаря уникальному интеллектуальному методу сопровождения сделок, советник позволяет максимально снизить просадку и торговать с минимальным депозитом от 50$. Для удобства использования советник содержит минимальное количество входных параметров. Оп
Project IG MT4
Ruslan Pishun
1.78 (9)
Советник не скальпер. Советник использует стратегию основанную на пробое локальных уровней поддержки и сопротивления, также использует реверс и отбой от уровней поддержки и сопротивления. Советник основан на оригинальной авторской стратегии.  Реал мониторинг:   https://www.mql5.com/en/signals/author/profi_mql Подробное описание стратегии здесь: https://www.mql5.com/ru/blogs/post/728430 Ссылка на общее обсуждение советника:  https://www.mql5.com/ru/blogs/post/728430 Используется скрытый Тейк п
Grid Trading
Waseem Raza
5 (3)
Grid Trading - полуавтоматический советник для ручной торговли по сетке в один клик. Обычный режим Вы нажимаете на кнопку Sell или Buy на графике, затем эксперт добавит уровни стоп-лосс, тейк-профит для сделки, а функции трейлинг-стопа и безубытка позаботятся о сделке, если она не сможет достичь цели профита. Хеджирование При выборе торговли с использованием хеджирования, советник начнет торговлю по сетке, которая начинается с противоположного входа и продолжается, пока все сделки не будут зак
EA Excess
Svyatoslav Kucher
EA Excess  - автоматический советник использующий в качестве сигнала для входа сравнение волатильности нескольких периодов, и при определенном превышении ее значения открывает сделки, если дополнительные фильтры активированы и также находятся на нужных значениях. Советник имеет возможность настройки торговли в определенное время, и дополнительную возможность увеличения лотности ордера, или серии ордеров после убытков. ВАЖНО:  обратите внимание на параметры GMT! Для того, чтобы получить корректны
С этим продуктом покупают
Scalping Robot Pro is a  professional trading system  designed specifically for fast and precise scalping on XAUUSD using the M1 timeframe. The system is built to capture short term market movements with accurate execution and controlled risk management. It focuses on real time price behavior, momentum shifts, short term volatility, and selective grid based trade management techniques to identify high probability  trading opportunities  in the gold market. Scalping Robot Pro is optimized for tra
Wall Street Robot is a   professional trading system   developed exclusively for US stock indices, focused on S&P500 and Dow Jones. These markets are known for their high liquidity, structured movements and strong reaction to global economic flows, making them ideal for algorithmic trading strategies based on precision and discipline. By concentrating only on these indices, the system is able to adapt closely to their behavior, volatility patterns and intraday dynamics, instead of trying to oper
DAX Robot is an advanced automated trading system developed specifically for the   DAX 40 Index   on the H1 timeframe. Designed to handle the fast paced nature of one of Europe's   most actively traded indices , the robot continuously analyzes market conditions and automatically executes trades based on its built in trading logic. The system focuses on identifying high probability   trading opportunities   by combining trend analysis, market momentum, and volatility based conditions. DAX Robot
XG Gold Robot MT4
MQL TOOLS SL
4.29 (42)
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
RiskShield Dragon   — автоматизированный мультивалютный советник Объединяя интеллектуальные алгоритмы, надёжные системы защиты и гибкие настройки, RiskShield Dragon обеспечивает стабильный доход при минимальных рисках. --- ## Ключевые преимущества * **Мультивалютность и многопоточный режим**: поддержка более 20 пар (EURUSD, GBPUSD, USDJPY, AUDUSD, NZDJPY и др.) одновременно на любом таймфрейме. * **Минимальный депозит от 10 000**: оптимизирован для работы с депозитом от 10 000 единиц счёта.
Waka Waka EA
Valeriia Mishchenko
4.25 (48)
8+ years of live track record with +12,000% account growth: Live performance MT 5 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 profit Supported cu
XIRO Robot is a   professional trading system   created to operate on two of the most popular and liquid instruments on the market:  GBPUSD,  XAUUSD and BTCUSD . We combined two proven and well tested systems, enhanced them with multiple new improvements, optimizations and additional protective mechanisms, and integrated everything into one advanced and unified solution. As a result of this development process, XIRO Robot was created. Robot was designed for traders who are looking for a reliable
Signal (GOLD/XAUSD) - 16 months active and over 6,800 trades on a Standard account (1:400 leverage):   https://www.mql5.com/pt/signals/2278431 Product for MetaTrader 4:   https://www.mql5.com/pt/market/product/159627 Product for MetaTrader 5:   https://www.mql5.com/pt/market/product/160313 The Apache MHL Moving Average Expert Advisor, or simply "Apache MHL," is a robot that operates on the GOLD/XAUSD asset using strategies based on moving averages and risk management with Martingale. The use
Night Hunter Pro
Valeriia Mishchenko
4.38 (53)
У советника есть  трек:  многие месяцы стабильной торговли с  низкой просадкой : All Pairs 9 Pairs Night Hunter Pro  - это продвинутый  скальпер,  использующий умные алгоритмы входа/выхода с фильтрами для определения самых безопасных точек входа в спокойные периоды рынка. Эта система ориентирована на  долгосрочный рост . Это профессиональная система, разработанная мной много лет назад, которая постоянно обновляется и включает в себя последние инновации в области торговли. Ничего модного, никаког
AI Prop Firms - Intelligent Automation Built for   Prop Trading Firms . AI Prop Firms is an advanced fully automated Forex trading system powered by   Artificial Intelligence , developed specifically to operate within the strict rules and evaluation models of prop trading firms. The system is designed to trade under controlled risk conditions while   maintaining consistency , stability, and compliance with prop firm requirements. AI Prop Firms uses intelligent market analysis logic that continu
Профессиональный эксперт форекс   Gyroscope (для пар EURUSD, GBPUSD, USDJPY, AUDUSD, USDCHF, EURGBP, EURJPY, NZDUSD, USDCAD, EURCHF, AUDJPY, CADJPY)  ализирующий рынок при помощи индекса волн эллиота. Волновая теория Эллиотта — интерпретация процессов на финансовых рынках через систему визуальных моделей (волн) на ценовых графиках.  Автор теории Ральф Эллиотт выделил восемь вариантов чередующихся волн (из них пять по тренду и три против тренда). Движение цен на рынках принимает форму пяти волн
Exorcist Bot   - это мультивалютный многофункциональный советник, работающий на любом тайм-фрейме и в любых рыночных условиях. - За основу работы робота взята система усреднения с негеометрической прогрессией построения торговой сетки. - Встроенные системы защиты: специальные фильтры, контроль спреда, внутреннее ограничение времени торговли. - Построение торговой сетки с учетом важных внутренних уровней. - Возможность настройки агрессивности торговли. - Работа отложенными ордерами с трейлингом
Gold HFT Scalper Pro MT4
Sivakumar Paul Suyambu
1 (1)
Gold HFT Scalper Pro MT4 A high-frequency tick scalper engineered exclusively for GOLD (XAUUSD). Places BUY_STOP and SELL_STOP pending orders just above and below the live market, automatically re-centres them on every tick, and exits with a dynamic trailing stop — all with built-in daily loss protection and real-margin validation before every order. XAUUSD Only -  No Martingale -  No Grid -  Low Drawdown -  Fully Automated -  M1 Timeframe Symbol XAUUSD Timeframe (period) M1 Minimum deposit 500
MyGrid Scalper Ultimate — мощный и захватывающий торговый робот для Форекс, сырьевых товаров, криптовалют и индексов. Функции: Различные режимы лота: фиксированный лот, лот Фибоначчи, лот Далембера, лот Лабушера, лот Мартингейла, последовательный лот, системный лот Bet 1326 Размер автолота. Риск баланса, связанный с размером партии автомобиля Ручной TP или использование ATR для тейк-профита и размера сетки (динамический/автоматический) Настройка EMA Настройка просадки. Отслеживайте и контролир
Big Hunter
Mehdi Sabbagh
5 (1)
The Multi Strategy Trading Robot This automated trading robot always uses stop loss. Big Hunter is specially designed to trade gold , but you can test it on other pairs since you have the access to the parameters. The robot uses different strategies like swing trading ,  momentum trading , position trading and more. It's backtested for the last 10 years under the harshest, simulated market conditions. Each trade has  unique SL, TP, Trailing stop, and breakeven. These parameters are variable a
Alfascal
Vladislav Filippov
1 (1)
Чтобы эксперт работал правильно, не забудьте закинуть файлы в директорию терминала(...AppData\Roaming\MetaQuotes\Terminal\Common\Files) Alfascal – это новая модель полностью автоматизированной торговой нейро-системы, работающей на коротких таймфреймах, используя стратегию активного скальпинга. Данная система, в базис которой интегрирована специализированная нейронная сеть, способна к постоянному обучению, преобразовывая хаотичные реалии рынка в определенную систему, что позволяет повысить качест
AccountUP Algo
Aurelian-eusebio Enescu
Short Description: Advanced, stable multi-order EA featuring dual-mode Trailing/Breakeven, hidden levels, and steady 80% Win Rate. Engineered for robust capital growth with tight ~10% Drawdown. Non-overoptimized. Long Description : AccountUP Algo is a premium, fully automated Expert Advisor engineered for stable, long-term equity growth without exposing your account to extreme market risks. Designed with a deep focus on capital preservation, this EA delivers a smooth, almost linear equity curv
Benefit EA - безиндикаторный гибкий сеточный советник со специальными точками входа, обеспечивающие статистическое преимущество,выявленное с помощью математического моделирования рыночных паттернов. В советнике не используется стоп-лосс, все сделки закрываются по тейк-профиту или трейлинг-стопу. Есть возможность планирования увеличений лота. Функция «Фильтр времени» - устанавливается в соответствии с внутренним временем терминала, согласно отображаемому времени сервера инструмента, запущенного в
Https://www.mql5.com/zh/users/gzd811   работает на  EURUSD  м15   Int  Slippage  =100  ;  //  цена сделки  может принять  в  Slippage   Extern  двойной  только излишки  = 200  ;  //  максимальной  только выиграть   Extern  двойной  =  10  крупнейших  //  стоп  стоп  ;   Extern  двойной  изоляции  мобильных  стоп  стоп  //  максимальная  точка  =  0  ;   Extern  двойной  мобильных  стоп  стоп  //  =  20  крупнейших  ;   Extern  двойной  паритета  стоп  стоп  //  крупнейших  =  2  ;   Extern  int
Meat EA
Roman Kanushkin
5 (1)
Советник Meat EA - это полностью автоматическая, 24-х часовая торговая система, торгующая на основе анализа движения тренда на базе встроенного индикатора и трендовом индикаторе Moving Average, основана на системе скальпинга и хеджирования. Система оптимизирована для работы на паре EURUSD с таймфреймом M30, рекомендуется работать с ECN/STP-брокером с низким спредом, низкой комиссией и быстрым исполнением. Мониторинг сигналов Рабочая валютная пара/таймфрейм: EURUSD M30. Преимущества советник ник
Робот предназначен для торговли на валютных парах EURUSD, GBPUSD, USDCHF, USDJPY и других с небольшим спредом. Торговля осуществляется на 5-и минутном таймфрейме, от уровней, определяемых роботом с помощью нескольких методов расчета ценового движения. Эксперт не использует опасные методы управления капиталом. Все позиции имеют стоп-лосс и тейк-профит. Параметры эксперта можно оптимизировать на коротких временных интервалах. Параметры Use_LOGO - использовать логотип на графике (Замедляет тестиров
PointerX основан на собственном осцилляторе и встроенных индикаторах (Pulser, MAi, Matsi, TCD, Ti, Pi) и работает независимо. Вы можете создавать собственные стратегии на основе PointerX . Теоретически возможны все стратегии, основанные на индикаторах, кроме мартингейла, арбитража, гридов, нейронных сетей или торговли новостями. PointerX включает в себя 2 набора индикаторов Управление всеми индикаторами Настраиваемый осциллятор Управление тейк-профитом Управление стоп-лоссом Управление сделками
Советник MILCH COW HEDGE версии 1.12 работает прежде всего по стратегии хеджирования. Преимущество советника заключается в использовании любой возможности в любом направлении. Не только открывает сделки, но и выбирает подходящее время для закрытия открытых позиций, чтобы начать торговать снова. Советника рекомендуется использовать на парах с высокой волатильностью валют, таких как GBPAUD, AUDCAD Тестирование советника за период с 01.01.2016 по 09.12.2016 показало удвоение счета четыре раза Интер
Данный робот использует пользовательский скрытый осцилляторный индикатор, а также анализирует реакцию рынка. Он торгует в основном во время повышенной волатильности. Он работает при помощи нескольких отложенных ордеров с разными размерами лотов и активно модифицирует их позиции. Использует расширенное управление капиталом. Установка TradingMode позволяет также работать в соответствии с условиями FIFO. Показывает успешные результаты на различных рынках и различных таймфреймах. Наилучшие результат
Avato
Nikolaos Bekos
Советник Avato - один из наших автономных инструментов. (Сигнал на основе советника будет в будущем представлен на сайте). Он разработан на основе комбинированной формы хеджирования и мартингейла и использует сложные алгоритмы и фильтры для размещения сделок. Эксперт использует стоп-лосс и тейк-профит, размер лота рассчитывается автоматически на основе соответствующих настроек. Это готовый инструментарий для опытных трейдеров. Разработан для рынка золота, однако его можно протестировать и на дру
Торговый робот генерирует сигналы об изменениях тренда. Генерация сигналов может происходить с использованием различных стратегий. При открытии позиция оснащается тейк-профитом и стоп-лоссом. Если позиция становится прибыльной, на основе указанных значений (TrailingStep и DistanceStep) для нее устанавливается динамический стоп-лосс и постоянно подтягивается. Это позволяет всегда закрывать позиции в плюсе. Параметры Основные настройки LotSize = 0.01 - Фиксированный размер позиции; LotAutoSize = f
Внимание : Значение спреда, проскальзывание брокера и скорость VPS влияют на результаты торговли советника. Рекомендации: золото со спредом до 3, USDJPY со спредом до 1,7, EURUSD со спредом до 1,5. Чем лучше условия, тем лучше будут результаты. Значение задержки между VPS и сервером брокера должно быть не выше 10 мс. Кроме того, чем меньше стоп-уровень брокера, тем лучше. Идеальным является стоп-уровень = 0. Советник основан на системе пробоя, а после открытия сделок он сопровождает все открытые
Советник работает прежде всего по стратегии хеджирования и стратегии кратных. Он поддерживает использование любой возможности в любом направлении, как и MILCH COW MIX, но с увеличенным количеством совершаемых сделок. Советник Milch Cow Mix начинает открывать хеджирующие сделки на первом уровне, но этот советник открывает хеджирующие сделки на каждом уровне. Не только открывает сделки, но и выбирает подходящее время для закрытия открытых позиций, чтобы начать торговать снова. Советника рекомендуе
MILCH COW Turbo - мультивалютная стратегия. Поддерживает до 10 валют (GBPJPY, GBPUSD, EURCHF,EURGBP, EURJPY, EURUSD, USDCAD, USDCHF, USDJPY). При Trade_Calc = false включена только одна пара. Советник использует специальный индикатор для установки ордеров Buy stop, Buy limit, Sell stop и Sell limit Примечание: при Pendingorders = false советник использует цены, отображаемые на графике в реальном времени (покупка и продажа). В этом случае советник использует скрытые стоп-ордера. Отложенные ордера
AnyWay
Mohamed Nasseem
"ANYWAY EA" - это инструмент для управления сделками с другой концепцией, который не запускает трейлинг с фиксирования прибыли. Он просто переносит стоп-лосс на 1. SL будет перемещаться с шагом 1, поэтому с каждым пипсом SL будет устанавливаться на 19, 18, 17 и т.д. Брокеры видят это и ничего не могут с этим сделать. А в этом время вы будете ожидать, пока советник зафиксирует пункты, которые он накопил. Все уровни стоп-лосс и тейк-профит можно скрыть от брокера, выбрав SLnTPMode = Client. Запуск
Фильтр:
Нет отзывов
Ответ на отзыв