Good morning,
Id’ like to screen the market in order get the stocks that have an >70% distance from 52 week low.
Could you please help me how to write this code?
Many Thanks,
stocks that have value 170% higher than the 52 weeks low?
timeframe(weekly)
ll = lowest[52](low)
timeframe(default)
dist = close/ll>=1.7
screener[dist](close/ll)
stocks that have value 170% higher than the 52 weeks low?
|
|
timeframe(weekly)
ll = lowest[52](low)
timeframe(default)
dist = close/ll>=1.7
screener[dist](close/ll)
|
First of all many thanks for your reply. My idea is to focus on stocks that are 70% (not 170%) higher than their 52 week low