Constant variable that give the daily Low of the N selected bar from the current one.
Syntax:
1 |
DLow(N) |
Example:
1 2 3 4 5 6 7 8 9 |
//Looking the lowest low of the last 10 bars Newlowest=0 FOR a = 0 TO 10 DO IF DLow(a)<Newlowest or Newlowest=0 THEN Newlowest = DLow(a) ENDIF NEXT RETURN Newlowest |