Post your useful snippets here.

 
Useful snippets go here. 
 
anything in particular you working on?
 

In the Russian part of the forum there are two threads, where various techniques are collected.

Особенности языка mql5, тонкости и приёмы работы
Особенности языка mql5, тонкости и приёмы работы
  • 2017.02.24
  • www.mql5.com
В данной теме будут обсуждаться недокументированные приёмы работы с языком mql5, примеры решения тех, или иных задач...
 

For stripping time off datetime

#define HR2400  86400           // 24 * 60 * 60
#define MIDNIGHT(x) x - (int) MathMod(x,HR2400)
#define TOMORROW(x) (x + HR2400) - (int) MathMod(x,HR2400)
Reason: