Stock Portfolio Organizer

The ultimate porfolio management solution.

Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

Scan No of Days Increase for Amibroker (AFL)

Rating:
3 / 5 (Votes 2)
Tags:
amibroker, exploration

This is used to scan number of days increase of stocks.

Screenshots

Similar Indicators / Formulas

General Market Exploration by XeL
Submitted by xel over 12 years ago
miftha indicator
Submitted by coolpace over 14 years ago
Deel - Average Dollar Price Volatility
Submitted by kaiji almost 15 years ago
DIX50,20,10
Submitted by morgen over 14 years ago
Volume Spike Exploration
Submitted by ngocleasing over 14 years ago

Indicator / Formula

Copy & Paste Friendly
//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