public HistoryPriceFeature(PairOfMarket pair, TimeframeType timeframe, int barCount) : this(pair, timeframe)
        {
            var minutes = timeframe.ToMinutes() * barCount;

            StartTime = DateTime.Now.Subtract(new TimeSpan(0, minutes, 0));
        }