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 Greater than Previous 3 day VOLUME for Amibroker (AFL)

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

Filtering VOLUME Greater than Previous 3 day VOLUME

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 about 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
//        VOLUME Greater than Previous 3 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( Volume, "Volume" );


V2DAY = Ref( V, -1 ) + Ref( V, -2 ) ;
V3DAY = Ref( V, -1 ) + Ref( V, -2 ) + Ref( V, -3 );


Filter = V > V3DAY ;

Buy= V > V3DAY ;

3 comments

1. Shrikant

It is NOT working. Moderator Pl. help

2. administrator

Formula is exploration and scan only.

3. bullnbear

HI
Many Thanks
Can you add another filter price Closes More then 5% of first day so that it can show us the clear direction of uptrend and down trend
Thanks

Leave Comment

Please login here to leave a comment.

Back