VOLUME Greater than Previous 3 day VOLUME for Amibroker (AFL)
htm9171 over 15 years ago Amibroker (AFL)
Filtering VOLUME Greater than Previous 3 day VOLUME
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
Leave Comment
Please login here to leave a comment.
It is NOT working. Moderator Pl. help
Formula is exploration and scan only.
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