On June 30, 2017, GOOG and YAHOO databases have been deleted from the Quandl site, so now History requests for these symbols are returning empty lists and regression test is failing.
The HistoryAlgorithm has been updated to use the CHRIS/CME_SP1 ticker instead of YAHOO/INDEX_SPY.
Non-generic history methods returning IEnumerable<TradeBar> have been marked as obsolete because they return an empty result when called with Forex and CFD security types.
The recommended replacements are their generic equivalents, using TradeBar or QuoteBar data type arguments, depending on the security type.
Fixes bug in backtest history provider
Requests for bar counts were always incorrect because the history provider
was emitting bars whose end time is equal to the start time.
Implemented a FilterEnumerator<T> privately so he can filter those out
when using non-tick data