I know that for Local, Server and GMT time, it must use datetime as TimeLocal(), TimeCurrent() and TimeGMT(), but I don't know how to put into correct codes style. Please guide, thanks
Inserted Code
enum time {
local, // Local Time
server, // Server Time
gmt // GMT Time
};
// User Input Variables
input time timeSelect=local; // Select Preferred Time
//+------------------------------------------------------------------+
void OnStart(){
Alert("Time Now is: ",timeSelect);
}