Please Help!!!!

 

Please help

I am coding my new EA. But I am struggle in one bit. I want to put some constraints in the use of my EA. As follows

Trial version of the EA as to end:

Minute: 15

Day: 20

Month: 6

Year: 2007

Any suggestions on how to code that.

Your help is very much appreciated.

 
Probably an instruction like below can be used?

if( TimeCurrent() >= D'2007.06.20' ) return(0);
Reason: