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 Spike Indicator for Amibroker (AFL)

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

Identification of volume spike in a given period. I find it quite useful to spot significant demand shift.

Indicator / Formula

Copy & Paste Friendly

Apply to price chart

Filter =  
 V>=1.3*MA(V,30)
AND C>=1
AND C*V >=3000000
AND C>1.02*Ref(C,-1)
AND C>=MA(C,30) 
AND MA(V,30)>=50000
AND C>=O
AND Ref(V,-5)>50000
AND Ref(V,-10)>50000
 ;

AddColumn(((C - Ref(C,-1))/Ref(C,-1))*100 ,"% Tang gia ");
AddColumn(C*V,"Gia tri GD ");
AddColumn(C,"GIA HIEN TAI");
AddColumn(V,"KHOI LUONG HIEN TAI");
AddSummaryRows(16, 1.2,5);

5 comments

1. ocil

Above AFL with English translated.

Filter =  
 V>=1.3*MA(V,30)
AND C>=1
AND C*V >=3000000
AND C>1.02*Ref(C,-1)
AND C>=MA(C,30) 
AND MA(V,30)>=50000
AND C>=O
AND Ref(V,-5)>50000
AND Ref(V,-10)>50000
 ;

AddColumn(((C - Ref(C,-1))/Ref(C,-1))*100 ,"% Price increase ");
AddColumn(C*V,"GD value ");
AddColumn(C,"CURRENT PRICE");
AddColumn(V,"CURRENT VOLUME");
AddSummaryRows(16, 1.2,5);
2. niladri

This is an volume exploration code. For performing Analysis.

3. chuong8888

bạn ơi bạn người việt phải ko bạn? mình đang AFL mấy bài nhưng đợi hoài không được duyệt nhỉ

4. dominhy

Why C>=1 AND C>=0 ?
If C>=1 then C>=0.

5. dominhy

Your code is a filter, not an indicator

Leave Comment

Please login here to leave a comment.

Back