Return the value of the highest price over a number of N bars of the defined price.
Syntax:
1 |
highest[N](price) |
Example:
1 2 3 4 5 6 7 |
if(High>Highest[10](close)) THEN bandH = High ELSE bandH = Highest[10](close) ENDIF RETURN bandH |