// Highlight Time Zones in_zone1 = (hour == 8 and minute >= 30 and minute <= 35) // 8:30 am to 8:36 am EST in_zone2 = (hour == 8 and minute > 35) or (hour == 9) or (hour == 10 and minute == 0) // 8:36 am to 10:00 am EST
// Display motivational message if bar_index == na label.new(bar_index, high, "LA CLAVE ESTÁ EN NO RENDIRSE", style=label.style_label_center, color=color.orange, textcolor=color.black, size=size.large)