With Pine code, How do i test to see if the current chart time frame is between 4Hrs and 11Hrs or if the time frame is between 12Hrs and 4days?
What i tried:
IsHourlyTF2() =>
timeframe.isminutes and (timeframe.multiplier >= 240 or timeframe.multiplier < 660)
IsDailyTF() =>
timeframe.isminutes and (timeframe.multiplier >= 720 or timeframe.multiplier < 5760)