This stock screener will return all stocks that have made a daily Volume at least 90% above all the recorded Volumes for the last 75 days (15 trading weeks).
The main purpose of this screener is to catch all stocks that are currently making an huge volume breakout.
Coded by request on French screener forum.
//PRC_BigVolumeIncrease | screener
//19.12.2016
//Nicolas @ www.prorealcode.com
//Sharing ProRealTime knowledge
v = volume
count = 0
for i = 1 to 75 do
if v>volume[i] then
count=count+1
endif
next
condition = count/75>0.9
screener [condition] (count/75 as "percentage")