Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
RSI Time Frame 15min for Amibroker (AFL)
This formula shows the RSI 15min in one window with rsi 5min
For example: The window settings 5min and RSI 15min.
Screenshots
Similar Indicators / Formulas
Indicator / Formula
_SECTION_BEGIN("RSI");
TimeFrameSet(in15Minute);
SetChartOptions(0,0,chartGrid30|chartGrid70);
periods = Param( "Periods", 15, 1, 200, 1 );
Plot( RSI( periods), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style") );
TimeFrameRestore();
_SECTION_END();0 comments
Leave Comment
Please login here to leave a comment.
Back