Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ghostfolio/commit/cdc8faff7fdc8ab2552dab357f33f472d4bf0a2b?style=split&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
12 additions and
3 deletions
@ -32,7 +32,7 @@ function dateEqual(date1: Date, date2: Date) {
) ;
) ;
}
}
jest . mock ( ' ./current-rate.service.ts ', ( ) = > {
jest . mock ( ' @ghostfolio/api/app/core/current-rate.service ', ( ) = > {
return {
return {
// eslint-disable-next-line @typescript-eslint/naming-convention
// eslint-disable-next-line @typescript-eslint/naming-convention
CurrentRateService : jest.fn ( ) . mockImplementation ( ( ) = > {
CurrentRateService : jest.fn ( ) . mockImplementation ( ( ) = > {
@ -546,7 +546,9 @@ describe('PortfolioCalculator', () => {
symbol : 'VTI' ,
symbol : 'VTI' ,
investment : new Big ( '4460.95' ) ,
investment : new Big ( '4460.95' ) ,
marketPrice : new Big ( '213.32' ) ,
marketPrice : new Big ( '213.32' ) ,
transactionCount : 5
transactionCount : 5 ,
grossPerformance : new Big ( '872.05' ) , // 213.32*25-4460.95
grossPerformancePercentage : new Big ( '0.19548526659119694236' ) // 872.05/4460.95
}
}
} ) ;
} ) ;
} ) ;
} ) ;
@ -121,6 +121,9 @@ export class PortfolioCalculator {
currency : item.currency ,
currency : item.currency ,
userCurrency : this.currency
userCurrency : this.currency
} ) ;
} ) ;
const grossPerformance = new Big ( marketValue . marketPrice )
. mul ( item . quantity )
. minus ( item . investment ) ;
result [ item . symbol ] = {
result [ item . symbol ] = {
averagePrice : item.investment.div ( item . quantity ) ,
averagePrice : item.investment.div ( item . quantity ) ,
firstBuyDate : item.firstBuyDate ,
firstBuyDate : item.firstBuyDate ,
@ -128,7 +131,9 @@ export class PortfolioCalculator {
symbol : item . symbol ,
symbol : item . symbol ,
investment : item.investment ,
investment : item.investment ,
marketPrice : marketValue.marketPrice ,
marketPrice : marketValue.marketPrice ,
transactionCount : item.transactionCount
transactionCount : item.transactionCount ,
grossPerformance ,
grossPerformancePercentage : grossPerformance.div ( item . investment )
} ;
} ;
}
}
@ -290,6 +295,8 @@ interface TimelinePosition {
quantity : Big ;
quantity : Big ;
symbol : string ;
symbol : string ;
investment : Big ;
investment : Big ;
grossPerformancePercentage : Big ;
grossPerformance : Big ;
marketPrice : number ;
marketPrice : number ;
transactionCount : number ;
transactionCount : number ;
}
}