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

Volume breakout short for Amibroker (AFL)

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

This is a scanner, good for intraday trading. one can adjust parameters as per requirment.

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
/* Create date: 20 II 2004
scanning stock picks for short trade types
modify RK , 22.9.2006,
www.simple-stock-trading.com
*/

Cond1=  MA( Volume, 20 ) > 450000;
Cond2= (Close <= (LLV(Close, 47)*1.05)) AND (Close >= LLV(Close, 60)) ;
Cond3= Filter = Sum(Volume > MA(Volume, 20), 5);
Cond4= Close > 15 ;
Cond5= Close < EMA (Close,20) ;

Filter = Cond1 AND Cond2 AND Cond3 AND Cond4 AND Cond5; 
AddColumn( Close, "Close  " );
AddColumn( Volume, "Volume      " );
AddTextColumn(IndustryID(1),"Industry");

0 comments

Leave Comment

Please login here to leave a comment.

Back