I want to find all stocks having MA(Volume,20)>10 Lakh from 1-8-2014 and with the MA(Volume,20)
Cond1 = MA( Volume, 20 ) > 1000000;
//Cond2 = MA(Volume,19)>1000000;
Buy = Cond1; // AND Cond2 ;
AddColumn (MA(V,20), "Volume") ;
AddColumn is not working :confused::confused::(