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

Vol Peak 5 Day [Scan only] for Amibroker (AFL)

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

VOLUME Peak than Previous 5 Day

Remark.

I just learn Amibroker Fomula about 2 Weeks.

I Willing to listen to criticism.Thank You.

Screenshots

Similar Indicators / Formulas

General Market Exploration by XeL
Submitted by xel over 11 years ago
Scanning Gap Up and Gap Down
Submitted by vinodsk over 10 years ago
Deel - Average Dollar Price Volatility
Submitted by kaiji over 14 years ago
TEMA_Regression Crossover
Submitted by marcheur over 10 years ago
%Change Exploration
Submitted by shshingala over 10 years ago

Indicator / Formula

Copy & Paste Friendly
//        VOLUME Peak than Previous 5 Day VOLUME 


AddTextColumn( FullName(), "Name");
AddColumn( Close, "Close" );
AddColumn( Volume, "Volume" );


AddColumn( Ref( V, -1 ), "VOL -1" );
AddColumn( Ref( V, -2 ), "VOL -2" );
AddColumn( Ref( V, -3 ), "VOL -3" );
AddColumn( Ref( V, -4 ), "VOL -4" );
AddColumn( Ref( V, -5 ), "VOL -5" );
AddColumn( Volume, "Volume" );


V2DAY = Ref( V, -1 ) + Ref( V, -2 ) ;
V3DAY = Ref( V, -1 ) + Ref( V, -2 ) + Ref( V, -3 );
V4DAY = Ref( V, -1 ) + Ref( V, -2 ) + Ref( V, -3 ) + Ref( V, -4 );
V5DAY = Ref( V, -1 ) + Ref( V, -2 ) + Ref( V, -3 ) + Ref( V, -4 ) + Ref( V, -5 );
 

Filter = V > V5DAY ;

Buy= V > V5DAY ;

4 comments

1. hanoom

R u thai?

I’m thai,Nice to meet u.

2. lusmomoney

yes,khon thai krub.^^

Nice to meet u to.

3. cheedellas

good system

4. owied

good system

Leave Comment

Please login here to leave a comment.

Back