Hi, How do I add a date range to the screener code below? E.g if I want to screen from the the 2nd of December to the 6th of December 2024. 1 2 3 4 5 6 7 8 9 Timeframe(Daily) Sma20 = average[20,0](close[5]) Timeframe(Weekly) c1 = close[1] CROSSES OVER Sma20 Timeframe(default) c2 = (close >= 1) AND (close <= 5) c3 = (high <> low) Cond = c1 AND c2 AND c3 SCREENER[Cond] Regards, Segie