Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
William's % R Gradient Indicator for Amibroker (AFL)
A fully customizable and colorful gradient indicator of William’s %R.
Screenshots
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | _SECTION_BEGIN ( "William's % R Gradient" ); function PercentR( periods ) { return -100 * ( HHV ( H , periods ) - C )/( HHV ( H , periods ) - LLV ( L , periods ) ); } Plot ( PercentR( Param ( "Periods" , 14, 2, 100 ) ), _DEFAULT_NAME (), IIf ( C > O , ParamColor ( "Up Color" , colorBrightGreen ), ParamColor ( "Down Color" , colorDarkRed ) ), ParamStyle ( "Style" , styleLine , maskHistogram ), 1 ); _SECTION_END (); _SECTION_BEGIN ( "Background_Setting" ); SetChartBkGradientFill ( ParamColor ( "BgTop" , colorDarkOliveGreen ), ParamColor ( "BgBottom" , colorCustom2 ), ParamColor ( "titleblock" , colorCustom4 )); Plot ( -20 , "" , colorGreen , styleDashed ); Plot ( -80 , "" , colorRed , styleDashed ); _SECTION_END (); |
0 comments
Leave Comment
Please login here to leave a comment.
Back