How do you set an expiration date for an indicator; so that when that date
is reached the indicator ceases to operate?
I found this code; but all it does is create an alert. However, the indicator still works.
if ((Day() >= 02) && (Month() >= 10) && (Year() >= 2006))
{
Alert("Trial has ended. Please contact
youremailaddress@whatever.com");
return(0);
}
Thanks in advance for any help on this matter.