Hello, how might I express this in a screen rule? Or set of rules. I am having difficulties.
(52WH minus 52WL) < 10% of Current Price.
Thank you.
Actually...
This is obviously always true: 52WL <= LastPrice <= 52WH
Therefore, all that is required it to filter for stocks where this is true:
52WH < 1.1 * 52WL
Now just need to find how to exclude stocks with less than n weeks trading history.