Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Scan No of Days Increase for Amibroker (AFL)
This is used to scan number of days increase of stocks.
Screenshots
Similar Indicators / Formulas
Indicator / Formula
//Scan number of increasing price days of stocks C > C(-1)
//17/09/2009
Per = Param("Period",10,1,200);
n=0;
if(BarCount <per){
Per = BarCount;
}
if (BarCount > 4){
for (i = BarCount -1; i> BarCount - per; i--){
if (C[i] > C[i-1]){
n=n+1;
}
}
}
Filter = 1;
AddColumn(C,"Close");
AddTextColumn(WriteVal(Per),"Period",1);
AddTextColumn(WriteVal(n),"No of Days Increase",1);
0 comments
Leave Comment
Please login here to leave a comment.
Back