GumRai:
You are checking the value for the last closed bar on the H1 chart, so it cannot detect a cross at 7:38
At 7:38 it is checking the 6:00 bar
Thanks man.
To whom it might concern. Reading at the minute and second zero will get the last RSI reading immediately. Maybe there is a more efficient way but this is how i solved my problem.
if (Hour0 == TimeHour(TimeCurrent())) return; Hour0 = TimeHour(TimeCurrent()); { iRSI(NULL,60,3,PRICE_OPEN,0) //This will get you the reading at the beginning of the hour }
The first 2 lines I got from WHRoeder.

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 tested this on the strategy tester and the problem is that the signal lags i dunno why. Any help would be appreciated.