Does anyone have any example code for how to generate a time of day based entry signal in Metatrader 4? e.g. at a particular hour and minute of each day
feedback
|
|
i've been working on just such a function. it has to be customized a lot i'm working on making a more general version thats going to be so big and tedious it'll need its own include file but it'll be qworth it to be able to stick it on different charts without changing the code basically one big case statement with what i have here customized already to each individual timeframe. what have you been working on? thanks for your interest in time and forex! bool existordertime(datetime time, int otype=-37) | ||||
feedback
|
|
TimeLocal() gives you the number of seconds since midnight Jan 1st 1970 of your local computer (Terminal Client). TimeCurrent() gives you the number of seconds since midnight Jan 1st 1970 of your Broker's computer (Server). You can convert either of these into a string like so:
You can also get individual elements of the date number like so:
The MQL4 online programmers guide can be found here: http://docs.mql4.com/ Hope this helps. Cheers, Mark | |||
|
feedback
|