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 ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

My RSI Ribbon for Amibroker (AFL)

Copy & Paste Friendly



//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
Back