Hi,
I'm able to get the current time minutes information
Which is the best way to know which 15 min block currently?
EG, 00 - 14 = 1
15 - 29 = 2
30 - 44 = 3
45 - 59 = 4
- Experts: News Hour Trade
- Fastest way of getting current price
- Which is the timeframe you are using the most to make your trading decisions?
int now = TimeCurrent(); int hourSec = now % 3600; // [1 … 3599] Seconds into the hour. int hourMin = hourMin / 60; // [0 … 59] Minutes into the hour. int quarter = hourMin / 15 + 1; // [1 … 4] Quarter of the hour.

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