Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Rainbow for Amibroker (AFL)
This a rainbow chart produced by many moving averages.
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 23 24 25 26 27 28 | _SECTION_BEGIN ( "MA Rainbow" ); side = 1; increment = Param ( "Increment" ,2, 1, 10, 1 ); for ( i = 10; i < 80; i = i + increment ) { up = MA ( C , i ); down = MA ( C , i + increment ); if ( ParamToggle ( "3D effect?" , "No|Yes" , 1 ) ) side = IIf (up<=down AND Ref ( up<=down, 1 ), 1, 0.6 ); PlotOHLC ( up,up,down,down, "MA" +i, ColorHSB ( 3*(i - 10), Param ( "Saturation" , 128, 0, 255 ), side * Param ( "Brightness" , 255, 0, 255 ) ), styleCloud | styleNoLabel ); } _SECTION_END ( ); |
0 comments
Leave Comment
Please login here to leave a comment.
Back