Trading Nifty by Levels

I am giving some lines of code to explore most volatile stocks.

Filter = (StDev(Close,10) > 4) AND (ROC(Close,1) > 2) AND Close > 100;
AddColumn(Close,"close",1.2);
AddColumn(StDev(Close,10),"volatility",1.2);
AddColumn(ROC(Close,1),"PriceChange",1.2);
AddColumn(Volume,"volume",1.2);

May be of some use for you people?
 

haushang

Well-Known Member
I am giving some lines of code to explore most volatile stocks.

Filter = (StDev(Close,10) > 4) AND (ROC(Close,1) > 2) AND Close > 100;
AddColumn(Close,"close",1.2);
AddColumn(StDev(Close,10),"volatility",1.2);
AddColumn(ROC(Close,1),"PriceChange",1.2);
AddColumn(Volume,"volume",1.2);

May be of some use for you people?
buddy lots of thanks for ur code and please tall me how to use it and where
 
I am giving some lines of code to explore most volatile stocks.

Filter = (StDev(Close,10) > 4) AND (ROC(Close,1) > 2) AND Close > 100;
AddColumn(Close,"close",1.2);
AddColumn(StDev(Close,10),"volatility",1.2);
AddColumn(ROC(Close,1),"PriceChange",1.2);
AddColumn(Volume,"volume",1.2);

May be of some use for you people?
Sandeep,

Thanks for the AFL. Could u give more insight ? In AB, shud we click explore or put as indicator
 

Similar threads