diff --git a/ViewModels/AnalystRatingsViewModel.cs b/ViewModels/AnalystRatingsViewModel.cs index d8f8258..6a2ff57 100644 --- a/ViewModels/AnalystRatingsViewModel.cs +++ b/ViewModels/AnalystRatingsViewModel.cs @@ -17,6 +17,7 @@ using TradeBlotter.Command; using TradeBlotter.Model; using Microsoft.Research.DynamicDataDisplay.DataSources; using System.Threading; +using TradeBlotter.Cache; namespace TradeBlotter.ViewModels { @@ -234,7 +235,8 @@ namespace TradeBlotter.ViewModels private void HandleSelectedWatchList() { MDTrace.WriteLine(LogLevel.DEBUG, "AnalystRatingsViewModel::HandleSelectedDate"); - if (selectedWatchList.Equals(Constants.CONST_ALL)) symbols = PricingDA.GetSymbols(); +// if (selectedWatchList.Equals(Constants.CONST_ALL)) symbols = PricingDA.GetSymbols(); + if (selectedWatchList.Equals(Constants.CONST_ALL)) symbols = SymbolCache.GetInstance().GetSymbols(); else { symbols = WatchListDA.GetWatchList(selectedWatchList);