|
Place expiration on EA
Hi all,
I have an EA that I would like to place an expiration date on the EA. Does anyone know where this code is suppose to be place in the .mq4 files to work properly.
int start()
{
string expire_date = "2006.31.06"; //<-- hard coded datetime
datetime e_d = StrToTime(expire_date);
if (CurTime() >= e_d)
{
Alert ("The trial version has been expired!");
return(0);
}
// your normal code!
return(0);
}
Thanks
troy
Last edited by troydavis1010; 04-10-2007 at 09:27 PM.
|