|
allan nathan
2015-08-06 14:38:43
|
|
Hi,
I was trying to plot the weekly RSI and daily RSI on a daily chart.I thought that the formula would work.
a=rsi(14);
timeframeset(7);
b=rsi(14);
plot(a,"daily rsi",colorred,chartline,stylesymbolnone);
plot(b,"weekly rsi",colorblue,chartline,stylesymbolnone);
plot(70, "70", colorblue, chartline, stylesymbolnone);
plot(50, "50", colorblue, chartline, stylesymbolnone);
plot(30, "30", colorblue, chartline, stylesymbolnone);
The "weekly rsi" from the formula does not equal the RSI from a weekly chart of the same symbol..What am I doing wrong?
Allan
|
|