• Overview
  • Reviews
  • Comments

BreakingTrend

The Breaking Trend ADVISOR opens the first position only to buy an order. Next, he looks at if the price goes to a loss, then at a certain loss distance he puts a pending Stop Order Sell for sale with an increased lot in order to cover the loss and fix the profit when closing buy and sell orders. And then the whole trade actually takes place with this logic.

These are the settings of the advisor:
-- LOT ---

extern double lots                       = 0.2; - this parameter is responsible for the purchase of a lot when opening 
                                                  the first position, purchase orders.

extern double MultiplyingLotForFirstTime = 3.0; - this parameter answers by which number it will be increased 
                                                  (multiplied), the initial purchase lot to open a pending order
                                                  for sale, in order to pay off losses on an open purchase order
                                                  and when a certain profit is reached, close all orders 
                                                  (for purchase and sale), which are on the market and participating 
                                                  in the auction.
In a way, this is the strategy of this adviser: To open orders only for purchase, and by placing pending
orders for sale, where the trader usually puts his stop loss and if the price goes to a loss from the first open
order, then the trader has the opportunity to make money on this loss. In theory, this OrderCloseBy function is 
available in the mql4 language, but not all brokers allow it to be used in trading. Here the lot is multiplied by 
3.0 and will be equal to 0.6 lots when buying a pending stop order for sale, and TheFirstOrderToClose parameter will 
show which one at a distance from the first open buy order, a pending sell order will be opened if the current price
crosses this barrier set by you, in which you set this distance allowing your losses.
The pending sell order itself will be opened plus 50 points from the distance you specified in this parameter.

extern double IncreasingLotForSecondTime = 4.0; - this parameter answers by which number the current one will be 
                                                  increased lot (0.6) and will already be equal to 2.4 lots with an 
                                                  open pending order for sale and if, suddenly, the current price 
                                                  changes again the direction of the trend will begin to make a loss 
                                                  already on the open a sell order, but with all this, she will 
                                                  compensate for her if there is a loss with the first open buy order,
then we will try open a pending stop order to buy so that when a certain profit is reached, which is specified in the 
closelotprofit parameter, all orders in our market would be closed and we would start our tactics anew. It should
be noted here that the closelotprofit parameter works from the specified parameter and can be greater, but not less 
than the specified parameter. The pending stop order for purchase will be opened at the specified distance by the 
TheSecondOrderToClose parameter,when the current price is reached, a pending stop order for a purchase of 500 points 
from the current price will be opened and it will be designed for a sudden market fluctuation in the growth of 
purchase prices in order to open and immediately close all orders in our market in order to start your trading 
strategy anew. The TheSecondOrderToClose distance is indicated from an open pending sell order plus 500 points.

extern double IncreasingLotForThirdTime  = 3.0; - well, if everything goes wrong here, and everything doesn't go our 
                                                  way, then this parameter will be responsible for increasing the 
                                                  current lot for sale and which we will try to open at a distance 
                                                  from the very first us an open position to buy and, the lot will 
                                                  already be equal to 7.2 lots for sale. P.S: Here it is necessary 
to notice one feature that the deferred orders can be placed in a large lot, but this is not the fact that they will 
be opened in the market.

extern double IncreasingLotForFourthTime = 5.0; - well, this parameter can already be said to be a lifeline for 
                                                  the adviser and which will increase the current lot by the 
                                                  specified number and it will be equal to 36.0 lots for opening a 
                                                  purchase order. And this one the parameter interacts with The 
                                                  Fourth Order To Close parameter which indicates the distance from 
the first open order It is designed to open a closing buy order and close all orders and at the same time change
the trend for further trading, so that you can start all over again.


--- ORDER OPENING DISTANCE ---

extern int TheFirstOrderToClose  = 100; - this parameter is responsible for the distance to open a stop order for 
                                          sale plus 50 points from the first open buy order.

extern int TheSecondOrderToClose = 150; - this parameter is responsible for opening a pending stop order to buy plus
                                          500 points from an already open sell stop order.

extern int TheThirdOrderToClose  = 200; - This parameter is used to open a sell order and is calculated  
                                          the distance from the first open purchase order and located in
                                          the market.

extern int TheFourthOrderToClose = 5800; - this parameter is responsible for opening the last order of the ADVISER, 
                                           upon reaching which a purchase order will be opened in order to close
                                           all orders that are in the market and change the trend to start trading
                                           the operations are repeated.


