Code cleanup

This commit is contained in:
2025-06-12 21:01:38 -04:00
parent aebc175573
commit 1aae526589

View File

@@ -11,9 +11,6 @@ using MarketData.Cache;
using MarketData.Generator;
using MarketData.ModelHelper;
using MarketData.Numerical;
using MarketData.Generator.Momentum;
using MarketData.Generator.MGSHMomentum;
using MarketData.Generator.CMMomentum;
namespace MarketData.Services
{
@@ -285,8 +282,8 @@ namespace MarketData.Services
symbols.AddRange(watchlistSymbols);
symbols = symbols.Distinct().ToList();
MDTrace.WriteLine(LogLevel.DEBUG,$"Updating {symbols.Count} prices. Includes {portfolioSymbols.Count} open positions and {watchlistSymbols.Count} Valuation watchlist.");
PricingMarketDataHelper pricingMarketDataHelper=new PricingMarketDataHelper();
pricingMarketDataHelper.UpdateLatestPrices(symbols);
PricingMarketDataHelper pricingMarketDataHelper=new PricingMarketDataHelper();
pricingMarketDataHelper.UpdateLatestPrices(symbols);
}
catch (Exception exception)
{