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

GAINERS/LOSERS SCAN for Amibroker (AFL)

Rating:
4 / 5 (Votes 3)
Tags:
gainers, losers, amibroker, exploration

GAINERS / LOSERS SCAN

To find the scripts which have gained or lost over last closing, with script value above 100 and volume above 100000

Similar Indicators / Formulas

General Market Exploration by XeL
Submitted by xel over 11 years ago
Strength & weakness
Submitted by mfoysalar about 14 years ago
Deel - Average Dollar Price Volatility
Submitted by kaiji over 14 years ago
Scanning Gap Up and Gap Down
Submitted by vinodsk over 10 years ago
Vol Peak 5 Day [Scan only]
Submitted by lusmomoney over 10 years ago

Indicator / Formula

Copy & Paste Friendly
//////////////////////////////////////////////////////////
_SECTION_BEGIN("IntradaySuRe");
C1=Ref(C,-1);
CHANGE=100*(C-C1)/C1;//Change Percentage
q = Param("Price",50,5,10000,5,100);
COND=C>=q AND V>100000;//Price>100 and one day volume >100,000
n = Param("%change",10,1,30,1,5);
Buy=COND AND CHANGE>=n;
Sell=COND AND CHANGE<=-n;
Filter=Buy OR Sell;
AddColumn(IIf(Buy,CHANGE,IIf(Sell,CHANGE,0)) ,"CHANGE%",2.1,colorBlack,IIf(Buy,colorGreen,IIf(Sell,colorRed,colorBlack)));
AddColumn(IIf(Buy,C,IIf(Sell,C,0)) ,"C",2.1,colorBlack,IIf(Buy,colorGreen,IIf(Sell,colorRed,colorBlack)));
AddColumn(IIf(Buy,V,IIf(Sell,V,0)) ,"V",2.1,colorBlack,IIf(Buy,colorGreen,IIf(Sell,colorRed,colorBlack)));
_SECTION_END();

0 comments

Leave Comment

Please login here to leave a comment.

Back