Return the value of the lowest price over a number of N bars of the defined price.
Syntax:
1 |
lowest[N](price) |
Example:
1 2 3 4 5 6 7 |
if(Low<Lowest[30](close)) THEN bandL = Low ELSE bandL = Lowest[30](close) ENDIF RETURN bandL |