Returns the lowest value of all prices within a given look back period.
The lowest value of the specified (look back) period.
We illustrate the application of this method with the following example. If the prices over the past five periods are: { 102, 101, 100, 103, 102 }, and the look back period has 3 periods, then the value of the lowest value is 100, which is the highest value within { 101, 100, 103, 102 }.
| Exception Type | Condition |
|---|---|
| ArgumentException | Thrown if prices array has strictly negative elements or if the noOfPeriods argument is greater then the length of prices array. |
Momentum Class | WebCab.COM.Finance.Trading.Indicators Namespace | LowestPeriod