Hi guys, unsure why my code is not working?
//Conditions
C1 = Close<0.20
C2 = Close>0.012
C5 = Volume>50000000
//Indicators
I1 = Average[20](close)
I3 = Average[5](close)
C6 = I3>I1
AllConditions = C1 and C2 and C5 and C6
SCREENER(AllConditions)
I can see in the first 50 results a stock at $55 per share with on 11,000 volume which is completely against my conditions above.
What’s the go?
Ignore me. Apparently they return every single stock regardless of whether it meets criteria defined by “and” which I thought was pretty clear in coding world to exclude anything that doesn’t meet x, y AND z. How am I supposed to change my sorting without getting all the ones that don’t meet my criteria?
Screener conditions must be syntaxed like this: (with brackets, not parenthesis)
SCREENER[AllConditions]