Skip to content

Commit 634bdf1

Browse files
authored
Feature/extend portfolio snapshot by activities count (ghostfolio#4352)
* Extend portfolio snapshot by activities count * Update changelog
1 parent 190abdf commit 634bdf1

File tree

4 files changed

+7
-0
lines changed

4 files changed

+7
-0
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Added
1111

1212
- Extended the export functionality by the tags
13+
- Extended the portfolio snapshot in the portfolio calculator by the activities count
1314
- Extended the user endpoint `GET api/v1/user` by the activities count
1415

1516
### Changed

apps/api/src/app/portfolio/calculator/portfolio-calculator.ts

+1
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@ export abstract class PortfolioCalculator {
175175

176176
if (!transactionPoints.length) {
177177
return {
178+
activitiesCount: 0,
178179
currentValueInBaseCurrency: new Big(0),
179180
errors: [],
180181
hasErrors: false,

apps/api/src/app/portfolio/calculator/twr/portfolio-calculator.ts

+3
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,9 @@ export class TWRPortfolioCalculator extends PortfolioCalculator {
101101
totalInterestWithCurrencyEffect,
102102
totalInvestment,
103103
totalInvestmentWithCurrencyEffect,
104+
activitiesCount: this.activities.filter(({ type }) => {
105+
return ['BUY', 'SELL'].includes(type);
106+
}).length,
104107
errors: [],
105108
historicalData: [],
106109
totalLiabilitiesWithCurrencyEffect: new Big(0),

libs/common/src/lib/models/portfolio-snapshot.ts

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ import { Big } from 'big.js';
99
import { Transform, Type } from 'class-transformer';
1010

1111
export class PortfolioSnapshot {
12+
activitiesCount: number;
13+
1214
@Transform(transformToBig, { toClassOnly: true })
1315
@Type(() => Big)
1416
currentValueInBaseCurrency: Big;

0 commit comments

Comments
 (0)