Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Self Adjusting RSI for Amibroker (AFL)
This indicator uses dynamic overbought/oversold zones with the classic RSI indicator to improve performance and reduce false signals.
Similar Indicators / Formulas
Indicator / Formula
p = Param("Periods", 14, 2, 100, 1 ); r = RSI( p ); w = 1.8 * StDev( r, p ); Plot( r, "RSI(" + p +")", colorBlack, styleThick ); Plot( 50 + w, "OB", colorLightBlue, styleThick ); Plot( 50 - w, "OS", colorLightBlue, styleThick ); allbars = LastValue( Cum(1) ) - 2 * p - 1; Plot( LastValue( MA( 50 + w, allbars ) ), "MeanOB", colorRed, styleNoLabel ); Plot( LastValue( MA( 50 - w, allbars ) ), "MeanOS", colorRed, styleNoLabel );
1 comments
Leave Comment
Please login here to leave a comment.
Back
Error in 50 + w