Meister_Propper Posted October 4, 2009 Report Share Posted October 4, 2009 Hi folks, is somebody able to add a newsfilter to that EA? http://[email protected]/715656 It´s a good EA but on some days are large DD. In my opinion a newsfilter will avoid the large DD. Could somebody add the following code or another newsfilter to the EA? Unfortunately I can´t code. :( This code is for FFCal indicator. Code: extern bool NewsFilter = true; extern int MinutesBeforeNews = 10; extern int MinutesAfterNews = 10; extern bool IncludeHigh = true; extern bool IncludeMedium = true; extern bool IncludeLow = false; extern bool IncludeSpeaks = true; int MinutesUntilNextEvent,MinutesAfterPrevEvent; bool TradingTime; datetime Time2,Time3,Time4; Call this function to check if trading is permitted: bool NewsPeriod() {if (TimeCurrent()>Time4 && NewsFilter) {MinutesUntilNextEvent=iCustom(Symbol(),0,"FFCal",IncludeHigh,IncludeMedium,IncludeLow,IncludeSpeaks,true,1,1); MinutesAfterPrevEvent=iCustom(Symbol(),0,"FFCal",IncludeHigh,IncludeMedium,IncludeLow,IncludeSpeaks,true,1,0); if (MinutesUntilNextEvent!=99999 || MinutesAfterPrevEvent!=99999) {Time2=iTime(Symbol(),1,0)-(MinutesAfterPrevEvent-MinutesAfterNews)*60; Time3=iTime(Symbol(),1,0)+(MinutesUntilNextEvent-MinutesBeforeNews)*60; Time4=iTime(Symbol(),1,0)+(MinutesUntilNextEvent+MinutesAfterNews)*60;}} TradingTime=(TimeCurrent()>Time2 && (TimeCurrent()<Time3 || TimeCurrent()>Time4)); return(TradingTime);} Here is the FFCal Indi: http://www.fileuploadx.de/640259 Thank you for your efforts! ^:)^ Best regards! Quote Link to comment Share on other sites More sharing options...
⭐ fxknight Posted October 4, 2009 Report Share Posted October 4, 2009 Re: [REQ] Newsfilter for Donchian Scalper The DC EA can mislead one to believe it is a profitable EA but in reality it is a very poor performer. The reason it appears to do well is that the backtests are run with no SL. If you run them with even a 300 pip SL, you will see how nicely it crashes the account. Also for more proof if you run a backtest of the latest version 1.02 with the "timeout" option enabled you will see that it also kills the account very fast. Reason being is that it holds the trades that have not reached TP yet and these trades get it in trouble. Hardly worth even a second look IMHO.. even with the news filter it cannot be turned into a profitable EA. I think a lot of people discovered this very quickly already. Good luck Quote Link to comment Share on other sites More sharing options...
Meister_Propper Posted October 5, 2009 Author Report Share Posted October 5, 2009 Re: [REQ] Newsfilter for Donchian Scalper Thank you for your answer! Does somebody know another good scalping EA which works 24 hours? Best regards! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.