I would like an EA developed that is based on the HalfTrend 1.02 indicator. https://c.forex-tsd.com/forum/149/halftrend-1.02.mq4 1. A new trade is opened when there is a HalfTrend signal and closed when there is an opposite signal with a new trade being opened. 2. The opening and closing of trade has to happen only after 2 or 3 or x confirmation (Configured in EA Properties) 3. Please include a sound alert for TRADE opening/closing confirmation, I don't want the default arrow sound code used in HalfTrend (that is used for arrow indication, please remove default sound code). 4. The EA should have a time-out option (Configured in EA Properties) to stop trading in xx minutes or xx seconds. 5. The EA should have 3 options to choose: Execute only BUY orders Execute only SELL orders Execute Both BUY and SELL orders (default) (Configured in EA Properties) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Execute only BUY orders buy --wait-- close --wait-- buy --wait-- close --wait-- buy --wait-- close Execute only SELL orders sell --wait-- close --wait-- sell --wait-- close --wait-- sell --wait-- close Execute Both BUY and SELL orders (default) buy --wait-- close+sell --wait-- close+buy --wait-- close+sell --wait-- close - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 6. Please do not use the free EA code HalfTrend-EA code found in http://www.binaryoptionsedge.com/topic/2986-half-trend-ea/ It has a lot of bugs and does not work properly. Please code it your self. 7. Please test using a demo account and do not test it using the EA simulator in MetaTrader4. Please test it thoroughly before delivery. 8. Also please include below Lock script on the top. //+------------------------------------------------------------------+ string ls_0 = "2018.04.18"; int str2time = StrToTime(ls_0); if (TimeCurrent() >= str2time) { Alert("Your License Has Expired! Please Renew The License."); return (0); } if (AccountNumber() != 72520) { Alert("Invalid Account Number! Only Licensed For Account Number 72520."); return; } //+------------------------------------------------------------------+