|
|
@ -225,7 +225,7 @@ export class AnalysisPageComponent implements OnDestroy, OnInit { |
|
|
|
private fetchDividendsAndInvestments() { |
|
|
|
this.dataService |
|
|
|
.fetchDividends({ |
|
|
|
filters: this.activeFilters, |
|
|
|
filters: this.userService.getFilters() ?? this.activeFilters, |
|
|
|
groupBy: this.mode, |
|
|
|
range: this.user?.settings?.dateRange |
|
|
|
}) |
|
|
@ -238,7 +238,7 @@ export class AnalysisPageComponent implements OnDestroy, OnInit { |
|
|
|
|
|
|
|
this.dataService |
|
|
|
.fetchInvestments({ |
|
|
|
filters: this.activeFilters, |
|
|
|
filters: this.userService.getFilters() ?? this.activeFilters, |
|
|
|
groupBy: this.mode, |
|
|
|
range: this.user?.settings?.dateRange |
|
|
|
}) |
|
|
@ -313,7 +313,7 @@ export class AnalysisPageComponent implements OnDestroy, OnInit { |
|
|
|
|
|
|
|
this.dataService |
|
|
|
.fetchPortfolioPerformance({ |
|
|
|
filters: this.activeFilters, |
|
|
|
filters: this.userService.getFilters() ?? this.activeFilters, |
|
|
|
range: this.user?.settings?.dateRange |
|
|
|
}) |
|
|
|
.pipe(takeUntil(this.unsubscribeSubject)) |
|
|
@ -358,7 +358,7 @@ export class AnalysisPageComponent implements OnDestroy, OnInit { |
|
|
|
|
|
|
|
this.dataService |
|
|
|
.fetchPositions({ |
|
|
|
filters: this.activeFilters, |
|
|
|
filters: this.userService.getFilters() ?? this.activeFilters, |
|
|
|
range: this.user?.settings?.dateRange |
|
|
|
}) |
|
|
|
.pipe(takeUntil(this.unsubscribeSubject)) |
|
|
|