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

1500% gainers for Amibroker (AFL)
popsy
over 13 years ago
Amibroker (AFL)

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

Scan for 1500% gainers :)

Similar Indicators / Formulas

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

Indicator / Formula

Copy & Paste Friendly
// ........... 1500% gainers
aK = LLV(L,260);
bK = HHV(H,260);
cK= bK > aK + aK;
dK = LastValue(C);
eK = dK < bK AND dK > bK * 0.75 ;
Flx = aK AND bK AND cK AND dK AND eK ;
//... Asish vol
bVV = V > Ref(V,-1) + Ref(V,-1) * 0.8 ;
//... 4% breakout
Brk_5pc = C > Ref(C,-1) + Ref(C,-1) * 0.04;
//.... liquidity
Liquid = MA(C,21) * MA(V,21) > 25000 ;//

//....................
Ready_Steady_Go = Flx AND bVV AND Brk_5pc AND Liquid;
Buy = Ready_Steady_Go ;
Sell= 0;
Filter = Buy;
AddColumn(LastValue(C),"Currant",1.0,colorBlack,colorTan);

1 comments

1. SIRISHA

Hi, Nothing working. Neither chart nor exploration. Admin please check on this.. Regards, Sirisha

Leave Comment

Please login here to leave a comment.

Back