Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
William %R with OB 80 & OS 20 for Amibroker (AFL)
We usually read William %R’s Overbought -20 and Oversold -80.
We can change some code to read William %R OB & OS as we read Stochastic’s OB & OS.
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | _SECTION_BEGIN ( "William's % R" ); /* We usually read William %R's Overbought -20 and Oversold -80. We can change some code to read William %R OB & OS as we read Stochastic's OB & OS. */ periods = 14 ; R = 100 - 100 * ( HHV ( H , periods ) - C )/( HHV ( H , periods ) - LLV ( L , periods ) ); // 80 20 Plot ( R, "" , colorRed , styleLine | styleThick ); Plot (80, "" , colorDarkGrey , styleDashed ); Plot (20, "" , colorDarkGrey , styleDashed ); Title = EncodeColor (16)+ "{{DATE}} - " + Name () + " - " + "{{INTERVAL}} " + " W%R 14 " + WriteVal (r,1.2); _SECTION_END (); |
0 comments
Leave Comment
Please login here to leave a comment.
Back