|
@ -28,6 +28,7 @@ import { |
|
|
} from '@ghostfolio/common/config'; |
|
|
} from '@ghostfolio/common/config'; |
|
|
import { DATE_FORMAT, parseDate } from '@ghostfolio/common/helper'; |
|
|
import { DATE_FORMAT, parseDate } from '@ghostfolio/common/helper'; |
|
|
import { |
|
|
import { |
|
|
|
|
|
Accounts, |
|
|
PortfolioDetails, |
|
|
PortfolioDetails, |
|
|
PortfolioPerformance, |
|
|
PortfolioPerformance, |
|
|
PortfolioReport, |
|
|
PortfolioReport, |
|
@ -101,7 +102,7 @@ export class PortfolioService { |
|
|
userCurrency |
|
|
userCurrency |
|
|
), |
|
|
), |
|
|
transactionCount: account.Order.length, |
|
|
transactionCount: account.Order.length, |
|
|
value: details.accounts[account.name].current |
|
|
value: details.accounts[account.name]?.current ?? 0 |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
delete result.Order; |
|
|
delete result.Order; |
|
@ -110,6 +111,21 @@ export class PortfolioService { |
|
|
}); |
|
|
}); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public async getAccountsWithAggregations(aUserId: string): Promise<Accounts> { |
|
|
|
|
|
const accounts = await this.getAccounts(aUserId); |
|
|
|
|
|
let totalBalance = 0; |
|
|
|
|
|
let totalValue = 0; |
|
|
|
|
|
let transactionCount = 0; |
|
|
|
|
|
|
|
|
|
|
|
for (const account of accounts) { |
|
|
|
|
|
totalBalance += account.convertedBalance; |
|
|
|
|
|
totalValue += account.value; |
|
|
|
|
|
transactionCount += account.transactionCount; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
return { accounts, totalBalance, totalValue, transactionCount }; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
public async getInvestments( |
|
|
public async getInvestments( |
|
|
aImpersonationId: string |
|
|
aImpersonationId: string |
|
|
): Promise<InvestmentItem[]> { |
|
|
): Promise<InvestmentItem[]> { |
|
@ -924,16 +940,9 @@ export class PortfolioService { |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
for (const order of ordersByAccount) { |
|
|
for (const order of ordersByAccount) { |
|
|
let currentValueOfSymbol = this.exchangeRateDataService.toCurrency( |
|
|
let currentValueOfSymbol = |
|
|
order.quantity * portfolioItemsNow[order.symbol].marketPrice, |
|
|
order.quantity * portfolioItemsNow[order.symbol].marketPrice; |
|
|
order.currency, |
|
|
let originalValueOfSymbol = order.quantity * order.unitPrice; |
|
|
userCurrency |
|
|
|
|
|
); |
|
|
|
|
|
let originalValueOfSymbol = this.exchangeRateDataService.toCurrency( |
|
|
|
|
|
order.quantity * order.unitPrice, |
|
|
|
|
|
order.currency, |
|
|
|
|
|
userCurrency |
|
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
|
|
if (order.type === 'SELL') { |
|
|
if (order.type === 'SELL') { |
|
|
currentValueOfSymbol *= -1; |
|
|
currentValueOfSymbol *= -1; |
|
|