How do you scan for this condition?
I tried screening this:
close = 1.7 *lowest close[256]
But it gave an errors.
You can use max. 254 bars with screeners.
Bear in mind that you are using “=” which will make your scan void most of the times (if not always), in the attempt to find an occurrence of the SAME price multiplied by 1.7!
Sorry, off course, that would be >
Is this correct?
c3 = close>1.7*MIN(0,254)
it seems correct, but I also got some results that are not 70% above 52 week low, like AFRM or POSH. Any help on what I’m doing wrong?
c3 = close>1.7*Lowest[254](close)