First 15 mins candle breakout high low

Hi,

Can someone help me in creating a alert with Sentinel for first 15 mins candle breakout high/low for a particular stock everyday.

Your kind help if deeply appreciated.

An exact breakout cannot be created. You can combine time function and comparison between LTP and High/ Low. When LTP equals to High/ Low not more than that. We can get an alert.

LastTradedPrice(‘NSE:ITC’) >= HighPrice(‘NSE:ITC’) && Timestamp() > DateString(‘2020-08-19 09:30:00’)

This won’t provide alert every day once the condition is triggered it need to enable it again with a new date.
This won’t function as a break out strategy. Sentinel does not store value in variables. For such strategy you can check Streak.

Thank you Nagaveni