public void ResetsProperly()
        {
            int _shortPeriod = 10;
            int _longPeriod = 30;
            int _correlationWidth = 3;
            DateTime time = DateTime.Now;
            Random randomValue = new Random(123);

            AutocorrelogramPeriodogram AP = new AutocorrelogramPeriodogram(_shortPeriod, _longPeriod, _correlationWidth);

            for (int i = 0; i < (_longPeriod + _correlationWidth + 1); i++)
            {
                decimal actualValue = (decimal)randomValue.NextDouble();
                AP.Update(new IndicatorDataPoint(time, actualValue));
                time.AddMinutes(1);
            }
            Assert.IsTrue(AP.IsReady, "AutocorrelogramPeriodogram ready");
            AP.Reset();
            TestHelper.AssertIndicatorIsInDefaultState(AP);
        }