
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
Probably this
if(Hour()==X && Minute()==Y && Seconds()==Z)
If there is no tick for that second, or the tick is missed, the code will not be executed
Probably this
If there is no tick for that second, or the tick is missed, the code will not be executed
Probably this
If there is no tick for that second, or the tick is missed, the code will not be executed
Yes. Specific time is a no go. Must use something else.
Yes. Specific time is a no go. Must use something else.
if(Hour()==X && Minute()==Y)
Use || to expand the coverage for the minute
Use || to expand the coverage for the minute
You need to use ( ) so that it would execute properly. Applies to others when necessary.
You need to use ( ) so that it would execute properly. Applies to others when necessary.
Still has the same problem. What if there are no ticks during those two minutes, such as the Asian session.
Still has the same problem. What if there are no ticks during those two minutes, such as the Asian session.
I used this, just to ensure that it does place (trading 5M):
A tick seems to come in in one of these.
Thanks for your help!