Commit Latest

This commit is contained in:
2025-06-29 08:52:11 -04:00
parent 5844d86331
commit 3215fd04d9
2 changed files with 5 additions and 14 deletions

View File

@@ -455,7 +455,6 @@ namespace PortfolioManager.Renderers
Close = BollingerBandModel.Close(bollingerBands);
SMAN = BollingerBandModel.SMAN(bollingerBands);
Volume = BollingerBandModel.Volume(bollingerBands);
// LeastSquares = BollingerBandModel.LeastSquares(bollingerBands);
Scatter scatter = default;
{

View File

@@ -41,21 +41,12 @@ namespace PortfolioManager.ViewModels
PropertyChanged += OnViewModelPropertyChanged;
Initialize();
}
// public BollingerBandViewModel(bool loadedFromParams)
// {
// DisplayName = "Bollinger";
// OnPlotterLoadedEventHandler += PlotterLoadedEvent;
// PropertyChanged += OnViewModelPropertyChanged;
// Initialize();
// base.OnPropertyChanged("SelectedSymbol");
// }
protected override void OnDispose()
{
MDTrace.WriteLine(LogLevel.DEBUG, $"Dispose BollingerBandViewModel");
base.OnDispose();
}
{
MDTrace.WriteLine(LogLevel.DEBUG, $"Dispose BollingerBandViewModel");
base.OnDispose();
}
public override String Title
{
@@ -229,6 +220,7 @@ namespace PortfolioManager.ViewModels
{
base.OnPropertyChanged("SelectedWatchList");
base.OnPropertyChanged("SelectedSymbol");
base.OnPropertyChanged("Title");
});
}
catch (Exception exception)