Well, maybe. But try this on Yahoo! with 11,000 stocks at once
# Buy if a previous value was below the low Bollinger band and is now above
SET Bottom = BBB(CLOSE, 20, 2, EXPONENTIAL)
SET Top = BBT(CLOSE, 20, 2, EXPONENTIAL)
FIND STOCKS WHERE (((REF(CLOSE, 1) < REF(Bottom, 1)) AND
RSI(CLOSE, 14) > 70 AND VOLUME > REF(VOLUME,1) * 2 AND VOLUME > 100000
AND CROSSOVER(CLOSE, PSAR(0.2, 0.02)) AND CLOSE > Bottom) OR
# Also buy if the close is above the top band plus 2%
RSI(CLOSE, 14) > 70 AND VOLUME > REF(VOLUME,1) * 2 AND VOLUME > 100000
AND CLOSE > Top * 1.02 and MO(CLOSE,7)>75 AND CMO(CLOSE,7) < 60)