Trigger when NiftyBees is 1% down

I am trying to write a query whenever Niftybees is down by 1% it should alert me.

DayChangePercent(‘NSE:NIFTYBEES’) < 1

But it says, The trigger condition is already met.

Kindly help.
Thanks.

I tried this

DayChangePercent(‘NSE:NIFTYBEES’) < -1

Is it correct?

If you want to compare against the previous day’s market close, then you can try -

DayChangePercent('NSE:NIFTYBEES') >= 1

Or, if you want to compare against today’s market open, then you can try -

IntraDayChangePercent('NSE:NIFTYBEES') >= 1

This will generate an alert if NiftyBees goes up/down 1%. It is not possible in Sentinel to select the direction of the move (clarified in a different thread by Zerodha staff)