--- CLOSE ---

extern double closelotprofit = 0.01; - this parameter is responsible for the profit at which all orders will be closed
                                       located in the market and opened by this adviser. P.S: it should be noted here
                                       such a feature that when the price fluctuates, orders will be closed more
                                       the specified parameter, but not less. That is, if you specify 10.0, then, for 
                                       now the amount of orders opened in the market will not be equal to 10.0 orders 
                                       will not be closed. 
But if the amount of orders is equal to the fluctuation of the market price: 10.01, 11.0, 12.0, 13.0 20.0, etc. then 
the orders will be closed. That is, the parameter indicates that orders will be closed at least this parameter. That 
is, if the amount of orders is 9.99, then the orders will not be closed.


-- TREND LINE ---

enum TREND - these are enumerations of parameters that indicate the period for which the trend will be calculated. 
{
   Period_M1   = PERIOD_M1,
   Period_M5   = PERIOD_M5,
   Period_M15  = PERIOD_M15,
   Period_M30  = PERIOD_M30,
   Period_H1   = PERIOD_H1,
   Period_H4   = PERIOD_H4,
   Period_D1   = PERIOD_D1,
   Period_W1   = PERIOD_W1,
   Period_MN1  = PERIOD_MN1
};
input TREND trendline; - in this parameter, you will just specify for which period you will calculate
                         the trend for the adviser to work and open the first order.

extern int Last  = 1; - this parameter indicates the minimum price of the bar. The last bar is listed here and its
                        the minimum price. If you set 0 to zero, then the calculation will take place at the current 
                        price.

extern int First = 20; - this parameter indicates the minimum price of the bar. The twentieth bar is listed here and 
                         its the minimum price. If you set 0 to zero, then the calculation will take place at the 
                         current price.

PS: Here it should be noted that the adviser begins to work on a downward trend. But it can be done that he will also
start trading on an uptrend. How? Swap the values. Where there is a unit, put twenty,
and where there is twenty, put one.



--- MAGIC NUMBER ---

extern int magic1 = 111; - this is the magic number of the first order.
extern int magic2 = 123; - this is the magic number of the second order.
extern int magic3 = 124; - this is the magic number of the third order.
extern int magic4 = 125; - this is the magic number of the fourth order.






















































