Hi,
The code rules as below seemed not to work in a screener. Each screener I tried with the rules in it gave me also (American) stocks below $25.
What is the correct rule to paste in my screeners for this?
MinPrice = 25
MaxPrice = 1000
They work fine for me:
MinPrice = 25
MaxPrice = 1000
c1 = close >= MinPrice
c2 = close <= MaxPrice
SCREENER[c1 AND c2](close AS "Current Price")
Those lines are NOT rules (conditions to be tested). They are values to be tested.
It depends on how the test is made.