Avoid EA trading after price GAP
Because after gap some indicators behavior is not usable for EA decision, I use simple code to avoid EA trading after GAP. At params section of EA add: extern int MinGapSize = 3;extern int BackGapBars = 10;.... add check of Gap before decision of tradingif (NotGap()) { if (......Tags: GAP, EA
3343 days ago