Can anyone create a zerodha scanner?

Can anyone create a zerodha scanner to scanner throw specific list (or all) of stocks and check if price has been increasing constantly form last 5 min. It should check the price every min.

The above given condition is not clear / specific , it may give continues signals, please verify your condition once.  

Example if you want to check on close of every candle on 1 minute time frame for last 5 candles (that is 5min)

CLOSE>REF(CLOSE,1) AND REF(CLOSE,1)>REF(CLOSE,2) AND REF(CLOSE,2)> REF(CLOSE,3) AND REF(CLOSE,3)> REF(CLOSE,4) AND REF(CLOSE,4)> REF(CLOSE,5)

Thanks for the reply…
Basically what I am looking for is…
Check the close price of last five candles (1 min) and if the price is increasing continuously then I should get the single…
e.g.
candle 1 close price is smaller than candle 2 close and so one…… till candle 5
In short the price went on increasing every min (min for last 5 min)