Specify time for trading

 
Is it possible to set a specific time for EA to become active.

Someone please help.... thanks in advance
 
inh hh = 9;
int mm = 10;
 
if (Hour() == hh && Minute() >= mm)
{
  //do something
}
Reason: