Most of the problems with MTF indicator stems from the fact that people try to use them on the Null bar. When i=0 the bar(0) information will be un-reliable. Also you have to watch out for Forward-Peaking within the indicator when back-testing. Depending on how it's programmed, some period may know the future price while other are still forming. I recommend searching and reading as much as you can about the woe's of MTF indicators in mt4.
zen4x:
Hello guys. I googled a bit MTF RSI and I found many indicators that did not work. I needed to plot two reading of RSI on one timeframe using two separate buffers.
I noticed at first glance the indicator works but the readings are completely wrong.
- Do you have D1 and H4 history for the time you're looking at?
shift = iBarShift(Symbol(), PERIOD_D1, iTime(Symbol(), 0, i), false); rsiDailyReading = iRSI(Symbol(), PERIOD_D1, 14, PRICE_CLOSE, shift); rsi4Reading = iRSI(Symbol(), PERIOD_H4, 14, PRICE_CLOSE, i);
It correctly shifts for the D1, but the H4 doesn't not. So it can only run on a H4 chart.- Also remember, tester limitation, you can't see bar zero or other TF/pairs.

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
Hello guys. I googled a bit MTF RSI and I found many indicators that did not work. I needed to plot two reading of RSI on one timeframe using two separate buffers.
I noticed at first glance the indicator works but the readings are completely wrong.