Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
STORSI for Amibroker (AFL)
Simple average of linear regressions of Stochastic and RSI indicators. A smoothed combination of these two indicators.
Screenshots
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 | periods = Param ( "Periods" , 14, 1, 200, 1 ); Ksmooth = Param ( "%K avg" , 3, 1, 200, 1 ); regperiods = Param ( "LinRegPeriods" , 13 ); maperiods = Param ( "MAPeriods" , 4 ); LRSI = LinearReg ( RSI ( periods),regperiods); LSTO = LinearReg ( StochK ( periods, Ksmooth),regperiods); STORSI = (LRSI + LSTO)/2; STORSIma = WMA (STORSI,maperiods); Plot ( STORSI, _DEFAULT_NAME (), ParamColor ( "STORSIColor" , colorBlue ), ParamStyle ( "STORSIStyle" ) ); Plot ( STORSIma, "STORSIma" + _PARAM_VALUES (), ParamColor ( "MAColor" , colorRed ), ParamStyle ( "MAStyle" ) ); |
0 comments
Leave Comment
Please login here to leave a comment.
Back