Stock Portfolio Organizer
The ultimate porfolio management solution.
Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
350 Swing for Amibroker (AFL)
Copy & Paste Friendly
Back
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | // 350 Swing Indicator _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" , "RSI|RSIMA|Price" ); switch ( mode ) { case "RSI" : Plot ( r, _DEFAULT_NAME (), Color ); break ; case "RSIMA" : Plot ( rma, "RSI MA" + _PARAM_VALUES (), colorBlue ); PlotOHLC ( 50, rma, 50, rma, "" , colorLightBlue , styleCloud | styleClipMinMax , 20, 80 ); break ; case "Price" : SetBarFillColor ( Color ); Plot ( C , "Price" , Color, styleCandle ); PlotShapes ( ( rma < 20 ) * shapeSmallCircle , colorGreen , 0, L , -20 ); PlotShapes ( ( rma > 80 ) * shapeSmallCircle , colorRed , 0, H , 20 ); Plot ( HHV ( H , 20 ), "" , colorLightBlue ); Plot ( LLV ( L , 20 ), "" , colorLightBlue ); break ; } _SECTION_END (); |