Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
RSI Chart for Amibroker (AFL)
It shows the RSI in usual candlestick format, with O,H,L,C values of RSI of selected time frame. It is gud for those who trade RSI.
Screenshots
Similar Indicators / Formulas
Indicator / Formula
_SECTION_BEGIN("RSI Chart"); SetChartOptions(0,0,chartGrid30|chartGrid70); periods = Param( "Periods", 15, 1, 200, 1 ); O1 = RSIa( Open, periods ); H1 = RSIa( High, periods ); L1 = RSIa( Low, periods ); C1 = RSIa( Close, periods ); PlotOHLC( O1, H1, L1, C1, "RSI Chart", styleCandle ); _SECTION_END();
0 comments
Leave Comment
Please login here to leave a comment.
Back