Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
350 Swing Price chart for Amibroker (AFL)
Barbara Stars 350 Swing Indicator, article from Stocks & Commodities magazine edited…
Screenshots
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | // Barbara Stars 350 Swing Indicator article from Stocks & Commodities magazine edited... _SECTION_BEGIN ( "350Swing" ); nRSILen = Param ( "RSI Length" , 3, 2, 50 ); nMALen = Param ( "MA Length" , 3 ); UpColor = ParamColor ( "UpColor" , colorGreen ); DnColor = ParamColor ( "DnColor" , colorRed ); r = RSI ( nRSILen ); rma = MA ( r, nMALen ); Color = IIf ( r > 50, UpColor, DnColor ); mode = ParamList ( "Display" , "Price" ); SetBarFillColor ( Color ); Plot ( C , "Price" , Color, styleCandle ); PlotShapes ( ( rma < 20 ) * shapeSmallCircle , colorGreen , 0, L , -20 ); PlotShapes ( ( rma > 80 ) * shapeSmallCircle , colorRed , 0, H , 20 ); _SECTION_END (); |
0 comments
Leave Comment
Please login here to leave a comment.
Back