Hello, just new here an not very experienced in coding. I want to make a screener with the following simple conditions: 1 openinggap from yesterdays close and then a breakout from the first 5 minute bar high. So during the day there should be a higher high than in the first 5 minutes. All reactions are much appreciated (thanks!).
gapopen=open>high[1]
timeframe (10 minutes)
c1=time >= 091000 and time<092000
if c1 then
Firstbarhigh = highest[1](high)
else
Higherhigh= high > Firstbarhigh
endif
screener [gapopen and higherhigh]
Is the screener working as intended or do you want someone to analyze it?
Hi Nicolas,
Thanks for your reply. Unfortunately it is not working as intended. There should be an easy way but I have not found it yet.