Example #1
0
 /// <summary>
 /// Get current high pivot points, in the order such that first element in collection is the nearest to the present date
 /// </summary>
 /// <returns>An array of high pivot points.</returns>
 /// <remarks>Returned array can be empty if no points have been registered yet/</remarks>
 public PivotPoint[] GetHighPivotPointsArray()
 {
     return(_windowPivotPoints.Where(p => p.PivotPointType == PivotPointType.High).ToArray());
 }