I got an array of 300 items, when im using GetBollingerBands and GetSMA i need to enter a (int points), the description says "Numbers of points to analyse backwars in time". When i enter 5 i got 295 items in arrays instead of the last 5.
(double[] xs2, var sma, var bolL, var bolU) = CandlePlot.GetBollingerBands(5);
(double[] xs, double[] ys) = CandlePlot.GetSMA(5);

