Returns an array which contains the lower lows values of prices array within a given
period considering a look back period of n days.
Syntax
Parameters
- sc
- A collection of series objects. For example, to evaluate this indicator for two series
you will need to pass a series collection containing this two series.
- noOfDays
- The number of days before to which the closing price is compared.
Return Value
A series where the first term is the low calculated for the most recent trading period,
the second term is the low for the previous trading period and so on.
Exceptions
Exception | Description |
ArgumentException | Thrown if the series has strictly negative elements
or if the noOfDays argument is greater then the length of prices array. |
See Also