Recommended products
GMMA Trade X is an EA based on GMMA. GMMA parameters such as MovingAveragePeriod1-24, MovingAverageMAShift1-24, MovingAverageShift1-24 and CandlestickShift1-24 can be adjusted. GMMA Trade X applies BTN TECHNOLOGY's state-of-the-art intelligent technology to help you create optimal results for your trades. May your dreams come true through GMMA Trade X. Good luck. = == == Inquiries = == == E-Mail:support@btntechfx.com
Magic Grid
Aliaksandr Charkes
4.5 (22)
Magic Grid is an indicator-free advisor that uses a grid strategy. The strategy is based on automatic reopening of grid pending orders, after closing their market positions (by Take-Profit, Stop-Loss or manually). Pending orders are placed with a specified step from the initial prices, which can be entered manually or generated automatically ( one time at the beginning of the trade ). The robot can trade on any time frame, on any currency pair, on several currency pairs, and on any number of di
FREE
Maximun alfa trader
Eduardo Viganotti
THE BEST US500 ROBOT IN HISTORY Maximun alpha trader is based on moving averages and a proprietary highly advanced slope reversal prediction algorithm that is simple and reliable. The Maximun alpha trader EA strategy is a combination of several indicators trends plus its own indicator that detects the exhaustion of the trend which makes it unique in its class, this indicator is unique and secret has not yet been released in the market. TO TEST THE DEMO COPY THE CONFIGURATION THAT IS PASTE IN TH
Harvest GOLD
Sayan Vandenhout
Harvest GOLD USES THE TREND WAVE INDICATOR AND IT CAN IDENTIFY THE BEGINNING AND THE END OF A NEW WAVE TREND MOVEMENT. AS AN OSCILLATOR, THE INDICATOR IDENTIFIES THE OVERBOUGHT AND OVERSOLD ZONES. IT WORKS GREAT TO CATCH THE SHORT TERM PRICE REVERSALS AND USES A MARTINGALE STRATEGY TO CLOSE ALL TRADES IN PROFIT. USE DEFAULT SETTINGS ON H1 OR HIGHER TIME FRAME ON ANY PAIR FOR MORE ACCURATE TRADES WHY THIS EA : Smart entries calculated by 3 great strategies The EA can be run on even a $
Magic EA MT4
Kyra Nickaline Watson-gordon
3 (1)
Magic EA is an Expert Advisor based on Scalping, Elliot Waves and with filters such as RSI, Stochastic and 3 other strategies managed and decided with the robot smartly. Large number of inputs and settings are tested and optimized and embedded in the program thus inputs are limited and very simple. Using EA doesn't need any professional information or Forex Trading Knowledge. EA can trade on all symbols and all time frames, using special and unique strategies developed by the author. The EA
TLFv1
Thanakorn Suphakornthongchot
Short-Term Fibonacci Trading Strategy with Clear TP and SL Strategy: Timeframe: M15 Indicator: Fibonacci Retracement Fibonacci Levels: Buy Entry: 38.2%, 50.0% Sell Entry: 61.8%, 78.6% TP/SL Placement: SL: Below/above the Fibonacci level used for entry Minimum Capital: $100 Instruments: Metals: Gold (XAUUSD) The recommended spread starts from 10 to 25, and should not exceed 28.
торговая система с риском 1% чем больше денег на счете тем больше лот но риск 1% Начальный депозит 50.00 Спред 10 Чистая прибыль 6.71 Общая прибыль 51.97 Общий убыток -45.26 Прибыльность 1.15 Матожидание выигрыша 0.02 Абсолютная просадка 26.79 Максимальная просадка 29.21 (55.47%) Относительная просадка 55.47% (29.21) Всего сделок 427 Короткие позиции (% выигравших) 219 (72.60%) Длинные позиции (% выигравших) 208 (72.12%) Прибыльные сделки (% от всех) 309 (72.37%) Убыточные сделки (%
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
Dr Trade Pro MT4
Julia Lopez
5 (3)
Introducing Dr Trade Pro, a meticulously designed EA crafted for intelligent and consistent trading. Our expert advisor relies on precision, utilizing trend recognition and accurate market analysis to execute trades seamlessly. Dr Trade Pro is equipped with a strategic backup plan for each trade, emphasizing profitability while minimizing potential losses. What sets Dr Trade Pro apart is its adaptability to diverse market conditions, making it resilient to news and market volatility – a crucial
Gyroscopes
Nadiya Mirosh
Gyroscope        professional forex expert   (for EURUSD, GBPUSD, USDJPY, AUDUSD, USDCHF, EURGBP, EURJPY, NZDUSD, USDCAD, EURCHF, AUDJPY, CADJPY pairs)   alyzing the market using the Elliot Wave Index. Elliott wave theory is the interpretation of processes in financial markets through a system of visual models (waves) on price charts. The author of the theory, Ralph Elliott, identified eight variants of alternating waves (of which five are in the trend and three are against the trend). The mo
VandoraFX Gold
Sayan Vandenhout
VANDORA FX USES THE TREND WAVE INDICATOR AND IT CAN IDENTIFY THE BEGINNING AND THE END OF A NEW WAVE TREND MOVEMENT. AS AN OSCILLATOR, THE INDICATOR IDENTIFIES THE OVERBOUGHT AND OVERSOLD ZONES. IT WORKS GREAT TO CATCH THE SHORT TERM PRICE REVERSALS AND USES A MARTINGALE STRATEGY TO CLOSE ALL TRADES IN PROFIT. USE DEFAULT SETTINGS ON H1 OR HIGHER TIME FRAME ON ANY PAIR FOR MORE ACCURATE TRADES WHY THIS EA : Smart entries calculated by 5 great strategies The EA can be run on even a $20
Bar Boss
Iurii Tokman
5 (1)
The Expert Advisor uses the FletBoxPush indicator for market analysis and for determining trading signals. The indicator is built into the Expert Advisor, there is no need to additionally run it on a chart. The EA trades breakouts of certain levels determined as flat borders. The EA uses Stop Loss. Description of EA Parameters TimeFrames chart period required for the indicator colour - the color of the price zone defined as flat, a setting for the indicator Rectangle - show price zones defined
This automated trading robot uses the capabilities of the macd indicator to create a grid strategy. The algorithm creates a grid strategy at overbought and oversold levels and in times of high volatility. This makes it susceptible to all price fluctuations. The Close Money input is the total amount of earnings in the cycle. We define it as the total take profit amount in the cycle. It has the ability to open more cycles in short periods. However, you can use the robot in medium-term trading. Rea
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
| 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
Goal Time
Mourad Ezzaki
GOAL TIME is an expert advisor based on the notion of time, it studies the change of price according to time, and it finally detects the best time to execute a good order. The EA is based on an indicator that draws a price curve in relation to time, this curve is deduced by an algorithm that analyzes old data. Then, the EA exploits the generated curve and executes the correct order. In case of incorrect choice, the EA has the mission to limit the losses. After a thorough study of this strategy o
Future EA MT4
Mansour Babasafary
4.43 (7)
This expert is the newest expert of our team. We want to implement the latest market strategies in it. A long-term project of several years If you want to be a partner in the development of this expert, you can buy it at a very low price. An expert based on mixed strategies We will combine several strategies in this expert Price action, patterns, waves, maybe even artificial intelligence and... Attributes of Version 1.0: Can be used in the GBPUSD and USDCHF currency pair Can be used in
LL Grid EA MT4
Leopoldo Licari
********** CHRISTMAS OFFER - LIMITED TIME ONLY 30$ ********** 6 COPIES OUT OF 10 LEFT AT $35  ---> NEXT PRICE $55 UPDATED v1.8 IS OUT ON MARCH 2022 " I built this EA based on my past trading experience, on my personal needs, on what I already had in my hands, on those useful functions that I needed. I am happy to share it with you at a very small cost considering the potential and the time dedicated to developing it. " PLEASE READ ALL THE DESCRIPTION BEFORE USE IT -  Grid EA with  selectab
This is a fully automatic trading robot for the EURCHF currency pair.  But this robot can be configured to trade for other currency pairs. TURBO SCALPER PRO using a trend following strategy based on MACD, Parabolic SAR and Moving Average indicator. The robot works in full automatic mode, on the M1 timeframe. The trader does not need to set it up for trading. Open EURCHF and attach TURBO SCALPER PRO only to EURCHF M1 using the default settings. Advantages of the TURBO SCALPER PRO :  We show y
Black Out EA
Jason Thato Hartley
Thank you for visiting us. We would like to introduce our new BLACK OUT EA which comes along with a moving average indicator for better trading This EA open and closes trades for you, no need to stress yourself. You can trade on any broker using any time frame . there are no restrictions!! You can easily increase your Lot size on the EA settings Backtest was done for two months. stay tuned for more !!!
Universal MT4 MA
Vladimir Gribachev
Trading robot on the Moving Average indicator This is a simplified version of the trading robot , it uses only one entry strategy (the extended version has more than 10 strategies) Expert Benefits: Scalping, Martingale, grid trading. You can set up trading with only one order or a grid of orders. A highly customizable grid of orders with a dynamic, fixed or multiplier step and trading lot will allow you to adapt the Expert Advisor to almost any trading instrument. Drawdown Recove
ET9 for MT4
Hui Qiu
5 (3)
ET9 New on the Market, Launch promo! Only a few copies left at: $699 Next price: $799 Final price: $1599 The Best  Expert Advisor  on   XAUUSD   any timeframes! ET9  for MT4 Updated 4.60 !!   Important update: Merge Dragon Ball's H4 breakout strategy, Optimize parameters Include Free  ET1 for MT4:  https://www.mql5.com/en/market/product/113219 Dragon Ball MT4 Updated v1.60 !!  https://www.mql5.com/en/market/product/116521 Descriptions ET9 for MT4 is a powerful automated trading program with
The algorithm of the adviser's work: When the Expert Advisor is launched at a specified distance from the price (first_step), BuyStop and SellStop orders are placed. Further, depending on which way the price went, one of them becomes market, and the other begins to crawl after the price. When the price rolls back, it also becomes market. If we have reached a set profit in some direction, the order is closed and a creeping pending order of the same direction is placed again. If the profit is n
Magic Win
- Reni
4.33 (3)
EA MAGIC WIN is the advanced trading system which was tested for long on different market conditions with heavy load tests. Based on our custom indicator which is backed with mean reversion concept along with few other algorithm this products fits itself into the current market conditions and act accordingly.  Supported currency pairs: EURUSD, GBPUSD, AUDCAD, AUDNZD, NZDCAD Recommended TF: M15. Setfile can be downloaded from here : Click Here Live Signals https://www.mql5.com/en/signals/2
Super grid nineth (ninth) generation is another grid type EA on this huge forex system population, this EA not using any indicator to avoid any fake signaling to open or closing position orders. This EA will open pending order stop and limit in the first time EA run, then maintain all opened order with unique way to balancing account free margin and make equity growth. This EA have unique system not like anyother grid EA, with correct setup and run on max 3 pairs in one account, this EA capable
***        10 years profitable backtest on EURUSD (Jan 2010 - Jan 2020)    ***    ***        10 years profitable backtest on GBPUSD (Jan 2010 - Jan 2020)    ***   Just try it, in use by myself! USE ON 5 DIGIT BROKERS (1.12345)            5 MIN FRAME ONLY DEFAULT SETTINGS ARE  READY FOR USE            DESIGNED FOR   EURUSD GBPUSD others possible see backtests    The EA calculates promising entry points according a carefully developed algorithm, based on moving averages and many other facto
EA work for EURUSD in timeframe M15. USE stoploss, The account will never break out. Lot risk can set auto or fix: signals see also:  (auto,   Lot_Auto_Equity  = 100 ) https://www.mql5.com/en/signals/1785354 para setting: Lot_mode_select_Fix_or_Auto,when set to Auto,must use " Lot_Auto_Equity " value,example every 100usd , lot=0.01 Lot_Fix,Lot will be still one value,example 0.01 Lot_Auto_Equity,Associated to parameter " Lot_ mode_ select_ Fix_ or_ Auto " . enjoy.
Mk R
Can Pei Pu
MK_R It is based on contrary patterns for EURUSD.  Basically, it will entry using the condition of 1 buy wave and 6 sell wave of Granville's law. The EA does not use indicators, grid, martingale, arbitrage.  The EA has been proven to be profitable in the six months of 2020 and is particularly suitable for the current EURUSD market since mid-December 2020. Monitoring: https://www.mql5.com/en/signals/789229 Timeframe is M5. EA needs M1 chart,M5 chart,M15 Chart,H1 chart,H4 chart. Maxium Sp
Matrix Arrow EA MT4
Juvenille Emperor Limited
5 (8)
Matrix Arrow EA MT4 is a unique expert advisor that can trade the Matrix Arrow Indicator's MT4 signals with a trade panel on the chart, manually or 100% automatically.  Matrix Arrow Indicator MT4 will determine the current trend at its early stages, gathering information and data from up to 10 standard indicators, which are: Average Directional Movement Index (ADX) Commodity Channel Index (CCI) Classic Heiken Ashi candles Moving Average Moving Average Convergence Divergence (MACD) Rel
Trend BtD
Roman Meskhidze
LAUNCH PROMO Next price:        $249 The price will be rise to limit the number of users for this strategy The "Trend BtD" Expert Advisor is a representative of robots trading breakout levels. Levels built automatically. The uniqueness of the advisor is that it work WITHOUT averaging and using the martingale principle. ALL orders have StopLoss and TakeProfit. VERY IMPORTANT: Always load SET Files for each pair! Adjust Lot size to yours deposit! HOW TO TEST: 1. Choose  H1  TimeFrame 2. Load my  
Buyers of this product also purchase
The Gold Reaper MT4
Profalgo Limited
4.86 (29)
PROP FIRM READY! ( download  SETFILE ) LAUNCH PROMO: Only a few copies left at current price! Final price: 990$ Get 1 EA for free (for 2 trade accounts) -> contact me after purchase Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal Welcome to the Gold Reaper! Build on the very succesfull Goldtrade Pro, this EA has been designed to run on multiple timeframes at the same time, and has the option to set the trade frequency from very conservative to extreme volatil
Gold Trade Pro
Profalgo Limited
4.59 (22)
LAUNCH PROMO: Only a few copies left at current price! Final price: 990$ Get 1 EA for free (for 2 trade accounts) -> contact me after purchase 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 Parameter overview Gold Trade Pro joins the club of Gold trading EA's, but with one big difference: this is a real trading strategy. What do I mean with "real trading strategy"?  As you probably
GoldPulse AI
Babak Alamdar
5 (10)
Buy not a backtest, but a real trading system:     Live Signal 1     Live Signal 2       Live Signal 3  (only XAUUSD/Gold) This price is temporary for the duration of the promotion and will be raised shortly Get 1 EA for free -> contact me after purchase There are only a few copies left at the current price, the next price is -->> 1480 $ Welcome to the GoldPulse AI Hey, I'm GoldPulse AI! This is the first smartest robot that trades gold or XAU with full pairs like XAUUSD, XAUEUR, XAUGBP,
HFT Prop Firm EA
Dilwyn Tng
4.98 (643)
HFT Prop Firm EA is  also known as Green Man due to its distinctive logo, is an Expert Advisor (EA) crafted specifically for overcoming challenges or evaluations from proprietary trading firms (prop firms) that permit High-Frequency Trading (HFT) strategies. For limited period: Free utilities worth $198 when you buy HFT Prop Firm EA MT5 version:  https://www.mql5.com/en/market/product/117386 Passing HFT Challenge Performance Monitor (starting at $200): 1) Broker: IC Markets Account Numb
FT Gold Robot MT4
Marzena Maria Szmit
5 (11)
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
TrendMaster FX MT4
Chen Jia Qi
5 (11)
Introducing our MT5 EA: Designed with advanced algorithms and utilizing deep learning technology, our Expert Advisor (EA) is crafted to assist you in the intricate world of forex trading. The system analyzes market behaviors and conducts transactions based on specific criteria, empowering you to engage with market trends more effectively. With the backing of nearly a decade of data, the EA employs deep learning to examine past market conditions, aiming to provide enhanced decision-making. Recom
Quantum Emperor MT4
Bogdan Ion Puscasu
4.91 (128)
Introducing   Quantum Emperor EA , the groundbreaking MQL5 expert advisor that's transforming the way you trade the prestigious GBPUSD pair! Developed by a team of experienced traders with trading experience of over 13 years. IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. ***Buy Quantum Emperor EA and you could get Quantum StarMan, Quantum Trade EA or Quantum Gold Emperor for free !*** Ask in private for more det
One Gold MT4
Stanislav Tomilov
4.82 (11)
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
AW Recovery EA
AW Trading Software Limited
4.29 (69)
The Expert Advisor is a system designed to recover unprofitable positions. The author's algorithm locks a losing position, splits it into many separate parts, and closes each of them separately. Easy setup, delayed launch in case of drawdown, locking, disabling other Expert Advisors, averaging with trend filtering and partial closing of a losing position are built into one tool. It is the use of closing losses in parts that allows you to reduce losses with a lower deposit load, which ensures saf
Strategy Introduction The EA will find the best entry and exit points based on the data trained by the neural network and the current market trend. It includes multiple loss exit strategies to ensure capital safety. Because the market is full of uncertainties, it is impossible to enter at the most ideal point every time. Our EA uses a unique batch entry method, adding up to 5 entry points. Even occasional misjudgments can quickly recover subsequently. Each order has a fixed stop loss (SL) and t
Price reduced for 7 days to $230 Then the price will be $430 PowerFul 1 Min Scalping System - Automatic Robot Scalper for Trade on the XAUUSD currency pair (the robot trades in other currency pairs, but gets the best results in gold). Recommended time periods M5 . The minimum initial balance is from $ 500. This robot automatically determines the points of price turning and sets several deferred orders in the likely future direction of the trend. If the price does not unfold in the right directi
Hercules AI MT4
Aleksandr Chebotaev
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
Oracle MT4
Stanislav Tomilov
4.38 (8)
Oracle Trading Expert the Quintessence of Modern Programming Technologies Expert Oracle for MetaTrader, trading on GBPUSD and Gold, represents the quintessence of modern programming technologies. Our unique proprietary methods and developments are based on advanced machine learning concepts, making our trading expert truly one-of-a-kind. We offer cutting-edge modules and neural architecture that embody innovative advancements in financial programming. Our algorithms rely on in-depth data analysi
Quantum Algo Trading MT4
Lo Thi Mai Loan
5 (4)
The current price is the promotional price and will soon increase. The final price for the product is: $1993. There are only a few copies left at the current price, the next price is $563. Check out the live results here: Personal live signal:   [Click Here] Prop live signal:   [Click Here] $50K personal fund live signal: [Click Here] MT5 version here:   [Click Here] Payout proof and Ultimate combo deal :   [Click here] How to install | Download SetFile Welcome to Quantum Algo Trading MT5 E
Quantum Gold Emperor MT4
Bogdan Ion Puscasu
5 (5)
Introducing   Quantum Gold Emperor EA , the groundbreaking MQL5 expert advisor that's transforming the way you trade the prestigious XAUUSD (GOLD )pair! Developed by a team of experienced traders with trading experience of over 13 years. IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. ***Buy Quantum Gold Emperor EA and you could get Quantum Trade EA for free !*** Ask in private for more details Live signal :  
US30 Scalper EA MT4
Lo Thi Mai Loan
5 (4)
Launch promo! Only a few copies left at current price! Next price: 593$ Final price: 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 More analytics:  https://www.mql5.com/en/blogs/post/756452 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
FXMachine
Alexander Kozachuk
4.75 (12)
Statistics on a real account since 2020 Backtest for the last 13 years Low drawdown strategy Multi-currency algorithm Compatible with any broker Proven drawdown control system Trading on a real account since 2020 : Click Here Trading on USDCAD, EURGBP, GBPUSD, EURUSD: Click Here Trading on EURGBP: Click Here Trading on GBPUSD: Click Here Full backtests of the FXMachine EA are available for download here: Click Here About us: The development and support of FXMachine and our oth
Bitcoin Wizard
Sugianto
3 (2)
Bitcoin Wizard is designed for trading Bitcoin by placing pending orders based on high low at certain periods by taking advantage of strong momentum.   Why Bitcoin Wizard : Bitcoin Wizard is a fully automatic trade system, trade 24/7. Does not use any risky strategies such as hedging, martingale, grid or multiple orders. Every trade is protected by a stoploss of 100 pips. Real Signal | Real Signal 2 | Setfile :  Download here  | MT5 version | Backtest Report   |   Broker Spread Comparison SET U
Dark Algo
Marco Solito
4.77 (56)
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 .
Boring Pips MT4
Thi Thu Ha Hoang
5 (12)
Have you ever wondered why most expert advisors are not effective in live trading, despite their perfect backtest performance? The most likely answer is Over-fitting . Many EAs are created to ‘learn’ and adapt perfectly to the available historical data, but they fail to predict the future due to a lack of generalizability in the constructed model. Some developers simply don't know about the existence of over-fitting, or they know but don't have a way to prevent it. Others exploit it as a tool to
Gold Trading Algo
Ho Tuan Thang
4.22 (9)
ONLY 3 COPIES OUT OF 10 LEFT AT $299! After that, the price will be raised to $399. - REAL SIGNAL: Default Setting: https://www.mql5.com/en/signals/2206758 5k Fixed Lot:  https://www.mql5.com/en/signals/2217326 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 lates
Diamond PRO
Fanur Galamov
5 (15)
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
Diamond Titan FX MT4
Lo Thi Mai Loan
5 (1)
Launch promo: SALE 30% OFF! Only 2 sales left to buy at the current price. Next price: $993 Free  get US30 Scalper EA and Quantum Algo EA -> contact me after purchase 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 Passed Prop Challenge Trade History:  https://www.mql5.com/en/blogs/pos
Gold Garden MT4
Chen Jia Qi
5 (4)
Deep learning is reshaping gold trading, with intelligent assistants tending to trading gardens like skilled gardeners. The "Gold Garden" EA employs deep learning intelligent technology and 20 years of data training to significantly enhance strategy performance. With it, trading becomes more effortless and intelligent. Let's join hands to usher in the intelligent era and transform trading into a blissful garden. This will be your exclusive Gold Garden Steward. The MT5 version: Gold Garden MT5
AI Nodiurnal EA
Ugochukwu Mobi
AI Nodiurnal EA is an advanced Forex robot that leverages cutting-edge machine learning technology to optimize trading strategies and enhance performance in the dynamic foreign exchange market. The term "Nodiurnal" reflects its ability to adapt and operate not only during the typical diurnal (daytime) trading hours but also during non-standard periods, providing a continuous and adaptive approach to forex trading. Settings : Default settings on   Currency Pair :  EURUSD H1 . Special setting is
Fenghuang EA utilizes clustering principles in machine learning to analyze data, identifying groups of objects or events with similar features or relationships. It uncovers hidden patterns and categorizes objects by similarities, aiding in the discovery of causal relationships. The EA allows for in-depth data analysis, highlighting significant relationships without risky techniques like martingale, netting, or scalping, making it compatible with various brokerage environments. Read more about t
Daytrade Pro Algo
Profalgo Limited
5 (6)
Launch Promo: Limited number of copies available at current price Final price: 990$ NEW: get 1 EA for free! (for 2 trade accounts) Ultimate Combo Deal   ->   click here LIVE RESULTS:   https://www.mql5.com/en/signals/1949810 JOIN PUBLIC GROUP:   Click here Set Files Welcome to DayTrade Pro Algo!  After years of studying the markets and programming different strategies, I have found an algorithm that has everything a good trading system needs: It is broker independent It is spread independ
Bitcoin Robot MT4
Marzena Maria Szmit
5 (8)
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
HFT Prop EA
Manpreet Singh
4.95 (250)
HFT PROP EA is the High Frequency Trading Expert Advisor (EA/bot) designed to pass proprietary trading firms (prop firms) challenges which use stop orders to enter the trades when market is trending, It is basically designed for US30 just at opening of US30 in New York Session till it remain in its trending nature for 15-30 minutes, and using HFT PROP EA you can pass the challenge within few minutes for prop firms who doesn't have any lot size cap. Special benefit for buyers who share their re
Infinity Trader EA
Lachezar Krastev
5 (2)
ONLY TODAY! --> -70% OFF + BONUS EA: NEWS Scope EA PRO with AMAZING results! NOTE: Regular Price: $497 - The offer ends today!  Click here to check News Scope EA PRO results! Infinity Trader EA seamlessly integrates the strengths of Chat GPT and Gemini AI, providing unparalleled market insights and in-depth fundamental analysis. It actively adapts to ever-changing market conditions, identifying statistically significant price patterns with remarkable predictive power. This ensures you pinpoint
More from author
Hello everyone.  I want to tell you a little bit about this panel for trading in the financial foreign exchange market. The panel is written in the MQL4 programming language and is designed to help open market orders for certain positions. It works with both regular and pending orders. That is, it opens buy and sell orders, such as Buy, Sell, BuyLimit, SellLimit, BuyStop, SellStop. It also opens a network of pending orders and, including grid orders, that is, both limit pending orders and sto
This Expert Advisor uses Moving Average with certain parameters to open orders. He will always open the first deal to buy, but, with certain settings, he can only open deals to sell. To close orders, he uses a profit after which he will close all orders and start his work again. So far, it works as a Martingale and as a networker. extern double Lots                 = 0.20 ; - - From this parameter, which is the value of the currency at which you will to trade, the Expert Advisor begins its work.
This Expert Advisor is actually a martingale and works with trailing only for BUY orders with Magic1. For all other oders, trolling does not work. Depending on the EnteringMarket parameter, the EA will open orders less frequently or more often. It depends on the distance of the moving averages from each other and the greater this distance, the less often a buy order will be opened. The meaning of the strategy is simple: A purchase order is opened, and depending on how the price behaves, which we
MartinZ
Iurii Kuksov
This is an ordinary adviser working on the martingale system. Places orders depending on the intersection of the average price. extern double Lots = 0.01 ; - this is the lot price at which the first buy and sell orders will be opened. extern int TakeProfit = 400 ; - this is the price in points at which orders will be closed with profit. extern int TPB = 300 ; - this is the price in points at which the closing price of two or more orders will be                                   with profit for p
The ADVISOR works using the martingale system. He opens deals according to the Moving Average schedule. To open, it uses PERIOD M15 and a different price calculation period and with a different shift. extern double Lots = 0.20 ; - this is the lot price at which the first buy and sell orders will be opened. extern int TakeProfit = 400 ; - this is the price in points at which orders will be closed with profit. extern int TPB = 300 ; - this is the price in points at which the closing price of two o
extern double Lots       = 0.20 ; extern int TakeProfit    = 400 ; extern int TPB           = 300 ; extern int TPS           = 350 ; extern int StopLoss      = 1000 ; extern int Slippage      = 50 ; // extern int TrallingStop  = 30 ; //30     extern int TrallingStep  = 50 ; //50     int timeprev;   //double SL;         // extern int StepB         = 250 ; extern int StepS         = 250 ; extern double Multiplier = 3 ; extern int CloseBalans   = 100 ; extern double GlavBalans = 100000 ; extern dou
extern double Lots       = 0.20 ; extern double LotsStop   = 0.08 ; extern double LotsLimit  = 0.08 ; extern int TakeProfit    = 400 ; extern int TPB           = 300 ; extern int TPS           = 350 ; extern int TPBstop       = 300 ; extern int TPSstop       = 500 ; extern int TPBlimit      = 400 ; extern int TPSlimit      = 600 ; extern int TPBlimit2     = 400 ; extern int TPSlimit2     = 500 ; extern int StopLoss      = 1000 ; extern int Slippage      = 50 ; // extern int TrallingStop  = 100 ;
Filter:
No reviews
Reply to review