Currently using the below screener to check for large moves on Fridays in FX pairs. I need to add the following parameters: – Price above BB in uptrend or below BB in downtrend (Daily) – RSI Above 65 in uptrend or below 35 in downtrend (Daily) – Price at highest weekly close in uptrend or lowest weekly close in downtrend (Daily) Signal = 0 If DayOfWeek = 5 and OpenTime = 080000 then xOpen080000 = Open ElsIf DayOfWeek = 5 and OpenTime = 210000 then xClose210000 = Close EndIf xMovedown = ((xOpen080000 - xClose210000) / xOpen080000) xMoveUp = ((xClose210000 - xOpen080000) / xOpen080000) If xMovedown > xPercent then Signal = 1 Elsif xmoveUp > xpercent then Signal = 1 EndIf Screener[Signal]