shanmugapradeep
Member
Hello,
Can anyone Help me code News filter EA?
1. Fetch the news information from some free website (Like ForexFactory, dailyfx, babypips, etc)
2. Stop execution of if statement `if (Trademode)` before 12 hours of news with high impact or 3 star. Start back execution of if statement `if (Trademode)` after 6 hours of High Impact news or 3 star
Can anyone Help me code News filter EA?
extern bool NewsFilter = true;
extern int NewsImpact = 3;
extern int NewsStopHours = 12;
extern int NewsStartHour = 6;
if (Trademode) {
Take a trade
}
1. Fetch the news information from some free website (Like ForexFactory, dailyfx, babypips, etc)
2. Stop execution of if statement `if (Trademode)` before 12 hours of news with high impact or 3 star. Start back execution of if statement `if (Trademode)` after 6 hours of High Impact news or 3 star