mbes
mbes
Friends

Add friends via their profile or user search and you will be able to see if they are online

mbes
Registered at MQL5.community
mbes
Added topic Running EA "Goes To Sleep"
An EA that I wrote and demoing stops working sometimes (I don't know why!). I have written an indicator which continually checks the EA's operation and sounds an alarm when it detects that the EA has "gone to sleep". I then restart the EA
mbes
Added topic CPU Efficiency
From the point of view of computer efficiency and resources, if I want to find the maximum of 3 real numbers, Val1, Val2 and Val3, should I use two sets of IF statements: if( Val1 > Val2) { if( Val1 > Val3) Maximum = Val1; else Maximum = Val3;