Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Two day rsi for Amibroker (AFL)
As simple as it gets, but has good predictive power in the short term
Indicator / Formula
//two day RSI
_SECTION_BEGIN("Two_day_RSI");
period=Param("period",14,1,100,1);
EMA_period=Param("EMA_period",5,1,14,1);
ratio=1.5;
RSI_line=RSI(period);
EMA_RSI_line=EMA(RSI_line,EMA_period);
Buy=EMA_RSI_line/Ref(EMA_RSI_line,-1)>=ratio AND RSI_line<40;
Sell=Barssince(Buy)==3;
Short=Ref(EMA_RSI_line,-1)/EMA_RSI_line>=ratio AND RSI_line>60;
Cover=Barssince(Short)==3;
_SECTION_END();1 comments
Leave Comment
Please login here to leave a comment.
Back
Screenshot of Trade(If anyone cn find) Please….
Explored the Code and could manage to find only 1 trade(India Cement on 30/01/2014) in 3.5 years from 200 scrips.
However, Ideology is Good but needs a lot of Improvisation.