Hi @Philey
Here is the screener…
You can set the periods of the different signals (Bollinger, RSI, Highest, Lowest) yourself…
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
TimeFrame (Daily )
S1= BollingerUp [ 5 ] (close )
S2= BollingerDown [ 5 ] (close )
S3= RSI [ 5 ] (close )
S4= Highest [ 5 ] (Close )
S5= Lowest [ 5 ] (Close )
TimeFrame (1 hour )
Signal= 0
xPercent= 1 //Minimal 1% move
If DayOfWeek = 5 and OpenTime = 080000 then
xOpen080000 = Open
ElsIf DayOfWeek = 5 and OpenTime = 210000 then
xClose210000 = Close
EndIf
xMove = ((xClose210000 - xOpen080000) / xOpen080000)* 100
C1= xMove>= xPercent
C2= xMove<= - xPercent
C3= xClose210000> S1
C4= xClose210000< S2
C5= S3> 65
C6= S3< 35
C7= xClose210000>= S4
C8= xClose210000<= S5
If C1 and C3 and C5 and C7 then
Signal= 1
ElsIf C2 and C4 and C6 and C8 then
Signal= 2
EndIf
Screener [ Signal] (Signal as "1=Long, 2=Short" )