Trigger for Daily High and Low price for given value

This is with regards to generate alert on sentinel.zerodha.com
I want to generate alert on each market day for specified difference value of High Price & Low Price with respect to Open price on that day. Is it possible on SENTINEL?
Example : I want to generate a alert when Low Price is less than or equal to (-)50 of open price on that day & when High price is greater than or equal to (+) 50 of open price on each day.

You can use the ‘Advance trigger’ option available on Sentinel to write a query for this to generate alerts. Read more on Advance triggers here: https://sentinel.zerodha.com/tutorial/advanced-triggers/

1 Like

You can do this using below given condition.
LastTradedPrice(‘INDICES:NIFTY 50’) >= (OpenPrice(‘INDICES:NIFTY 50’) +100) || LastTradedPrice(‘INDICES:NIFTY 50’) <= (OpenPrice(‘INDICES:NIFTY 50’) -100)

However, this will go to inactive status once triggered. User have got to make it active again if wish to receive alert for the same condition.

4 Likes