Sentinel advance alert in time bound

Hello,
Please help me out in writing the code for alert as trigger - when last traded price is > by low price *1.04 & with in time bound of 1-2 days.
LastTradedPrice(‘NSE:ACC’) > LowPrice(‘NSE:ACC’) *1.04 && Day() ==2
OR
LastTradedPrice(‘NSE:ACC’) > LowPrice(‘NSE:ACC’) *1.04 && Day() ==1-2

Hi,

The below-given condition might be helpful.

LastTradedPrice(‘NSE:RELIANCE’) >= LowPrice(‘NSE:RELIANCE’) *1.04 && Timestamp() <= DateString(‘2020-08-03’)

The date need to be entered manually on the date string function.

Day() condition indicates the “Current day of the month”.

Hello
This is not working as it take refresh current day price for alert.
Actually I want some thing weekly high or weekly low alert.
Thank U.

Weekly High/low function is not available on sentinel.

Hello,
Does weekly High & Low Alerts are possible in streak scanners, does streak scanners gives sound alert?
Thank You.

@Streak, can you.

You can create a condition for weekly High/Low in Streak.

Yes, you will have to set an alert interval for this. The scan will be run at the mentioned interval and you will receive alerts accordingly.

Hello
Thanks for u r reply.
Thank U.