Hi, I have tried to build a screener that is looking for US stocks which are down with >5% in the last two weeks.
This is what I have for now.
TwoWeekHigh = highest[10](high)
FivePercentBelow = 1-(Close/TwoWeekHigh)<5/100
Is there anybody who will help me to complete the screener?
Ofcourse I will share the screener when tested in the library
Thank you!
TwoWeekHigh = highest[12](high)
Perc = ((twoweekhigh-close)/twoweekhigh)*100
FivePercentBelow = Perc >= 5
SCREENER[FivePercentBelow](perc)
I have changed the period to 12 instead of 10 for markets that have 6 candle weeks.
Thanks, I am gonna test it right away.