Hi all,

why this code do not generate any trade?
I'm using a MT4 brige and the connection is ok, green and Zorro connected!

Code:
function tick()
{
  if (random() > 0)
    enterLong();
  else
    enterShort(); 
}