Hi,
I’m looking for a way to select the lowest closing price but not on last x candles. Instead I’d like to choose an interval going from 20 days ago until 10 days ago. So something like “LOWEST[20-10](close)” but this syntax does not exist 🙂
I hope I was clear ?
how would you solve that ?
thanks
Choose the one you need:
myLow = lowest[10](low[10]) //lowest from low[10] to low[19]
myLow = lowest[11](low[10]) //lowest from low[10] to low[20]
you lost me there. maybe some typos, no ? 🙂
Did you get correct or incorrect data?
The attached files show what data they will access.
i got correct data, thanks Roberto.
it just took me a moment to figure it out 🙂