Hi All,
I'm new to mql but have a little programming experience elsewhere.
My first step with any new lang/environment is to get a "hello world" program running.
In the EA code below the init() Alert and the deinit() Alert are triggered with no problem when the EA is added and removed.
But the start() Alert never trigers, it's like it just doesn't see the ticks.
Any help on this most basic of stumbling blocks greatly appreciated, what am I doing wrong ????
int init()
{
//----
Alert("Function Init() triggered at start");
//----
return(0);
}
int deinit()
{
//----
Alert("Function deinit() Triggered at exit");
//----
return(0);
}
int start()
{
//----
Alert("New tick ");
//----
return(0);
}



Reply With Quote
