Hi there,
I am trying to work out how to do the highest high, but with the highest high not starting from [0 to 10], but from [10 to 20], for example.
What I mean is –
For bars 0 to 10 previous, the highest high would be
HH = highest[10](high)
This is the usual formula.
But – what I need – is how do I then find the highest high from bars 10 previous to bars 20 previous, as a separate number.
something like:
HH2 = highest[10 to 20](high)
Would like to have HH and HH2 as two separate numbers to compare.
Any help with how to do this?
Thanks,
Finning.
There you go:
HH = highest[11](high[10])
it’s eleven bars, 10 to 20.