You can try to use the MODE_TRADEALLOWED identifier from the MarketInfo() function.
MODE_TRADEALLOWED is basically useless, as it's always 1 even during the weekend.
theimperialone:
Now it works perfectly when the markets are open but when they are closed it does not because CurTime() returns the time of the last tick.
Now it works perfectly when the markets are open but when they are closed it does not because CurTime() returns the time of the last tick.
- CurTime is deprecated, use TimeCurrent()
- If the market is close, there are no ticks, so start isn't called and you're EA doesn't care.
WHRoeder:
That's what can happen when someone dredges up a 5 1/2 year old thread ;-)
- CurTime is deprecated, use TimeCurrent()

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
I have a little problem.
my indicator uses the call curtime() to get the server time and also uses LocalTime() to get my time.
My intention is to use these together to work out the start of the day from my perspective.
Now it works perfectly when the markets are open but when they are closed it does not because CurTime() returns the time of the last tick.
Now I can see two possible solutions to this:
1. is there another call i can make to get the real time of the server? For example. ...
2. can i test to see if the market is open. If it is then use curtime and store off the difference in a GLobal varibale for later reuse if the market is not open:
Can anyone help me fill in the missing links for either option for me or come up with another suggestion.
thanks
TheImperial1