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

Filter Stocks Where Volume Has Exploded for Amibroker (AFL)
DMT
over 6 years ago
Amibroker (AFL)

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

Filter stocks where volume has exploded based on the following rules:

  • Volume is above its 30 day average by at least 30%
  • Product of price and volume is greater than 3000000
  • Close is at least 2% higher then yesterdays
  • Close is higher then its 30 day average
  • MACD Signal has crossed
  • The average volume is greater then 50000

Indicator / Formula

Copy & Paste Friendly
Filter =  
 V>=1.3*MA(V,30)
AND C>=5
AND C*V >=3000000
AND C>1.02*Ref(C,-1)
AND C>MA(C,30) 
AND MACD(12,26)>= Signal(12,26,9)
AND MA(V,30)>=50000;

AddColumn(((C - Ref(C,-1))/Ref(C,-1))*100 ,"% Increase ");
AddColumn(C,"Price");
AddColumn(V,"Volumn");
AddSummaryRows(16, 1.2,5);

3 comments

1. siddharaj

Dear DMT,

Thank you very much for AFL it’s very good can you one help plz
can you add sound alert in this AFL thanks you and send me if Possible

siddharajsisodiya at gmail dot com

2. sharad

sir can you add buy sale signal also

Comment hidden - Show

Leave Comment

Please login here to leave a comment.

Back