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

MARSI Indicator for Amibroker (AFL)

Rating:
5 / 5 (Votes 1)
Tags:

Plots the RSI of the Moving Average to produce a nice smooth RSI plot.

Screenshots

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("MARSI");
MP = Param(" Period",13,3,100,1);
RP = Param("RSI",14,3,20,1);
UL= Param("Upper Limit",70,0,100,1);
LL= Param("Lower Limit",30,0,100,1);
PlotGrid(UL,colorBlue);    
PlotGrid(LL,colorBlue); 
R= RSIa( MA(C,MP), RP);
Plot(R, "RSI OF MA",  colorBlue, styleLine);


PlotOHLC( R,R,50,R, "", IIf( R > 50, colorLightOrange , colorSkyblue ), styleCloud | styleClipMinMax, LL, UL ); 


_SECTION_END();

0 comments

Leave Comment

Please login here to leave a comment.

Back