Seeking Help???

#1
hi,
i have been using amibroker for some time now.....but have no clue bout programming:(........can anyone help me construct the following afl.......i think it should be pretty simple........


1. scan for stocks where volume is greater then or equal to twice the 200 ma of volume........


requesting your kind help

abhijit sen
 
#2
Filter = Volume >= (2 * MA(Volume,200));


AddColumn( Close, "Close", 2.2 );
AddColumn(Volume, "Volume",10);
AddColumn(MA(Volume,200), "200maV",10);

Copy paste it otherwise hardcode it in the editor.

It means calculate 200ma of the volume multiply by two and if its greater than or equal to the current volume display Close, current Volume and the 200ma of Vol. u can add open high low etc

Bye
 

Similar threads