The Hello Smart Expert Advisor is designed to help you average out losing positions effectively. You can choose your trading direction—either Buy or Sell—in the settings. If the market moves against you, the EA will automatically open an averaging order with a fixed volume of Lot at a specified distance of Step in points. Once the EA accumulates a volume of BigLot, it will increase the initial lot size using the Mnogitel coefficient. The positions are closed once they hit either the Profit or Loss target, calculated in your deposit currency. Keep in mind that all operations performed by the EA are based on the opening prices of the candles.
This EA has been optimized for the EURUSD currency pair, specifically for H1 and H4 timeframes, based on historical data from January 11, 2013, to September 12, 2016.
Settings:
inputint BuySell = 1; // 1-Only Buy 2-Only Sellinputint Step = 1000; // Stepinputdouble Lot = 0.1; // Volumeinputdouble BigLot = 0.5; // Big Lotinputdouble MaxLots = 5; // Maximum lotinputdouble Profit = 60; // Dollars Profit inputdouble Loss = 5100; // Dollars Lossinputdouble Mnogitel = 10; // Lots Mnogitel

Fig. 1. Results of the EA trading and optimization from 11.01.2013 to 12.09.2016. EURUSD, H1

Fig. 2. Results of the EA trading and optimization from 11.01.2013 to 12.09.2016. EURUSD, H4
Pro Tips:
- This EA is a great trading assistant and can help you in developing your own strategies.

Comments 0