fpzerocheck-test/test.mq5

18 lines
299 B
MQL5
Raw Permalink Normal View History

2026-03-29 06:52:16 -07:00
int OnInit()
{
MathSrand(GetTickCount());
EventSetTimer(1);
return INIT_SUCCEEDED;
}
void OnDeinit(const int reason)
{
Print("MQL build: ", __MQLBUILD__);
EventKillTimer();
}
void OnTimer()
{
const double result = _Point / double(MathRand() % 2);
Print(result);
}