Fix symbol cache.

This commit is contained in:
2024-06-20 08:59:30 -04:00
parent ef2d62ce58
commit 0b4ad6ddeb

View File

@@ -9,6 +9,7 @@ using MarketData;
using MarketData.Utils;
using System.Windows.Media.Animation;
using MarketData.DataAccess;
using System.Diagnostics;
namespace TradeBlotter.Cache
{
@@ -79,7 +80,8 @@ namespace TradeBlotter.Cache
quantums=0;
lock(thisLock)
{
symbolCache.Clear();
// symbolCache.Clear();
symbolCache=PricingDA.GetSymbols();
}
}
}