addHours
Add (or subtract) hours to a datetime.
datetime(required): the starting datetimecount(required): number of hours to add. Negative to subtract.
utlx
addHours(now(), 3) // 3 hours from now
addHours(now(), -24) // 24 hours ago (same as yesterday, same time)