diff --git a/UIUtils/ProformaAddPositionDialog.xaml.cs b/UIUtils/ProformaAddPositionDialog.xaml.cs index 67b610b..d188e18 100644 --- a/UIUtils/ProformaAddPositionDialog.xaml.cs +++ b/UIUtils/ProformaAddPositionDialog.xaml.cs @@ -15,6 +15,7 @@ using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Shapes; using System.Windows.Threading; +using TradeBlotter.Cache; namespace TradeBlotter.UIUtils { @@ -48,7 +49,8 @@ namespace TradeBlotter.UIUtils txtExposure.TextChanged += txtExposure_SelectionChanged; dpPurchaseDate.SelectedDateChanged += dpPurchaseDate_SelectionChanged; - symbols=PricingDA.GetSymbols(); +// symbols=PricingDA.GetSymbols(); + symbols=SymbolCache.GetInstance().GetSymbols(); Title = title; Shares = 0.00; Exposure = 0.00;