Hi,
how can you get the lowest price ever for a stock ?
i’ve tried with « lowest[xxx](close) », but if I set xxx too high, then my screener just stops working. There’s got to be a way 🙂
thanks
JSParticipant
Veteran
Hi,
Screeners have a data history of 256 bars (Premium 1024 bars)
If you take a time frame of a month, you can look back 256 months (21 years)…
TimeFrame(Mounthly)
LowestLowEver=Lowest[256](Low)
Screener[1](LowestLowEver as “LowestLowEver”)
didn’t know about this 256 bar limit, thanks !