[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: [amibroker] RSI of ROC



PureBytes Links

Trading Reference Links

Just use the rsia functionand use roc as argument

 


From: amibroker@xxxxxxxxxxxxxxx [mailto:amibroker@xxxxxxxxxxxxxxx] On Behalf Of bartvandyk
Sent: Saturday, 26 April 2008 5:09 AM
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] RSI of ROC

 

I would like to plot the RSI of ROC. I copied the following formula
from the library:

To find the 14-day RSI of Stochd(14):
/*14-Day RSI of StochD(14)*/
t=14;
Var=Stochd(14);
Up=IIf(Var>Ref(Var,-1),abs(Var-Ref(Var,-1)),0);
Dn=IIf(Var<Ref(Var,-1),abs(Var-Ref(Var,-1)),0);
Ut=Wilders(Up,t);
Dt=Wilders(Dn,t);
RSIt=100*(Ut/(Ut+Dt));
Graph0=RSIt;
An interesting application is in
http://groups.yahoo.com/group/amibroker/message/7628
where the 14-day RSI of MACD() is introduced.

I substituted Stochd(14) for ROC(14), but the resulting graph is blanc

Does anyone have time to shine a light on that?

Thanks.

__._,_.___

Please note that this group is for discussion between users only.

To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com

For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/

For other support material please check also:
http://www.amibroker.com/support.html




Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe

__,_._,___