Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
2 Day RSI filter/buy for Amibroker (AFL)
Simple filter/buy for stocks trading above their 150 day MA It is based on a short term 2 day RSI with ability to set buy/sell date from the parameters screen. liquidity and no. of positions.
Similar Indicators / Formulas
Indicator / Formula
PositionQuan = Param("No. of Positions", 5, 1, 20, 1);
SetOption("InitialEquity", 10000 );
PositionSize = 10000/PositionQuan;
MarketLiquidity = Param("Liquidity in Mill's", 0.3, 0.1, 10, 0.1) *1000000;
BuyStartDate = ParamDate( "Buy Start Date", "2000-01-01" );
EndDate = ParamDate( "Last Buy Date", "2020-01-01" );
DateOK = IIf(DateNum() >= BuyStartDate AND DateNum() <= EndDate, 1, 0);
LiqudityOK = MA(V, 20) * MA(C, 20) >= MarketLiquidity;
RSIPeriod = Param("RSI Period", 7, 2, 10, 1);
EntryRSI = Param("EntryRSI", 4, 4, 20, 2);
Buy = Filter = RSI(RSIPeriod ) < EntryRSI AND LiqudityOK AND DateOK AND C > MA(C,150) ;
Sell = RSI(RSIPeriod ) > 65;
AddColumn(C, "Close");0 comments
Leave Comment
Please login here to leave a comment.
Back