PureBytes Links
Trading Reference Links
|
Hi,
I believe either
Highest(H[10], 5)
or
Highest(H, 5)[10]
will work. The first is better in that it doesn't create a
series for the highest() function.
regards,
tbr
>
> What is the ELA code for the highest high for the 5 minute range ending 10
> minutes ago? i.e.
>
> maxlist(h[5],h[6],h[7],h[8],h[9])
>
> or how about
>
> MaxList (h,5[10]) ???????
>
|