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 ....
My RSI Ribbon for Amibroker (AFL)
Copy & Paste Friendly
Back
1 2 3 4 5 6 7 8 9 10 11 | //RSI RIBBON // Drag-and-drop the code on to your price chart _SECTION_BEGIN ( "RSI Ribbon" ); //Plot( 2, /* defines the height of the ribbon in percent of pane width */"", // IIf(RSI()>70,colorLime,IIf(RSI()<30,colorRed,colorYellow)),styleOwnScale|styleArea|styleNoLabel,-0.5,100 ); Plot ( 2, /* defines the height of the ribbon in percent of pane width */ "" , IIf ( RSI ()> EMA ( RSI (),7) OR RSI ()>50, colorLime , IIf ( RSI ()< EMA ( RSI (),7) OR RSI ()<30, colorRed , colorYellow )), styleOwnScale | styleArea | styleNoLabel ,-0.5,100 ); _SECTION_END (); //xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx |