Sure Fire Hedging Strategy

4

This is an old and well-known strategy from the book "Sure Fire Hedging Strategy", but have more Advance Parameter than anyother old style Hedge Averaging EA.

This strategy is using a hedge order with a higher lot size for the last (opposite) order and will receive profit if your free margin is huge enough to handle.

A good money management is needed for using this system.

No Pending order used on this EA, because using pending order will have more high risk order slipage and Spread can be difficult to maintain, because many broker have different default amount of delay, spread and slipage.

And this EA the only one on mql5 market that have auto averaging exit at some choosed total opened order after hedging is created, so if hedge system is not enough to closing all, EA will automatically use Averaging exit as final option to closing all at profit.

Adding new parameter  on last version (ver 96.16, Updated on 13 August 2024):
Function is to closing all at profit when Account profit in total is met, for easy profit controling when EA trade on more than 1 pairs in one account

Set_12 = --Closing All Symbol At Total Profit--;
Closing_All_Symbol = false;
Closing_All_At_Profit = 100;

Parameters : 

( On Bold Text can be change depend your need )

Tester / Backtest First Initial Balance setup,

  • Set_0, Default is --Type Your BACKTEST First Initial Balance--, No need to change, just information for below parameter.
  • Tester_First_Deposit, Default is 100000, If your Backtest Initial Balance is 10000, Change this parameter to 10000.


      Time filter setting, everyday EA will start from Start_Hour to End_Hour parameter,

      use Broker Server Time, EA will not active outside start to end hours.

      • Set_1, Default is --Time Filter For First Open Order--, No need to change, just information for below parameter.
      • Set_1_Noted, Default is --Using Broker Server Time--, No need to change, just information for below parameter.
      • Start_Hour, Default is 1, EA will start active at 01:00 broker server time.
      • End_Hour, Default is 22, EA will not active at 22:00 broker server time.


      First Open setting (Automatic by EA depend EA internal HiLo Price action or indicators signaling).

      1 pair can be run 2 chart (same pair), each chart must be have different magic number setup and order comment setup.

      • Set_2, Default is --Auto First Order-- , No need to change, just information for below parameter.
      • First_Lot, Default is 0.01, First open order lot size.
      • Magic_Number_Sell, Default is 2222, Magic Number for First open sell, not for next hedge order.
      • Magic_Number_Buy, Default is 8888, Magic Number for First open buy, not for next hedge order.
      • Buy__Order_Comment, Default is Buy 8888, order comment of all opened order buy from EA.
      • Sell__Order_Comment, Default is Sell 2222, order comment of all opened order sell from EA.


      Hedge setting, must be use Point value, example need to hedge at 50 pips, you have to set Hedge_Distance parameter to 500 ( 10 Point is 1 Pip),

      EA will failed at start if your hedge distance parameter set below 100 (10 pips).

      Auto_Gap_and_TP is use automatic hedge_Distance based Years_Span parameter (Highest to Lowest in 3 Years devide by Max_Total_Open = Automatic Hedge_Distance), 

      with AutoGap is smart way to avoid too many opened order or too less opened order on your account.

      Activate_Averaging if true, and _Activate_At_Total_Open is 3 in default, mean EA will automatically change strategy from Hedging To Averaging System (Anti Hedge) at level 3 of opened order,

      (Level 1 to Level 3 is Normal Hedging system, Level 4 to Max_Total_Open is Averaging system).

      • Set_4, Default is --Hedging Function-- , No need to change, just information for below parameter.
      • Enable_Hedge, Default is true, set to false if no need hedge/averaging open position.
      • Max_Total_Open_, Default is 15, total opened order from very first open to maximum is 15 total order.
      • Auto__Hedge_Distance, Default is --Auto Hedge/Anti Hedge Distance, Many Years span-- , No need to change, just information for below parameter.
      • Auto_Gap_and_TP, Default is false, set to true to use automatic hedge distance value. based below parameter.
      • Years_Span, Default is 3, 3 mean 3 years span highest to lowest span in 3 years.
      • Set_4a, Default is --Hedge Distance TP/SL In Points-- , No need to change, just information for below parameter.
      • Hedge__Distance, Default is 800, mean Hedge distance/ gaps of hedge is 80 pips, if set below 100 point (10 pips), EA will not working.
      • Hedge_TP, Default is 800, 800 mean TP at 80 pips.
      • Hedge_SL, Default is 1600, 1600 mean SL at 160 pips.
      • Set_4b, Default is --Marti Hedge Lot Management-- , No need to change, just information for below parameter.
      • Set_4b_note_1, Default is --If Use_MartiDefault isfalse, next lot is last lot+Add_Lots-- , No need to change, just information for below parameter.
      • Use_Marti, Default is true, set to false will make EA not using martingale, but will use Add Lot for next order lot size.
      • First_Hedge_Lot, Default is 3.0, for martingale of 2nd open order only.
      • Next_Hedge_Lot, Default is 2.0, for martingale of 3rd open order and next.
      • Add_Lots, Default is 0.02, next lot size of next open order to hedge/averaging is Last opened order lot + 0.02.
      • Set_4b_note_2, Default is --Activate Averaging At choosed Total Open-- , No need to change, just information for below parameter.
      • Set_4b_note_3, Default is --Averaging is Anti Hedge System-- , No need to change, just information for below parameter.
      • Set_4b_note_4, Default is --Averaging Gaps Distance Default is Hedge__Distance X 2-- , No need to change, just information for below parameter.
      • Activate_Averaging, Default is false, set to true will make EA automatically change system from hedging to averaging at total order (below parameter).
      • _Active_At_Total_Open, Default is 3, mean at order level 4 to maximum open parameter EA will change strategy to averaging, not use hedging anymore.


      setting of targeted total profit in money to closing all opened order, or use percent target.

      To use Percent Target, Both Activate_Profit_Target & Percent_Target set to true.

      and STEALTH_TP_SL setup is priority of all if Profit target and or percent target value is more than Hedge_TP.

      • Set_5, Default is --Profit Target & Target Percent-- , No need to change, just information for below parameter.
      • Set_5_Note_1, Default is --If Activate_Profit_Target is true,Profit target will be used-- , No need to change, just information for below parameter.
      • Set_5_Note_2, Default is --To use Percent Target, Both Activate_Profit_Target & Percent_Target set to true-- , No need to change, just information for below parameter.
      • Set_5_Note_3, Default is --Profit Target In (Money) Account Currencies-- , No need to change, just information for below parameter.
      • Activate_Profit_Target, Default is false, set to true to activate profit target in money value based account currencies.
      • Profit_Target, Default is 2, mean EA will closing all opened order at total profit equal or above 2 usd (Account currencies i.e USD)
      • Set_5_Note_4, Default is --Target Percent From Current Balance-- , No need to change, just information for below parameter.
      • Percent_Target, Default is false, set to true to activate percentage target.
      • Target_Percent, Default is 0.2, mean at profit 0.2% from current balance, EA will closing all opened order.


      STEALTH_TP_SL Setting will automatically eliminates all ordinary SL and TP Line on chart, Has internal calculation to closing all opened order at nearly similar if all order hit TP/SL, (Other mean All TP and SL is Hidden by EA).

      Scalper mode only for first open order, default is 2, mean 2 times of current spread EA will closing opened first position at positive profit value.

      Trailing stop is unique, because all opened order will modified by trailing stop at positive profit automatically, so when price is retrace at some positive value of profit,all open order have TP/SL modified by trailing stop function.

      EA will automatically choose trailing start and trailing step as ordinary trailingstop , so no need to set for trailing start and trailing step (No need both parameter),  TrailStop_Starting_Lotsize  parameter default is 0.01, mean Trailing stop function will work from lot size equal or higher than 0.01, if you set to 0.15, mean trailingstop function will active from lot size 0.15 an above 0.15.

      • Set_6, Default is --STEALTH HIDDEN TP/SL-- , No need to change, just information for below parameter.
      • STEALTH_TP_SL, Default is false, Set to true for hide all TP and SL setting.
      • Scalper_Mode, Default is --Scalper Mode For 1st Open Position-- , No need to change, just information for below parameter.
      • Note_Scalper_Mode, Default is --Only work if STEALTH_TP_SL set to true-- , No need to change, just information for below parameter.
      • Scalper_Mode_, Default is true, set to false will make first open order closed at TP target.
      • Spread_X_Times_Value, Default is 2, first open will closed at 2x current spread
      • Note_Spread_X_Times, Default is --TP of 1st Open is Spread_X_Times_Value X Spread-- , No need to change, just information for below parameter.
      • Trailing, Default is --Auto TrailingStop-- , No need to change, just information for below parameter.
      • TRAILING_STOP_Enable, Default is true, change to false for deactivate auto trailing stop.
      • TrailStop_Starting_Lotsize, Default is 0.01, Change to i.e 0.24 will make auto trailingstop working from last opened order with lot 0.24.
      • Note_Trailing_Stop, Default is --TrailingStop Function Only if STEALTH_TP_SL Default is true-- , No need to change, just information for above parameter.


      Max_Spread_Allowed is Maximum Allow EA to work, if current spread above that setting, EA wont work to avoid Hedge distance failure.

      if Max_Spread_Allowed not changed, EA will automatically set Max_Spread_Allowed to 2-3 times of current spread at EA start.

      • Set_9, Default is --Spread Filter in Point-- , No need to change, just information for below parameter.
      • Max_Spread_Allowed, Default is 10000000, Can be change to make EA stop working if spread above this value.


      Day filter setting, if i.e Monday set to true, EA will not work at Monday.

      • Set_10, Default is --Day Filter-- , No need to change, just information for below parameter.
      • Set_10_Noted, Default is --True To Activate-- , No need to change, just information for below parameter.
      • Monday, Default is false, Set to true will make EA not working at monday.
      • Tuesday, Default is false , Set to true will make EA not working at tuesday.
      • Wednesday, Default is false , Set to true will make EA not working at wednesday.  
      • Thursday, Default is false , Set to true will make EA not working at thursday.
      • Friday, Default is false , Set to true will make EA not working at friday.
      • Saturday, Default is false , Set to true will make EA not working at saturday.
      • Sunday, Default is false , Set to true will make EA not working at sunday.


      Signaling option to decide buy or sell open for first open Position.

      if use Moving Average and ADX, EA have unique opening first and closing order, because once any opened order closed, will not make new first when signal buy/sell not change.

      • Signaling_Indicators, Default is --EA use below parameter to open Auto First Open Buy/Sell-- , No need to change, just information for below parameter.
      • Signaling_Option, Default is --TRUE for HiLo H4 & M1 Breakout, FALSE for MA & ADX Indicators-- , No need to change, just information for below parameter.
      • Use_Hi_Lo_Breakout, Default is true
      • MA_ADX_Continuitas_Signal, Default is --Signal Continue-- , No need to change, just information for below parameter.
      • Continuitas_Signal, Default is false, if set to true, MA and ADX false signal of buy/sell will be filtered and ignored.
      • MA_1_Setup, Default is --MA 1 Setup-- , No need to change, just information for below parameter.
      • Period_MA_1, Default is 200
      • MA_Methode_1, Default is MODE_EMA
      • MA_Price_1, Default is PRICE_CLOSE
      • TF_MA_1, Default is PERIOD_CURRENT
      • MA_2_Setup, Default is --MA 2 Setup-- , No need to change, just information for below parameter.
      • Period_MA_2, Default is 100
      • MA_Methode_2, Default is MODE_EMA
      • MA_Price_2, Default is PRICE_CLOSE
      • TF_MA_2, Default is PERIOD_CURRENT
      • MA_3_Setup, Default is --MA 3 Setup-- , No need to change, just information for below parameter.
      • Period_MA_3, Default is 21
      • MA_Methode_3, Default is MODE_EMA
      • MA_Price_3, Default is PRICE_CLOSE
      • TF_MA_3, Default is PERIOD_CURRENT
      • MA_4_Setup, Default is --MA 4 Setup-- , No need to change, just information for below parameter.
      • Period_MA_4, Default is 8
      • MA_Methode_4, Default is MODE_EMA
      • MA_Price_4, Default is PRICE_CLOSE
      • TF_MA_4, Default is PERIOD_CURRENT
      • ADX_Setup, Default is --ADX Setup-- , No need to change, just information for below parameter.
      • TF_ADX, Default is PERIOD_CURRENT
      • Period_ADX, Default is 14
      • Price_ADX, Default is PRICE_CLOSE
      • Level_ADX, Default is 17


      this setting to shows display text info on left chart and right chart.

      some information i.e total open and total lot traded are available to see if this function set to true.

      • Set_11, Default is --Right_Chart_Display-- , No need to change, just information for below parameter.
      • Right_Chart_Display, Default is false, Change to true if want to display information text on right and left chart.






      Why using a (STEALTH_TP_SL set to true) hidden TP/SL is more effective:

      • It allows the EA to avoid any widening spread from a broker, slippage, requotes and some cheat from broker. So, with a target profit or percentage it is not a problem if an order shows a slippage or is not equal in a step interval. As long as this EA sticks to the target profit, then the precise distance between orders is not important.
      • The EA can work with any broker, slippage and spread.
      Reviews 5
      Happy Scalper
      1041
      Happy Scalper 2023.06.23 21:45 
       

      Hello everyone. Just wanted to give my review for the Sure Fire Hedging Strategy. For starters, this author is very responsive when you ask a question. Also, he is very humble when it comes to his great work. This EA is the most thought out EA I have ever used, and I have used a lot of them. The logic behind this EA is just amazing. Very precise and so profitable. If you do not buy this EA, you will be losing out on another way to earn more passive income. This is just my opinion, so take it with a grain of salt. But I have been trading with EA's for over 6 years and I am telling you this EA is the holy grail for consistent profits. And for $98.99 USD you would be a fool not to buy it and give it a try. Plus, this EA is worth (3) times what he is asking. So I would snag this EA up quickly before he comes to his senses and raises the price. Thank you so much for changing my life for the better Syarif. God bless you and your family. P.S. Check out my set files in the comments section for the NAS100 and other indices. Happy Trading everyone!

      Raoul Paul Xavier De Jong
      1319
      Raoul Paul Xavier De Jong 2021.10.26 17:23 
       

      This is the BEST EA ever that i bought. (this is my dream EA) With a big enough balance and right hedge settings, you will NEVER lose. I let this bot trade on a high volatile pair like gold, 21hours per day and it makes 10% per day. Balance 10k. I say again you can not blow an account with the correct settings, unless the pair decide to range tightly for some time. AAAA++++++ Makasiiiii!!

      Recommended products
      Grid Hero
      Chock Hwee Ng
      3.91 (186)
      Grid Hero is a fully automated EA that uses a revolutionary Grid algorithm (P.A.M.A.) together with a signature synergy of Price Action trading and an Artificial Instinct Self-Adaptive Processing Unit. Grid Hero was strictly developed, tested and optimized using the "Reversed Sampling" development methodology based on "In-Sample" phase (2012 to 2017) and "Out-Of-Sample" phase (2004 to 2011). It has passed 13 years back test of real tick data and real variable spread (with commission) from 2004 t
      Semantics
      Evgeniy Zhdan
      The EA uses a combination of several different trading systems. The unique trading expert algorithm allows you to choose the direction of positions with the highest probability of their profitable closing. The risk control system allows profitable transactions to prevail over the total amount of loss. Advisor is ready for full independent work without the intervention of a trader. Recommended trading tools: TF 5m: EURUSD, GBPUSD, USDJPY, USDCAD, EURGBP. Settings: MaxRisk - Percentage of ris
      Forest
      Vadim Podoprigora
      Forest is a Trend Expert Advisor based on the analysis of a unique mathematical model of trend lines, which allows you to determine the trend movement. The Expert Advisor is most suitable for the currency pair "USDCHF" on period "H1". The EA can work on any type of accounts, and with any brokers. The EA uses mathematical analysis to open trades and applies loss control to open trades. At its core, the EA does not use any risky systems with the increase in the volume or increase in the number of
      | Fully-automated Smart Money Concept (ICT) inspired trading solution with multi-strategy capabilities | Built by a grid trader >> for grid traders.  This is MT4 version, click  here  for  Blue CARA MT5  (settings and logics are same in both versions)     Real monitoring signal  -->  Cara Gold Intro Blue CARA EA   ('CARA') - short for  C omprehensive  A lgorithmic R esponsive A dvisor is a next-gen  multi-currency    multi-timeframe  EA base on the widely known (and perhapse most popular) Inn
      H4 GBPUSD Trend Scalper is a trend signal scalper The EA trades according to the trend strategy using original built-in indicator for opening and closing orders. The external inputs for limiting trading on Fridays and Mondays are available. The purpose of the strategy is to use the current trend with the most benefit. According to the results of testing and working on demo and real accounts, the best results achieved by using the Н4 timeframe on the GBP/USD pair Works on MetaTrader 4 Build 971+
      BENJ HYBRID EA (Martingale Arm) Your Professional Trading Cockpit: Mapped ATR • Dual-Limit Logic • Daily P&L Guard Important notice: After purchase, please contact via Telegram @CryptomanPh for installation guide and setting. Why Traders Choose BENJ HYBRID EA BENJ HYBRID EA is more than a simple trading robot—it’s a complete execution, analytics, and risk management system . Built for serious traders, this EA blends institutional-grade automation with manual precision control . Whether you
      News Scalps
      Tolulope Aanuoluwapo Bello
      Introducing News scalp: The Premier News Scalping Expert Advisor And Arbitrage In the realm of forex trading, seizing fleeting opportunities amid market turbulence demands precision and speed. Enter News scalp, the pinnacle of news scalping Expert Advisors (EAs) designed to excel in the high-stakes arena of news-driven trading. With its innovative features tailored specifically for rapid-fire scalping strategies,   News scalp   promises to revolutionize how traders navigate volatile market con
      Gold Crazy EA MT4
      Nguyen Nghiem Duy
      Gold Crazy EA   is an Expert Advisor designed specifically for trading Gold H1/ EU M15. It use some indicators to find the good Entry. And you can set SL or you can DCA if you want. It can be an Scalping or an Grid/ Martingale depend yours setting. This EA can Auto lot by Balance, set risk per trade. You also can set TP/ SL for earch trade or for basket of trade. - RSI_PERIOD - if = -1, then the default strategy works, if >0, then the RSI strategy works - MAX_ORDERS - to trade with only 1 order,
      Safetygrid
      Montien Charoenpong
      This EA  Can run EURUSD,GBPUSD, AUDUSD at Time frame H1 Balance start 1000$ Indicator with DOJI+BB to be confirm  for Entry MM with Grid system open not over 5 order and Can setting stop-loss begin set 30% Before run real you can optimize new  every time with your balance your risk Remark: Setting I will send to you after you bought because I will optimize to you with your balance and Money management plan
      Gold SWmax EA 4
      Sergei Linskii
      Gold SWmax EA  - is one of the best   Expert Advisor  for   Meta Trader 4 . The unique algorithm of the adviser analyzes the movement of the asset price, taking into account the factors of technical and mathematical analysis, determines profitable entry and exit points, and uses advanced money management and lot multiplier.  Contact me immediately after purchase. After confirms the purchase of this EA via MQL5 you will receive Set file for real RoboForex/WorldForex accounts + Set file to optimiz
      Gold SDmax EA 4
      Sergei Linskii
      Gold SDmax EA  - is one of the best   Expert Advisor  for   Meta Trader 4 . The unique algorithm of the adviser analyzes the movement of the asset price, taking into account the factors of technical and mathematical analysis, determines profitable entry and exit points, and uses advanced money management and lot multiplier.  Contact me immediately after purchase. After confirms the purchase of this EA via MQL5 you will receive Set file for real RoboForex/WorldForex accounts + Set file to optimiz
      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
      MMM Zig Zag Strategy: The Expert Advisors uses its built-in Zig Zag indicator to determine the prices trends and calculates the signal to decide to open buy or sell positions. It sends an order, closes or moves the Trailing Stop loss position as the indicator works. You can define the time period of each day of the week the EA should not trade (the bad time to trade). Usually the period of day when the impact news are published. General Inputs: Closes orders with any profit of value (currency):
      Gegatrade Advanced
      David Zouein
      5 (1)
      Gegatrade Advanced EA is a state of the art Cost Averaging system It is secured by a built-in “ News WatchDog ” that suspends trading during news events the EA has lot of preset configuration files that can be downloaded from its Blog For full description visit the Blog :  https://www.mql5.com/en/blogs/post/720582 Trading Strategy The EA uses different strategy to each pre-set file which can all be downloaded from the Blog Gegatrade Advanced is open for the user to define his own strateg
      You CDI
      Evgeny Vlasov
      You CDI (You Can Do It) Порядок работы Советник работает на любом таймфрейме на любых валютных парах. При работе советника анализируется состояние рынка , при возникновении необходимых условий происходит открытие рыночного ордера. Советник имеет блок TrailingStop , позволяющий перемещать StopLoss за движением цены. Основным отличием этого блока от стандартного является его не линейность. То есть чем ближе цена будет к TakeProfit, тем ближе к цене будет StopLoss. Это позволяет достигать максим
      BBMA Grid Combination
      Kahfi Pangariduwan
      5 (1)
      BBMAGC   BBMAGC  is an automatic trading system with a work strategy obtained from famous BBMA indicator combine with advance grid system . This EA use dangerous trading systems like martingale and grid so please understand the risk before using this EA Time Frame: H1 Symbol: best result on EUR/USD, GBPUSD, GBPCAD VPS recommended 4/5 digit broker Min Deposit 1000$ Low spread always better Since you using Grid system, always trade using money that you are willing to lose. When you use an expert a
      F ully automated Expert Advisor using the  advanced   algorithm for trading the EURUSD and GBPUSD currency pair.   Designed for profit in a short period of time and big profit in a long run. Prefers EURUSD and GBPUSD. Set up to work on EURUSD and GBPUSD M15. Principle of operation The Expert Advisor uses MACD and MA to open orders. The SELL and BUY orders are opened (depending on the parameters set), guided by signals and the market situation.     Deposit   The expert adviser can run with as l
      Angry cat
      PHILLIP GRAHAM HEWARD
      Classic grid martingale type but with a unique and effective partial hedging algorithm to control and reduce drawdown. developed and set up to run on GB/US 15 min chart with a minimum balance of 2k contact me for set files, I have many depending on if you prefer low drawdown, slow and steady growth, or something more aggressive. live account signal https://www.mql5.com/en/signals/2188734?source=Site recommended account leverage 500:1 all optomisation was done with a £500 - £1000 starting balan
      RNB Pass Ftmo
      Chandana Jayampathi Lokuketagodage Don
      1 (1)
      PROP TRADING EA -  Passing challenge or Verification - ANY PROP FIRMS - TEST Set files in the Comment section  US30/US100   Dow Jones / Nasdaq https://trader.ftmo.com/metrix?share=2e2ffcdc1689&lang=en               (01) testing ............ https://trader.ftmo.com/metrix?share=f823192684d3&lang=en              (02) start date 21 Dec 2023   New and improved settings  https://trader.ftmo.com/metrix?share=c2f389839308&lang=en              (03)  start date  04/01/2024 https://trader.ftmo.com/metrix
      OsMa TrendSurfer
      Augustine Kamatu
      This is a free version of the EA  TrendSurfer OsMa  https://www.mql5.com/en/market/product/104264   TrendSurfer OsMa   receives signals from a technical analysis of in-built MetaTrader 4 indicator Oscillator of a Moving Average (OsMA) and then implements   The Quantum Forex Trading System   to generate positive results. Discover: The Quantum Forex Trading System _Mastering the Market with Advanced Algorithms & Multifaceted Strategies_ --- Redefining Forex Trading: In the vast realm of forex, wh
      FREE
      Fatmaw Modifier
      Chusnul Mubarok
      This EA uses indicators to move the level line, the rules are if the price is below the level line then it is a buy signal, and if the price is above the level then a sell signal, trailing stop is to modify the stop loss, or to bring up a stop loss if previously sl = 0, this EA can accept manual orders via Android or home PC. if the condition is floating you can help this ea using manual orders which you think are good...
      Hermes Gold PRO
      Igor Pereira Calil
      The HERMES specialist is a robot for Meta Trader with the objective of working with the robot's own trends and strategies. GET HERMES GOLD PRO FREE INSTALLED AND OPERATING ON YOUR ACCOUNT, ASK ME PRIVATE MESSAGE. TIMEFRAME USAGE RECOMMENDATION: H1 HERMES was developed to work on the American metal XAUUSD (GOLD). HERMES is a long-term Expert in assertive SCALPING, and so, he can stay 1,2,3 days without trading, depending on the value of his "risk (configuration", but, don't worry about that, re
      Gold Super EA
      Alla Kutnogorskaya
      Attention!!!!! The advisor is configured and does not require optimization. Gold Super EA uses an advanced intelligent breakout system for scalping and analyzing market conditions.  All open trade orders are assigned individual Stop-Loss levels and are managed by TrailingStop. information: 1.Pair: XAUUSD/GOLD 2.The advisor must constantly work on the VPS 3.Working timeframe:H1, H4 4.Minimum balance: $300 ($500 recommended) 5.Maximum spread: 30/50 points Features: No martingale No Grid No avera
      Euro Gift (EURUSD M15) I am celebrating my birthday, so i will publish some EAs for FREE. This EA has been developed for EURUSD M15.  Strategy is based on ICHIMOKU indicator and has very little parameters - so its VERY ROBUST. It uses Stop pending orders with   ATR   Stop Loss . At 9:00 pm we are closing trading every Friday to prevent from weekly gaps. !!!Adjust these times to your broker time. Preset values are for UTC+2 only!!! For every candle the pending orders are modified to adapt the mar
      FREE
      Correlation Beast EA
      Rodrigo Rethka Goncalves
      Correlation Beast V2.05 - Skyrocket Your Forex Trading! Unlock the power of currency correlations with Correlation Beast V2.5 , the ultimate Expert Advisor for MetaTrader 4! Designed for traders who crave precision and profitability, this EA leverages advanced correlation strategies to identify high-probability trades. Whether you're a beginner or a pro, this tool is your key to mastering the Forex market! Why Choose Correlation Beast V2.5? Powerful Correlation Trading Trade sma
      Magic Grid
      Aliaksandr Charkes
      4.5 (26)
      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
      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
      BuckWise
      Joel Protusada
      BuckWise   is a fully automated scalping Expert Advisor that can be run successfully using EURUSD currency pair at H1 timeframe. Very Important This Expert Advisor can not run with any EAs in the same account. As part of the money management plan, it calculates and monitors the Margin Level % and assumes that all open trades are created by it. If you want an Expert Advisor that trades in a daily basis, this EA is not for you because using this requires a patience to wait for a few days or weeks
      High Point Scalper EA
      Ifeanyi Joshua Odinma
      High Point Scalper EA  trade is based on Price high and low level to determine the next trend   with martingale  strategy . The EA will find the best entry and exit points  This Expert advisor is mainly for synthetic Trade    , check it out on Jump100 recommended assets  JUMPS100  Recommended Broker..  Deriv Timeframe  H1  Minimum deposit $100 IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. you will get  one expert a
      Hungry for Japanese style? Thirsty for samurai action? Behold! Ichimoku Super Swift Ease Pro is an expert advisor that has an Ichimoku indicator with a moderate lot size. It is recommended that you use this EA for JPY pairs like USDJPY, EURJPY, etc. If you enjoy using Ichimoku, this EA may be what you are looking for. According to the details of this expert advisor, it has an ATR to allow traders to see the line with the flow of the Japanese Yen along with another currency pair with it. Only use
      Buyers of this product also purchase
      Quantum Emperor MT4
      Bogdan Ion Puscasu
      4.85 (169)
      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 for free !*** Ask in private for more details 250%+ Growth Verified Signal:   Check my
      Goldex AI
      Mateo Perez Perez
      4.74 (19)
      Goldex AI: Today's success will be tomorrow's fruits SUPER DISCOUNT FOR LIMITED TIME! LAST 2 COPIES FOR 299 USD BEFORE PRICE WILL INCREASE. Live Signal > IC Markets Real: Goldex AI High risk set Manual and set files: Contact me after purchase to receive the manual and set files. Price: The starting price is $899 and will increase by $199 after every ten sales. Available copies: 2 Goldex AI - Advanced trading robot with neural networks, trend, and price action. Goldex AI is a high-performance tr
      GbpUsd Robot MT4
      MQL TOOLS SL
      4.75 (91)
      The GBPUSD Robot MT4 is an advanced automated trading system meticulously designed for the specific dynamics of the  GBP/USD  currency pair. Utilizing advanced technical analysis, the robot assesses historical and real-time data to  identify potential trends , key support and resistance levels, and other relevant market signals specific to GBP/USD. The Robot opens positions  every day,  from Monday to Friday, and  all positions are secured  with Take Profit, Stop Loss, Trailing Stop, Break-Even
      Cherma Mt4
      Hicham Chergui
      3.25 (12)
      CHERMA MT4   – Professional Expert Advisor for Gold Trading Using Artificial Intelligence Cherma MT4 is an advanced automated trading system specifically designed for trading gold (XAUUSD) on the 5-minute timeframe. It relies entirely on artificial intelligence to analyze the market and identify precise entry and exit points. This expert advisor is built for traders seeking a fast and efficient scalping strategy, executing dozens of trades daily based on real-time AI-generated signals and intel
      Waka Waka EA
      Valeriia Mishchenko
      4.31 (48)
      EA has a live track record with 4.5 years of stable trading with low drawdown: Live performance MT5 version can be found here Waka Waka is the advanced grid system which already works on real accounts for years. Instead of fitting the system to reflect historical data (like most people do) it was designed to exploit existing market inefficiencies. Therefore it is not a simple "hit and miss" system which only survives by using grid. Instead it uses real market mechanics to its advantage to make p
      DS Gold Robot MT4
      MQL TOOLS SL
      4.33 (6)
      Introducing the DS Gold Robot, your ultimate companion in navigating the intricate world of XAUUSD trading. Developed with precision and powered by cutting-edge algorithms, DS Gold is a forex robot meticulously crafted to optimize your trading performance with  XAUUSD pairs . With its advanced analytical capabilities,  DS Gold  Robot   constantly monitors the gold market, identifying key trends , patterns, and price movements with lightning speed. The DS Gold Robot opens positions every day from
      Stock Indexes EA MT4
      MQL TOOLS SL
      5 (4)
      Stock Indexes EA is a sophisticated trading robot meticulously engineered to capitalize on the dynamics of the US30 . This expert advisor employs advanced algorithms and technical indicators to analyze market trends, identify potential entry and exit points, and execute trades with precision. A news filter has also been added to the robot, which prevents it from opening a position during important economic news , minimizing the risk. In robot, you can also specify the days and hours when the EA
      HiJack
      Cence Jk Oizeijoozzisa
      3.83 (6)
      HiJack Expert Advisor – Advanced AI-Powered Trading  To prevent distribution of cracked versions in the market Live Signal   ea new:  https://www.mql5.com/en/market/product/148879 The HiJack Expert Advisor has been used privately for years, and now, we have decided to make it available to the public so that everyone can benefit from its powerful capabilities HiJack utilizes cutting-edge artificial intelligence to analyze the trading behavior of major banks and institutions. By detecting high-
      MM Flip CodePro
      Allistair Kabelo Mandow
      "MM 3.0 FLIP CODEPRO IS DESIGNED TO MULTIPLY YOUR CAPITAL UP TO 300 TIMES OR MORE A WEEK ON SMALL ACCOUNTS USING 1:UNLIMITED THIS POWERFUL TRADING ROBOT CAN TURN SMALL INVESTMENTS INTO MASSIVE RETURNS DEPENDING ON MARKET CONDITIONS" "WITH JUST $100 FOR FORISTANCE YOU HAVE THE POTENTIAL TO GENERATE $30 000+ IN A SINGLE WEEK....BASED ON OUR EXPERIENCE CONSTANT CONSISTENT PROFITS WITHIN 7 TRADING DAYS DAYSARE ACHIEVABLE" "OUR TEAM IS HERE TO GUIDE AND SUPPORT YOU EVERY STEP OF THE WAY WITH MM3
      Aura Black Edition
      Stanislav Tomilov
      4.53 (17)
      Aura Black Edition is a fully automated EA designed to trade GOLD only. Expert showed stable results on XAUUSD in 2011-2020 period. No dangerous methods of money management used, no martingale, no grid or scalp. Suitable for any broker conditions. EA trained with a multilayer perceptron Neural Network (MLP) is a class of feedforward artificial neural network (ANN). The term MLP is used ambiguously, sometimes loosely to any feedforward ANN, sometimes strictly to refer to networks composed of mult
      XG Gold Robot MT4
      MQL TOOLS SL
      4.49 (35)
      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
      The Gold Reaper MT4
      Profalgo Limited
      4.58 (31)
      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 volatile
      A gold trading expert advisor is a sophisticated software program designed to analyze market trends and execute trades on behalf of the user in the gold market. This type of expert advisor utilizes advanced algorithms to identify profitable trading opportunities and make decisions based on pre-defined criteria and parameters. The gold trading expert advisor is capable of monitoring the gold market 24/7, identifying potential entry and exit points, managing risk levels, and executing trades aut
      Aura Neuron MT4
      Stanislav Tomilov
      4.56 (9)
      Aura Neuron is a distinctive Expert Advisor that continues the Aura series of trading systems. By leveraging advanced Neural Networks and cutting-edge classic trading strategies, Aura Neuron offers an innovative approach with excellent potential performance. Fully automated, this Expert Advisor is designed to trade currency pair XAUUSD (GOLD). It has demonstrated consistent stability across these pairs from 1999 to 2023. The system avoids dangerous money management techniques, such as martingale
      Forex EA Trading Channel on MQL5:  Join my MQL5 channel to update the latest news from me.  My community of over 14,000 members on MQL5 . ONLY 3 COPIES OUT OF 10 LEFT AT $399! After that, the price will be raised to $499. EA will be sold in limited quantities to ensure the rights of all customers who have purchased. - REAL SIGNAL  Default Setting:  https://www.mql5.com/en/signals/2329380 AI Gold Sniper applies the latest GPT-4o model (GPT-4o by OpenAI) in XAU/USD trading designed based on a
      Gold Trend Scalping MT4
      Lo Thi Mai Loan
      5 (3)
      LIVE SIGNAL BLOG-1 Welcome to Gold Trend Scalping LAUNCH PROMO: BIG SALE 50% in 48 HOURS- $499.99 The price will increase by $100 with every 10 purchases (9/10) Final price: $1999.99 Details about params Gold Trend Scalping is the first EA I designed specifically for gold.  The EA uses a following trend trading strategy based on larger time frames.  It employs a super trend to detect the main trend of the larger time frame and then opens trades on smaller time frames.  The EA always uses a fi
      NEXON Ai
      Hicham Chergui
      3.25 (4)
      NEXON – AI-Powered Gold Scalping Expert Advisor (XAUUSD M5) NEXON is an advanced, fully automated scalping Expert Advisor designed specifically for trading gold (XAUUSD) on the M5 timeframe. Powered by cutting-edge Artificial Intelligence, Machine Learning, and Neural Networks, it continuously adapts to market dynamics to deliver precise, high-frequency trading decisions. Rather than relying on rigid, rule-based logic or basic indicators, NEXON learns from historical and real-time market behavio
      Bitcoin Robot Grid MT4
      MQL TOOLS SL
      5 (17)
      Bitcoin Robot Grid MT4 is an intelligent trading system designed to automate BTCUSD trading using the grid trading strategy. This method takes advantage of market fluctuations by placing a structured series of buy and sell orders at predefined price levels. The robot   continuously monitors market   conditions and executes trades according to its preset parameters, allowing for consistent market engagement without the need for manual intervention. Bitcoin Robot Grid is the   perfect solution  
      Vortex Gold MT4
      Stanislav Tomilov
      5 (4)
      Vortex - your investment in the future The Vortex Gold EA expert Advisor made specifically for trading gold (XAU/USD) on the Metatrader platform. Built using proprietary indicators and secret author's algorithms, this EA employs a comprehensive trading strategy designed to capture profitable movements in the gold market. Key components of its strategy include classic indicators as CCI and Parabolic Indicator, which work together to accurately signal ideal entry and exit points. At the heart of V
      Dynamic Pips MT4
      Thi Thu Ha Hoang
      5 (1)
      ️  Already own Boring Pips EA? You’re eligible for an   additional 30% discount! Contact to learn more about: How to   claim your rebate Trump’s second term has reignited a wave of aggressive trade policies, starting with the return of sweeping tariffs that are rattling global markets Tensions in the Middle East have flared — most recently between Israel and Iran — sending oil prices surging The Russia–Ukraine war continues with no resolution in sight, fueling ongoing geopolitical i
      Forex EA Trading Channel on MQL5:  Join my MQL5 channel to update the latest news from me.  My community of over 15,000 members on MQL5 . ONLY 3 COPIES OUT OF 10 LEFT AT $299! After that, the price will be raised to $399. - REAL SIGNAL  IC Markets:  https://www.mql5.com/en/signals/2321981 AI Indices Scalper   leverages   GPT-4o   for NASDAQ100 (USTEC) trading, deploying a   Transformer-based neural architecture   to execute precision breakout scalping. The system integrates: Cross-Market Inte
      Opal
      Oeyvind Borgsoe
      Opal is a powerful tool using cutting-edge algorithms and AI-driven calculations. This fully automated EA encompasses the exceptional qualities we associate with the opulent gemstone: proper decision-making, prudence and strong protection. The capital is protected by advanced money management modules, filters, two-step trailing stop and flexible customizing. Opal also takes into account the study of psychological levels in financial markets. Most human beings think in even rounded whole num
      BitcoinRobot
      Murodillo Eshkuvvatov
      5 (2)
      SET FILE Manual Guidebook  Why Bitcoin trading 1.   Elite Precision Precision – Redefining Trading Cutting-edge algorithms fine-tuned for pinpoint execution. Smart setups crafted to navigate risks and seize opportunities. 2. Adaptive Market Strategies with Real-Time Price Movement Markets shift—but Bitcoin Robot is built to adapt instantly: Trading in trending, volatile, or ranging conditions. Captures breakouts, reversals, and price surges before they happen. Dynamic strategy adjustments en
      Omega Code
      Nguyen Hang Hai Ha
      Introduction EA Omega Code is a core strategy that has been distilled over many years of research and optimization for the Forex and Gold markets. The strategy combines Scalper and Trailing to optimize performance and reduce risk. Trading orders have Stop Loss, Trailing for customization, and provide many other parameters to optimize the system to suit each user's trading plan. Promotion: with the purchase of Omega Code, users can access the source-code. If you are really interested in the sour
      Greedy Golden MT4
      Mihails Babuskins
      4.75 (4)
      Recommended:  it's better to  use in accounts with lower swap or swap-free accounts. SEE AND COMPARE WITH OTHER EA's , Real monitoring signals:  Greedy Golden +1000% Signal Contact me after payment to send you the user manual PDF file See the real monitoring signal in my profile. Use only on gold and on the  BUY direction. Trading gold is attractive to many traders due to the high volatility and depth of the market. Should we invest in gold or just scalp it? Answering this question is a big cha
      Tree Of Life
      Oeyvind Borgsoe
      Tree Of Life EA is a fully automated trading robot that executes trades using a sophisticated blend of indicators and internal algorithms. It is developed through years of testing and live trading, and recognises market patterns and trends in a highly accurate manner. The  live trading accounts  confirm this. The main indicators Tree Of Life uses are the Moving Average and Stochastic. Together with the internal calculations, our combinations have proven to be a solid recipe.    Buyers receive
      Bitcoin Robot MT4
      MQL TOOLS SL
      4.69 (64)
      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
      Trending Mechanisms
      Tatiana Savkevych
      **Description of the Trending Mechanism Forex Trading Bot** **Trending Mechanism** is a high-tech trading bot for the MetaTrader 5 platform designed for automatic market analysis and trading in the Forex market. By utilizing the latest market analysis and capital management technologies, this bot allows traders to effectively identify trends and make informed trading decisions based on current market conditions. It is ideal for both experienced traders and beginners, thanks to its intuitive se
      Titan Gold AI
      Yasir Mohammed Sachit Sachit
      Titan Gold AI   – Advanced Trading Robot Start with just $100 and target $1,000,000 within one year (️ Disclaimer: Results depend on proper money management, market conditions, and trading discipline. Profits are not guaranteed.) Expert Advisor Features: Works on all currency pairs including Gold (XAUUSD). Smart session filtering: Asia – London – New York. Dynamic money management suitable for both small and large accounts. Trailing Stop + advanced protection against market re
      NightVision EA
      Alexander Kalinkin
      4.11 (27)
      NightVision EA  - is an automated Expert Advisor that uses night scalping trading during the closing of the American trading session. The EA uses a number of unique author's developments that have been successfully tested on real trading accounts. The EA can be used on most of the available trading instruments and is characterized by a small number of settings and easy installation. Live signal for NightVision EA:    https://www.mql5.com/en/signals/author/dvrk78 Ask me for   the   recommended FX
      More from author
      Color Macd Tf
      Syarif Nur Arief
      MACD is well known indicator that still can be use for prediction where price will go next few minutes, hours or even weekly  With colored bar of Macd, your eyes can easily catch when color is changed based what market price movement to find any early trend on market. here is the parameter of the indicator: TF_MACD , default is 1 Hour , this mean you can see clearly MACD of 1 Hour TimeFrame on Lower TimeFrame. InpPrice , default is Price Close , this is original MACD parameter from Metaquotes st
      FREE
      Quadro Multi Grid Scalper
      Syarif Nur Arief
      4.2 (5)
      We never know what market price will go on next second. That's why a trader needs to find a good way to have a good exit strategy. Quadro Multi Grid Scalper is a High Frequency Grid scalper using Dynamic Fibo Level, with only 3 maximum Opened order each cycle, will make less risk to your account. This EA uses Averaging exit system with changable martingale settings, and uses total profit target to closing all. Recommended Broker Parameters:  Low spread less than 1 pip (you will have fast open an
      Indicator can drawing Support Level (Lowest price of choosed Time Frame) and Resistance Level (Highest price of choosed Time Frame), and this indicator can drawing last of Pivot Level from the Last of Support Resistance Level. Support and Resistance based Highest and Lowest at choosed Time Frame can be your next good experience for your forex trade to maximize your trade win and lost ratio. Parameter : _S_and_R__Setup_ ,          Default is   # SUPPORT AND RESISTANT # , No Need To Change Drawin
      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
      Gold Eye
      Syarif Nur Arief
      Gold Eye is one of advance profesional expert that use deep neural network to catch probability of true trend on XauUsd market, this expert can be run on forex pairs also (Default setup is for XauUsd). This expert can be set as trend grid follower, or can be set as like hedging system but with flat lot size (not using martingale). Then unique setup for Money Profit/Loss management is the good things not like any others paid expert here on Mql5. # EA MUST BACKTEST USING TIME_FRAME_001 # PARAMETER
      Golden Academy
      Syarif Nur Arief
      5 (2)
      This EA can predict early trend on market, scan early trend from M5 to W1, This EA not martingale, not a hedging, not averaging and not grid. And this EA only open/close position once (only 1 opened order) every 8 hours. EA parameters   : Trade_Set_AUTO , Default is    ## AUTO Trade Setting ## ,   Mean Note for below parameter. LOT_SIZE_AUTO_TRADE , Default is    0.01 ,   Mean Lot Size to be traded is 0.01 Lot, Can be changed depend your account balance, (0.01 Lot Per 200 usd initial balance). A
      So many EA and Copy Signal are using Averaging Grid system with martingale or even using flat lot size, they have pips difference in vary, also the way they put order 3-5 in same time at one time, that's all make a time bomb soon or latter will blow your account. Here is the link on mql5 signal that use This EA :  https://www.mql5.com/en/signals/1850760 https://www.mql5.com/en/signals/1850763 https://www.mql5.com/en/signals/1823152 Iam here with my experience about more than 8 years, i've found
      Live Streaming Of EA is Here :  https://youtube.com/live/-Rz52K1Z77M?feature=share Signal is Here :  https://www.mql5.com/en/signals/2315146 Overview [TEMA MOVING AVERAGE CHANNEL] is a precision-engineered Expert Advisor designed to catch market spikes and ride profitable moves with minimal guesswork. Using a multi-timeframe SPIKE detection system , it blends short-term momentum with higher-timeframe confirmation for maximum accuracy. Key Features 4 Trade Levels – From conservative (Le
      Filter:
      fiogol
      82
      fiogol 2024.08.19 07:35 
       

      Risky ea unless you have super huge capital that can withstand huge drawdown. Use it at your own risk and support is non-existant as well.

      Update: Took seconds to reply to a bad review but never reply to a message I sent 3 days ago. Bravo. And can't take a bad review and proceeded to insult his buyer instead. Such great customer service.

      Syarif Nur Arief
      3455
      Reply from developer Syarif Nur Arief 2024.08.19 07:43
      well, basic of surefire hedge ea is martingale, u must have big enough free margin until all opened order closed with + profit, 😂
      1 star review is for your brain in fact.
      Happy Scalper
      1041
      Happy Scalper 2023.06.23 21:45 
       

      Hello everyone. Just wanted to give my review for the Sure Fire Hedging Strategy. For starters, this author is very responsive when you ask a question. Also, he is very humble when it comes to his great work. This EA is the most thought out EA I have ever used, and I have used a lot of them. The logic behind this EA is just amazing. Very precise and so profitable. If you do not buy this EA, you will be losing out on another way to earn more passive income. This is just my opinion, so take it with a grain of salt. But I have been trading with EA's for over 6 years and I am telling you this EA is the holy grail for consistent profits. And for $98.99 USD you would be a fool not to buy it and give it a try. Plus, this EA is worth (3) times what he is asking. So I would snag this EA up quickly before he comes to his senses and raises the price. Thank you so much for changing my life for the better Syarif. God bless you and your family. P.S. Check out my set files in the comments section for the NAS100 and other indices. Happy Trading everyone!

      crisroig
      37
      crisroig 2023.02.18 15:35 
       

      Do you have a mt5 version of this EA?

      Syarif Nur Arief
      3455
      Reply from developer Syarif Nur Arief 2023.02.18 15:52
      i have but never upload and sell here, because on mql5 version still unstable, and can not doing similar logic on mql4 version, it is mql5 vs mql4 issue, not from my logic code.
      Raoul Paul Xavier De Jong
      1319
      Raoul Paul Xavier De Jong 2021.10.26 17:23 
       

      This is the BEST EA ever that i bought. (this is my dream EA) With a big enough balance and right hedge settings, you will NEVER lose. I let this bot trade on a high volatile pair like gold, 21hours per day and it makes 10% per day. Balance 10k. I say again you can not blow an account with the correct settings, unless the pair decide to range tightly for some time. AAAA++++++ Makasiiiii!!

      Adham Locsin El Helou
      210
      Adham Locsin El Helou 2021.02.08 21:52 
       

      The EA seems unstable, days it runs smoothly and on others it doesnt hedge at all. I messaged you directly twice and no response so far.

      Syarif Nur Arief
      3455
      Reply from developer Syarif Nur Arief 2021.05.18 15:51
      Will check this issue, and will make some update for EA and issue will be fixed. When new version available, i will put info here.
      ##
      New Updated version available now, new version has been published today (18 May 2021)
      ##
      Matthew Todorovski
      13129
      Matthew Todorovski 2016.08.16 15:34 
       

      User didn't leave any comment to the rating

      Reply to review