From 77b13b88f0358b44b6d14c4b50fecc0a7a5d3948 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Szyma=C5=84ski?= Date: Sat, 2 Dec 2023 09:37:03 +0000 Subject: [PATCH 01/11] Relax check for duplicates in activities import (#2704) * Relax check for duplicates in activities import (allow same day) * Update changelog --- CHANGELOG.md | 3 ++- apps/api/src/app/import/import.service.ts | 11 ++++++----- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a5a5dc5b..5c46a0f8b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +- Relaxed the check for duplicates in the preview step of the activities import (allow same day) - Respected the `withExcludedAccounts` flag in the account balance time series ### Fixed @@ -170,7 +171,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed -- Improved the check for duplicates in the preview step of the activities import (allow different accounts) +- Relaxed the check for duplicates in the preview step of the activities import (allow different accounts) - Improved the usability and validation in the cash balance transfer from one to another account - Changed the checkboxes to slide toggles in the overview of the admin control panel - Switched from the deprecated (`PUT`) to the new endpoint (`POST`) to manage historical market data in the asset profile details dialog of the admin control panel diff --git a/apps/api/src/app/import/import.service.ts b/apps/api/src/app/import/import.service.ts index eb556421d..f89c57770 100644 --- a/apps/api/src/app/import/import.service.ts +++ b/apps/api/src/app/import/import.service.ts @@ -26,7 +26,7 @@ import { import { Injectable } from '@nestjs/common'; import { DataSource, Prisma, SymbolProfile } from '@prisma/client'; import Big from 'big.js'; -import { endOfToday, format, isAfter, isSameDay, parseISO } from 'date-fns'; +import { endOfToday, format, isAfter, isSameSecond, parseISO } from 'date-fns'; import { uniqBy } from 'lodash'; import { v4 as uuidv4 } from 'uuid'; @@ -83,12 +83,13 @@ export class ImportService { const value = new Big(quantity).mul(marketPrice).toNumber(); + const date = parseDate(dateString); const isDuplicate = orders.some((activity) => { return ( activity.accountId === Account?.id && activity.SymbolProfile.currency === assetProfile.currency && activity.SymbolProfile.dataSource === assetProfile.dataSource && - isSameDay(activity.date, parseDate(dateString)) && + isSameSecond(activity.date, date) && activity.quantity === quantity && activity.SymbolProfile.symbol === assetProfile.symbol && activity.type === 'DIVIDEND' && @@ -102,6 +103,7 @@ export class ImportService { return { Account, + date, error, quantity, value, @@ -109,7 +111,6 @@ export class ImportService { accountUserId: undefined, comment: undefined, createdAt: undefined, - date: parseDate(dateString), fee: 0, feeInBaseCurrency: 0, id: assetProfile.id, @@ -482,13 +483,13 @@ export class ImportService { type, unitPrice }) => { - const date = parseISO((dateString)); + const date = parseISO(dateString); const isDuplicate = existingActivities.some((activity) => { return ( activity.accountId === accountId && activity.SymbolProfile.currency === currency && activity.SymbolProfile.dataSource === dataSource && - isSameDay(activity.date, date) && + isSameSecond(activity.date, date) && activity.fee === fee && activity.quantity === quantity && activity.SymbolProfile.symbol === symbol && From 377ba75e4c70c35c625ef48d0ea651668f9b844d Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sat, 2 Dec 2023 17:17:25 +0100 Subject: [PATCH 02/11] Add support to delete a cash balance (#2707) --- .../account-balance.controller.ts | 51 +++++++++ .../account-balance/account-balance.module.ts | 5 +- .../account-balance.service.ts | 19 ++++ .../api/src/app/account/account.controller.ts | 2 +- apps/api/src/app/account/account.module.ts | 2 +- apps/api/src/app/account/account.service.ts | 2 +- apps/api/src/app/order/order.module.ts | 2 +- .../api/src/app/portfolio/portfolio.module.ts | 2 +- .../src/app/portfolio/portfolio.service.ts | 2 +- .../account-detail-dialog.component.ts | 105 ++++++++++++------ .../account-detail-dialog.html | 3 + apps/client/src/app/services/data.service.ts | 4 + libs/common/src/lib/permissions.ts | 3 + .../account-balances.component.html | 23 ++++ .../account-balances.component.ts | 55 ++++----- .../account-balances.module.ts | 11 +- 16 files changed, 226 insertions(+), 65 deletions(-) create mode 100644 apps/api/src/app/account-balance/account-balance.controller.ts rename apps/api/src/{services => app}/account-balance/account-balance.module.ts (68%) rename apps/api/src/{services => app}/account-balance/account-balance.service.ts (80%) diff --git a/apps/api/src/app/account-balance/account-balance.controller.ts b/apps/api/src/app/account-balance/account-balance.controller.ts new file mode 100644 index 000000000..f1538d7a5 --- /dev/null +++ b/apps/api/src/app/account-balance/account-balance.controller.ts @@ -0,0 +1,51 @@ +import type { RequestWithUser } from '@ghostfolio/common/types'; +import { + Controller, + Delete, + HttpException, + Inject, + Param, + UseGuards +} from '@nestjs/common'; +import { REQUEST } from '@nestjs/core'; +import { AccountBalanceService } from './account-balance.service'; +import { AuthGuard } from '@nestjs/passport'; +import { hasPermission, permissions } from '@ghostfolio/common/permissions'; +import { StatusCodes, getReasonPhrase } from 'http-status-codes'; +import { AccountBalance } from '@prisma/client'; + +@Controller('account-balance') +export class AccountBalanceController { + public constructor( + private readonly accountBalanceService: AccountBalanceService, + @Inject(REQUEST) private readonly request: RequestWithUser + ) {} + + @Delete(':id') + @UseGuards(AuthGuard('jwt')) + public async deleteAccountBalance( + @Param('id') id: string + ): Promise { + const accountBalance = await this.accountBalanceService.accountBalance({ + id + }); + + if ( + !hasPermission( + this.request.user.permissions, + permissions.deleteAccountBalance + ) || + !accountBalance || + accountBalance.userId !== this.request.user.id + ) { + throw new HttpException( + getReasonPhrase(StatusCodes.FORBIDDEN), + StatusCodes.FORBIDDEN + ); + } + + return this.accountBalanceService.deleteAccountBalance({ + id + }); + } +} diff --git a/apps/api/src/services/account-balance/account-balance.module.ts b/apps/api/src/app/account-balance/account-balance.module.ts similarity index 68% rename from apps/api/src/services/account-balance/account-balance.module.ts rename to apps/api/src/app/account-balance/account-balance.module.ts index c85727f8c..d78d9792e 100644 --- a/apps/api/src/services/account-balance/account-balance.module.ts +++ b/apps/api/src/app/account-balance/account-balance.module.ts @@ -1,9 +1,12 @@ -import { AccountBalanceService } from '@ghostfolio/api/services/account-balance/account-balance.service'; import { ExchangeRateDataModule } from '@ghostfolio/api/services/exchange-rate-data/exchange-rate-data.module'; import { PrismaModule } from '@ghostfolio/api/services/prisma/prisma.module'; import { Module } from '@nestjs/common'; +import { AccountBalanceController } from './account-balance.controller'; +import { AccountBalanceService } from './account-balance.service'; + @Module({ + controllers: [AccountBalanceController], exports: [AccountBalanceService], imports: [ExchangeRateDataModule, PrismaModule], providers: [AccountBalanceService] diff --git a/apps/api/src/services/account-balance/account-balance.service.ts b/apps/api/src/app/account-balance/account-balance.service.ts similarity index 80% rename from apps/api/src/services/account-balance/account-balance.service.ts rename to apps/api/src/app/account-balance/account-balance.service.ts index e1d002428..0845eda5a 100644 --- a/apps/api/src/services/account-balance/account-balance.service.ts +++ b/apps/api/src/app/account-balance/account-balance.service.ts @@ -12,6 +12,17 @@ export class AccountBalanceService { private readonly prismaService: PrismaService ) {} + public async accountBalance( + accountBalanceWhereInput: Prisma.AccountBalanceWhereInput + ): Promise { + return this.prismaService.accountBalance.findFirst({ + include: { + Account: true + }, + where: accountBalanceWhereInput + }); + } + public async createAccountBalance( data: Prisma.AccountBalanceCreateInput ): Promise { @@ -20,6 +31,14 @@ export class AccountBalanceService { }); } + public async deleteAccountBalance( + where: Prisma.AccountBalanceWhereUniqueInput + ): Promise { + return this.prismaService.accountBalance.delete({ + where + }); + } + public async getAccountBalances({ filters, user, diff --git a/apps/api/src/app/account/account.controller.ts b/apps/api/src/app/account/account.controller.ts index 3eeb7117c..772a66e4c 100644 --- a/apps/api/src/app/account/account.controller.ts +++ b/apps/api/src/app/account/account.controller.ts @@ -1,6 +1,6 @@ +import { AccountBalanceService } from '@ghostfolio/api/app/account-balance/account-balance.service'; import { PortfolioService } from '@ghostfolio/api/app/portfolio/portfolio.service'; import { RedactValuesInResponseInterceptor } from '@ghostfolio/api/interceptors/redact-values-in-response.interceptor'; -import { AccountBalanceService } from '@ghostfolio/api/services/account-balance/account-balance.service'; import { ImpersonationService } from '@ghostfolio/api/services/impersonation/impersonation.service'; import { HEADER_KEY_IMPERSONATION } from '@ghostfolio/common/config'; import { diff --git a/apps/api/src/app/account/account.module.ts b/apps/api/src/app/account/account.module.ts index 26ace47c2..a8fb7e848 100644 --- a/apps/api/src/app/account/account.module.ts +++ b/apps/api/src/app/account/account.module.ts @@ -1,7 +1,7 @@ +import { AccountBalanceModule } from '@ghostfolio/api/app/account-balance/account-balance.module'; import { PortfolioModule } from '@ghostfolio/api/app/portfolio/portfolio.module'; import { RedisCacheModule } from '@ghostfolio/api/app/redis-cache/redis-cache.module'; import { UserModule } from '@ghostfolio/api/app/user/user.module'; -import { AccountBalanceModule } from '@ghostfolio/api/services/account-balance/account-balance.module'; import { ConfigurationModule } from '@ghostfolio/api/services/configuration/configuration.module'; import { DataProviderModule } from '@ghostfolio/api/services/data-provider/data-provider.module'; import { ExchangeRateDataModule } from '@ghostfolio/api/services/exchange-rate-data/exchange-rate-data.module'; diff --git a/apps/api/src/app/account/account.service.ts b/apps/api/src/app/account/account.service.ts index bc6abcc7a..366d0b1a0 100644 --- a/apps/api/src/app/account/account.service.ts +++ b/apps/api/src/app/account/account.service.ts @@ -1,4 +1,4 @@ -import { AccountBalanceService } from '@ghostfolio/api/services/account-balance/account-balance.service'; +import { AccountBalanceService } from '@ghostfolio/api/app/account-balance/account-balance.service'; import { ExchangeRateDataService } from '@ghostfolio/api/services/exchange-rate-data/exchange-rate-data.service'; import { PrismaService } from '@ghostfolio/api/services/prisma/prisma.service'; import { Filter } from '@ghostfolio/common/interfaces'; diff --git a/apps/api/src/app/order/order.module.ts b/apps/api/src/app/order/order.module.ts index 8f033058d..53d69c0f9 100644 --- a/apps/api/src/app/order/order.module.ts +++ b/apps/api/src/app/order/order.module.ts @@ -1,8 +1,8 @@ +import { AccountBalanceService } from '@ghostfolio/api/app/account-balance/account-balance.service'; import { AccountService } from '@ghostfolio/api/app/account/account.service'; import { CacheModule } from '@ghostfolio/api/app/cache/cache.module'; import { RedisCacheModule } from '@ghostfolio/api/app/redis-cache/redis-cache.module'; import { UserModule } from '@ghostfolio/api/app/user/user.module'; -import { AccountBalanceService } from '@ghostfolio/api/services/account-balance/account-balance.service'; import { ApiModule } from '@ghostfolio/api/services/api/api.module'; import { ConfigurationModule } from '@ghostfolio/api/services/configuration/configuration.module'; import { DataGatheringModule } from '@ghostfolio/api/services/data-gathering/data-gathering.module'; diff --git a/apps/api/src/app/portfolio/portfolio.module.ts b/apps/api/src/app/portfolio/portfolio.module.ts index 3b4ee5d76..cf3dd2490 100644 --- a/apps/api/src/app/portfolio/portfolio.module.ts +++ b/apps/api/src/app/portfolio/portfolio.module.ts @@ -1,8 +1,8 @@ import { AccessModule } from '@ghostfolio/api/app/access/access.module'; +import { AccountBalanceService } from '@ghostfolio/api/app/account-balance/account-balance.service'; import { AccountService } from '@ghostfolio/api/app/account/account.service'; import { OrderModule } from '@ghostfolio/api/app/order/order.module'; import { UserModule } from '@ghostfolio/api/app/user/user.module'; -import { AccountBalanceService } from '@ghostfolio/api/services/account-balance/account-balance.service'; import { ApiModule } from '@ghostfolio/api/services/api/api.module'; import { ConfigurationModule } from '@ghostfolio/api/services/configuration/configuration.module'; import { DataGatheringModule } from '@ghostfolio/api/services/data-gathering/data-gathering.module'; diff --git a/apps/api/src/app/portfolio/portfolio.service.ts b/apps/api/src/app/portfolio/portfolio.service.ts index 76aef0db1..85e914287 100644 --- a/apps/api/src/app/portfolio/portfolio.service.ts +++ b/apps/api/src/app/portfolio/portfolio.service.ts @@ -1,3 +1,4 @@ +import { AccountBalanceService } from '@ghostfolio/api/app/account-balance/account-balance.service'; import { AccountService } from '@ghostfolio/api/app/account/account.service'; import { CashDetails } from '@ghostfolio/api/app/account/interfaces/cash-details.interface'; import { Activity } from '@ghostfolio/api/app/order/interfaces/activities.interface'; @@ -12,7 +13,6 @@ import { CurrencyClusterRiskBaseCurrencyCurrentInvestment } from '@ghostfolio/ap import { CurrencyClusterRiskCurrentInvestment } from '@ghostfolio/api/models/rules/currency-cluster-risk/current-investment'; import { EmergencyFundSetup } from '@ghostfolio/api/models/rules/emergency-fund/emergency-fund-setup'; import { FeeRatioInitialInvestment } from '@ghostfolio/api/models/rules/fees/fee-ratio-initial-investment'; -import { AccountBalanceService } from '@ghostfolio/api/services/account-balance/account-balance.service'; import { DataProviderService } from '@ghostfolio/api/services/data-provider/data-provider.service'; import { ExchangeRateDataService } from '@ghostfolio/api/services/exchange-rate-data/exchange-rate-data.service'; import { ImpersonationService } from '@ghostfolio/api/services/impersonation/impersonation.service'; diff --git a/apps/client/src/app/components/account-detail-dialog/account-detail-dialog.component.ts b/apps/client/src/app/components/account-detail-dialog/account-detail-dialog.component.ts index b3a916da9..aa835b00f 100644 --- a/apps/client/src/app/components/account-detail-dialog/account-detail-dialog.component.ts +++ b/apps/client/src/app/components/account-detail-dialog/account-detail-dialog.component.ts @@ -11,7 +11,11 @@ import { DataService } from '@ghostfolio/client/services/data.service'; import { ImpersonationStorageService } from '@ghostfolio/client/services/impersonation-storage.service'; import { UserService } from '@ghostfolio/client/services/user/user.service'; import { downloadAsFile } from '@ghostfolio/common/helper'; -import { HistoricalDataItem, User } from '@ghostfolio/common/interfaces'; +import { + AccountBalancesResponse, + HistoricalDataItem, + User +} from '@ghostfolio/common/interfaces'; import { OrderWithAccount } from '@ghostfolio/common/types'; import Big from 'big.js'; import { format, parseISO } from 'date-fns'; @@ -20,6 +24,7 @@ import { Subject } from 'rxjs'; import { takeUntil } from 'rxjs/operators'; import { AccountDetailDialogParams } from './interfaces/interfaces'; +import { hasPermission, permissions } from '@ghostfolio/common/permissions'; @Component({ host: { class: 'd-flex flex-column h-100' }, @@ -29,11 +34,13 @@ import { AccountDetailDialogParams } from './interfaces/interfaces'; styleUrls: ['./account-detail-dialog.component.scss'] }) export class AccountDetailDialog implements OnDestroy, OnInit { + public accountBalances: AccountBalancesResponse['balances']; public activities: OrderWithAccount[]; public balance: number; public currency: string; public equity: number; public hasImpersonationId: boolean; + public hasPermissionToDeleteAccountBalance: boolean; public historicalDataItems: HistoricalDataItem[]; public isLoadingActivities: boolean; public isLoadingChart: boolean; @@ -59,6 +66,11 @@ export class AccountDetailDialog implements OnDestroy, OnInit { if (state?.user) { this.user = state.user; + this.hasPermissionToDeleteAccountBalance = hasPermission( + this.user.permissions, + permissions.deleteAccountBalance + ); + this.changeDetectorRef.markForCheck(); } }); @@ -66,7 +78,6 @@ export class AccountDetailDialog implements OnDestroy, OnInit { public ngOnInit() { this.isLoadingActivities = true; - this.isLoadingChart = true; this.dataService .fetchAccount(this.data.accountId) @@ -112,48 +123,33 @@ export class AccountDetailDialog implements OnDestroy, OnInit { this.changeDetectorRef.markForCheck(); }); - this.dataService - .fetchPortfolioPerformance({ - filters: [ - { - id: this.data.accountId, - type: 'ACCOUNT' - } - ], - range: 'max', - withExcludedAccounts: true - }) - .pipe(takeUntil(this.unsubscribeSubject)) - .subscribe(({ chart }) => { - this.historicalDataItems = chart.map( - ({ date, netWorth, netWorthInPercentage }) => { - return { - date, - value: - this.hasImpersonationId || this.user.settings.isRestrictedView - ? netWorthInPercentage - : netWorth - }; - } - ); - - this.isLoadingChart = false; - - this.changeDetectorRef.markForCheck(); - }); - this.impersonationStorageService .onChangeHasImpersonation() .pipe(takeUntil(this.unsubscribeSubject)) .subscribe((impersonationId) => { this.hasImpersonationId = !!impersonationId; }); + + this.fetchAccountBalances(); + this.fetchPortfolioPerformance(); } public onClose() { this.dialogRef.close(); } + public onDeleteAccountBalance(aId: string) { + this.dataService + .deleteAccountBalance(aId) + .pipe(takeUntil(this.unsubscribeSubject)) + .subscribe({ + next: () => { + this.fetchAccountBalances(); + this.fetchPortfolioPerformance(); + } + }); + } + public onExport() { this.dataService .fetchExport( @@ -176,6 +172,51 @@ export class AccountDetailDialog implements OnDestroy, OnInit { }); } + private fetchAccountBalances() { + this.dataService + .fetchAccountBalances(this.data.accountId) + .pipe(takeUntil(this.unsubscribeSubject)) + .subscribe(({ balances }) => { + this.accountBalances = balances; + + this.changeDetectorRef.markForCheck(); + }); + } + + private fetchPortfolioPerformance() { + this.isLoadingChart = true; + + this.dataService + .fetchPortfolioPerformance({ + filters: [ + { + id: this.data.accountId, + type: 'ACCOUNT' + } + ], + range: 'max', + withExcludedAccounts: true + }) + .pipe(takeUntil(this.unsubscribeSubject)) + .subscribe(({ chart }) => { + this.historicalDataItems = chart.map( + ({ date, netWorth, netWorthInPercentage }) => { + return { + date, + value: + this.hasImpersonationId || this.user.settings.isRestrictedView + ? netWorthInPercentage + : netWorth + }; + } + ); + + this.isLoadingChart = false; + + this.changeDetectorRef.markForCheck(); + }); + } + public ngOnDestroy() { this.unsubscribeSubject.next(); this.unsubscribeSubject.complete(); diff --git a/apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html b/apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html index 7e92eca85..647ba0d6f 100644 --- a/apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html +++ b/apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html @@ -87,8 +87,11 @@ Cash Balances diff --git a/apps/client/src/app/services/data.service.ts b/apps/client/src/app/services/data.service.ts index c384cd476..e61fa2406 100644 --- a/apps/client/src/app/services/data.service.ts +++ b/apps/client/src/app/services/data.service.ts @@ -212,6 +212,10 @@ export class DataService { return this.http.delete(`/api/v1/account/${aId}`); } + public deleteAccountBalance(aId: string) { + return this.http.delete(`/api/v1/account-balance/${aId}`); + } + public deleteAllOrders() { return this.http.delete(`/api/v1/order/`); } diff --git a/libs/common/src/lib/permissions.ts b/libs/common/src/lib/permissions.ts index 362d15b9c..51b653f3f 100644 --- a/libs/common/src/lib/permissions.ts +++ b/libs/common/src/lib/permissions.ts @@ -12,6 +12,7 @@ export const permissions = { createUserAccount: 'createUserAccount', deleteAccess: 'deleteAccess', deleteAccount: 'deleteAcccount', + deleteAccountBalance: 'deleteAcccountBalance', deleteAuthDevice: 'deleteAuthDevice', deleteOrder: 'deleteOrder', deletePlatform: 'deletePlatform', @@ -45,6 +46,7 @@ export function getPermissions(aRole: Role): string[] { permissions.accessAssistant, permissions.createAccess, permissions.createAccount, + permissions.deleteAccountBalance, permissions.createOrder, permissions.createPlatform, permissions.createTag, @@ -75,6 +77,7 @@ export function getPermissions(aRole: Role): string[] { permissions.createOrder, permissions.deleteAccess, permissions.deleteAccount, + permissions.deleteAccountBalance, permissions.deleteAuthDevice, permissions.deleteOrder, permissions.updateAccount, diff --git a/libs/ui/src/lib/account-balances/account-balances.component.html b/libs/ui/src/lib/account-balances/account-balances.component.html index 81f8a8192..291f11529 100644 --- a/libs/ui/src/lib/account-balances/account-balances.component.html +++ b/libs/ui/src/lib/account-balances/account-balances.component.html @@ -31,6 +31,29 @@ + + + + + + + + + + diff --git a/libs/ui/src/lib/account-balances/account-balances.component.ts b/libs/ui/src/lib/account-balances/account-balances.component.ts index c552519d6..4bcf7b26a 100644 --- a/libs/ui/src/lib/account-balances/account-balances.component.ts +++ b/libs/ui/src/lib/account-balances/account-balances.component.ts @@ -1,18 +1,19 @@ import { ChangeDetectionStrategy, - ChangeDetectorRef, Component, + EventEmitter, Input, + OnChanges, OnDestroy, OnInit, + Output, ViewChild } from '@angular/core'; import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; -import { DataService } from '@ghostfolio/client/services/data.service'; import { AccountBalancesResponse } from '@ghostfolio/common/interfaces'; import { get } from 'lodash'; -import { Subject, takeUntil } from 'rxjs'; +import { Subject } from 'rxjs'; @Component({ changeDetection: ChangeDetectionStrategy.OnPush, @@ -20,44 +21,48 @@ import { Subject, takeUntil } from 'rxjs'; styleUrls: ['./account-balances.component.scss'], templateUrl: './account-balances.component.html' }) -export class AccountBalancesComponent implements OnDestroy, OnInit { +export class AccountBalancesComponent implements OnChanges, OnDestroy, OnInit { + @Input() accountBalances: AccountBalancesResponse['balances']; @Input() accountId: string; @Input() locale: string; + @Input() showActions = true; + + @Output() accountBalanceDeleted = new EventEmitter(); @ViewChild(MatSort) sort: MatSort; public dataSource: MatTableDataSource< AccountBalancesResponse['balances'][0] > = new MatTableDataSource(); - public displayedColumns: string[] = ['date', 'value']; + public displayedColumns: string[] = ['date', 'value', 'actions']; private unsubscribeSubject = new Subject(); - public constructor( - private changeDetectorRef: ChangeDetectorRef, - private dataService: DataService - ) {} + public constructor() {} - public ngOnInit() { - this.fetchBalances(); - } + public ngOnInit() {} - public ngOnDestroy() { - this.unsubscribeSubject.next(); - this.unsubscribeSubject.complete(); + public ngOnChanges() { + if (this.accountBalances) { + this.dataSource = new MatTableDataSource(this.accountBalances); + + this.dataSource.sort = this.sort; + this.dataSource.sortingDataAccessor = get; + } } - private fetchBalances() { - this.dataService - .fetchAccountBalances(this.accountId) - .pipe(takeUntil(this.unsubscribeSubject)) - .subscribe(({ balances }) => { - this.dataSource = new MatTableDataSource(balances); + public onDeleteAccountBalance(aId: string) { + const confirmation = confirm( + $localize`Do you really want to delete this account balance?` + ); - this.dataSource.sort = this.sort; - this.dataSource.sortingDataAccessor = get; + if (confirmation) { + this.accountBalanceDeleted.emit(aId); + } + } - this.changeDetectorRef.markForCheck(); - }); + public ngOnDestroy() { + this.unsubscribeSubject.next(); + this.unsubscribeSubject.complete(); } } diff --git a/libs/ui/src/lib/account-balances/account-balances.module.ts b/libs/ui/src/lib/account-balances/account-balances.module.ts index cc8fb9677..210151cb2 100644 --- a/libs/ui/src/lib/account-balances/account-balances.module.ts +++ b/libs/ui/src/lib/account-balances/account-balances.module.ts @@ -1,5 +1,7 @@ import { CommonModule } from '@angular/common'; import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; +import { MatButtonModule } from '@angular/material/button'; +import { MatMenuModule } from '@angular/material/menu'; import { MatSortModule } from '@angular/material/sort'; import { MatTableModule } from '@angular/material/table'; import { GfValueModule } from '@ghostfolio/ui/value'; @@ -9,7 +11,14 @@ import { AccountBalancesComponent } from './account-balances.component'; @NgModule({ declarations: [AccountBalancesComponent], exports: [AccountBalancesComponent], - imports: [CommonModule, GfValueModule, MatSortModule, MatTableModule], + imports: [ + CommonModule, + GfValueModule, + MatButtonModule, + MatMenuModule, + MatSortModule, + MatTableModule + ], schemas: [CUSTOM_ELEMENTS_SCHEMA] }) export class GfAccountBalancesModule {} From c1f129501a6f9ea74c11bbd6b645c547b7f08bc2 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sat, 2 Dec 2023 17:20:10 +0100 Subject: [PATCH 03/11] Release 2.28.0 (#2709) --- CHANGELOG.md | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c46a0f8b..e963b134e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## 2.28.0 - 2023-12-02 ### Added diff --git a/package.json b/package.json index e482d0051..1df537ff8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ghostfolio", - "version": "2.27.1", + "version": "2.28.0", "homepage": "https://ghostfol.io", "license": "AGPL-3.0", "repository": "https://github.com/ghostfolio/ghostfolio", From d4c939e41d087226a765d9fbbb418e9a27ac2cb2 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sun, 3 Dec 2023 09:26:12 +0100 Subject: [PATCH 04/11] Feature/improve language localization for german 20231202 (#2710) * Update locales * Update changelog --- CHANGELOG.md | 6 + apps/client/src/locales/messages.de.xlf | 2634 ++++++++------- apps/client/src/locales/messages.es.xlf | 2634 ++++++++------- apps/client/src/locales/messages.fr.xlf | 2634 ++++++++------- apps/client/src/locales/messages.it.xlf | 2634 ++++++++------- apps/client/src/locales/messages.nl.xlf | 2634 ++++++++------- apps/client/src/locales/messages.pl.xlf | 3090 ++++++++++-------- apps/client/src/locales/messages.pt.xlf | 2634 ++++++++------- apps/client/src/locales/messages.tr.xlf | 3884 +++++++++++++---------- apps/client/src/locales/messages.xlf | 3472 +++++++++++--------- 10 files changed, 14948 insertions(+), 11308 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e963b134e..28910d5fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## Unreleased + +### Changed + +- Improved the language localization for German (`de`) + ## 2.28.0 - 2023-12-02 ### Added diff --git a/apps/client/src/locales/messages.de.xlf b/apps/client/src/locales/messages.de.xlf index b60ff5146..3f6f209de 100644 --- a/apps/client/src/locales/messages.de.xlf +++ b/apps/client/src/locales/messages.de.xlf @@ -90,7 +90,7 @@ apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 69 + 73 apps/client/src/app/components/accounts-table/accounts-table.component.html @@ -220,6 +220,10 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 227 + + libs/ui/src/lib/account-balances/account-balances.component.html + 20 + libs/ui/src/lib/activities-table/activities-table.component.html 321 @@ -288,6 +292,10 @@ apps/client/src/app/components/admin-tag/admin-tag.component.html 77 + + libs/ui/src/lib/account-balances/account-balances.component.html + 50 + libs/ui/src/lib/activities-table/activities-table.component.html 529 @@ -436,6 +444,10 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 136 + + libs/ui/src/lib/account-balances/account-balances.component.html + 11 + libs/ui/src/lib/activities-table/activities-table.component.html 152 @@ -1652,7 +1664,7 @@ apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html - 203 + 204 apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.html @@ -8888,191 +8900,191 @@ Hinweise apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 @@ -9080,191 +9092,191 @@ Mit Ghostfolio kannst du dein Vermögen einfach überwachen, analysieren und visualisieren. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 @@ -9272,191 +9284,191 @@ Tools für persönliche Finanzen apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 @@ -10196,191 +10208,191 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 26 + 27 @@ -10464,191 +10476,191 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 25 + 26 @@ -10868,191 +10880,191 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/resources-page.component.ts @@ -11859,1828 +11871,2220 @@ 37 - - Starting from / year - Ab / Jahr + + open-source-alternative-to + open-source-alternative-zu + + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 22 + + + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 13 + + + + Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. + Bitte beachte, dass die bereitgestellten Ghostfolio vs Informationen auf unserer unabhängigen Recherche und Analyse beruhen. Diese Webseite steht in keiner Verbindung zu oder einem anderen im Vergleich erwähnten Produkt. Da sich die Landschaft der Personal Finance Tools ständig weiterentwickelt, ist es wichtig, alle spezifischen Details oder Änderungen direkt auf der jeweiligen Produktseite zu überprüfen. Brauchen die Daten eine Auffrischung? Unterstütze uns bei der Pflege der aktuellen Daten auf GitHub. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 - - Starting from / year - Ab / Jahr + + Ready to take your investments to the next level? + Bereit, deine Investitionen auf ein neues Levelzu bringen? apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 - - - - open-source-alternative-to - open-source-alternative-zu - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 22 - - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 13 + 217 - - Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. - Bitte beachte, dass die bereitgestellten Ghostfolio vs Informationen auf unserer unabhängigen Recherche und Analyse beruhen. Diese Webseite steht in keiner Verbindung zu oder einem anderen im Vergleich erwähnten Produkt. Da sich die Landschaft der Personal Finance Tools ständig weiterentwickelt, ist es wichtig, alle spezifischen Details oder Änderungen direkt auf der jeweiligen Produktseite zu überprüfen. Brauchen die Daten eine Auffrischung? Unterstütze uns bei der Pflege der aktuellen Daten auf GitHub. + + Get Started + Jetzt loslegen apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 - - Ready to take your investments to the next level? - Bereit, deine Investitionen auf ein neues Levelzu bringen? + + Switzerland + Schweiz - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 69 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 90 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 506 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 548 + + + Global + Weltweit - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 70 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 317 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 438 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 549 + + + United States + Vereinigte Staaten von Amerika - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 81 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 137 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 147 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 189 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 198 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 208 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 218 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 270 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 292 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 303 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 328 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 330 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 340 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 405 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 415 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 425 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 494 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 517 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 537 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 559 + + + Belgium + Belgien - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 167 + + + Germany + Deutschland - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 128 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 178 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 250 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 260 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 281 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 315 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 361 + + + Austria + Österreich - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 238 + + + Italy + Italien - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 372 + + + Netherlands + Niederlande - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 382 + + + Thailand + Thailand - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 394 + + + New Zealand + Neuseeland - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 436 + + + Czech Republic + Tschechische Republik - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 447 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 484 + + + (Last 24 hours) + (Letzte 24 Stunden) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/open/open-page.html + 37 + + + (Last 30 days) + (Letzte 30 Tage) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/open/open-page.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/open/open-page.html + 59 + + + (Last 90 days) + (Letzte 90 Tage) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/open/open-page.html + 127 - - Get Started - Jetzt loslegen + + New + Neu - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/landing/landing-page.html + 7 + + + Choose or drop a file here + Wählen Sie eine Datei aus oder ziehen Sie sie hierhin - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 85 + + + You are using the Live Demo. + Du verwendest die Live Demo. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/app.component.html + 17 + + + One-time fee, annual account fees + Einmalige Eröffnungsgebühr, jährliche Kontoführungsgebühren - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 27 + + + Distribution of corporate earnings + Ausschüttung von Unternehmensgewinnen - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 33 + + + Oops! Could not get the historical exchange rate from + Ups! Der historische Wechselkurs konnte nicht abgerufen werden vom - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 198 + + + Fee + Gebühr - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + libs/ui/src/lib/i18n.ts + 32 + + + Interest + Zins - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 280 + + + Revenue for lending out money + Ertrag für das Ausleihen von Geld - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 39 + + + Add Tag + Tag hinzufügen - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-tag/admin-tag.component.html + 11 + + + Do you really want to delete this tag? + Möchtest du diesen Tag wirklich löschen? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-tag/admin-tag.component.ts + 78 + + + Update tag + Tag bearbeiten - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 2 + + + Add tag + Tag hinzufügen - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 3 + + + France + Frankreich - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 109 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 458 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 474 + + + Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. + Ghostfolio X-ray nutzt statische Analysen, um potenzielle Probleme und Risiken in deinem Portfolio zu identifizieren. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 100 + + + Currency Cluster Risks + Währungsklumpenrisiken - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 124 - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + + + Account Cluster Risks + Kontoklumpenrisiken + + apps/client/src/app/pages/portfolio/fire/fire-page.html + 137 + + + Transfer Cash Balance + Cash-Bestand Transfer - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 9 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 7 + + + Benchmark + Benchmark - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 219 + + + Version + Version - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-overview/admin-overview.html + 7 + + + Settings + Einstellungen - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 2 + + + From + Von - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 11 + + + To + Nach - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 29 + + + + Transfer + Transferieren + + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 66 + + + + Finland + Finnland + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 466 + + + + Membership + Mitgliedschaft + + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 22 + + + apps/client/src/app/pages/user-account/user-account-page.component.ts + 39 + + + + Access + Zugang + + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 27 + + + apps/client/src/app/pages/user-account/user-account-page.component.ts + 45 + + + + Find holding... + Finde Position... + + libs/ui/src/lib/assistant/assistant.component.ts + 89 + + + + No entries... + Keine Einträge vorhanden... + + libs/ui/src/lib/assistant/assistant.html + 63 + + + libs/ui/src/lib/assistant/assistant.html + 84 + + + + Asset Profile + Anlageprofil + + apps/client/src/app/components/admin-jobs/admin-jobs.html + 31 + + + + Do you really want to delete this asset profile? + Möchtest du dieses Anlageprofil wirklich löschen? + + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 184 + + + + Search + Suche + + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 16 + + + + Add Manually + Manuell hinzufügen + + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 19 + + + + Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. + Mit dem Finanz-Dashboard Ghostfolio können Sie Ihr Vermögen in Cash, Aktien, ETFs und Kryptowährungen über mehrere Finanzinstitute überwachen. + + apps/client/src/app/pages/i18n/i18n-page.html + 4 + + + + Last All Time High + Letztes Allzeithoch + + libs/ui/src/lib/benchmark/benchmark.component.html + 63 + + + + User + Benutzer + + apps/client/src/app/components/admin-users/admin-users.html + 29 + + + Ghostfolio vs comparison table + Ghostfolio vs Vergleichstabelle apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 - - - Switzerland - Schweiz - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 69 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 91 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 507 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 549 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Global - Weltweit - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 71 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 318 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 439 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 550 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - United States - Vereinigte Staaten von Amerika - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 82 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 138 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 148 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 199 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 209 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 219 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 271 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 293 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 304 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 329 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 331 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 341 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 406 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 416 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 426 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 495 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 518 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + Canada + Kanada apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 538 + 529 + + + Open Source Wealth Management Software + Open Source Software für die Vermögensverwaltung - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 560 + apps/client/src/app/pages/i18n/i18n-page.html + 13 - - Belgium - Belgien + + app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 + aktie, app, asset, dashboard, etf, finanzen, kryptowährung, management, performance, portfolio, software, trading, vermögen, web3 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 168 + apps/client/src/app/pages/i18n/i18n-page.html + 9 - - Germany - Deutschland + + Oops, cash balance transfer has failed. + Ups, der Cash-Bestand Transfer ist fehlgeschlagen. - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 129 + apps/client/src/app/pages/accounts/accounts-page.component.ts + 305 + + + Poland + Polen apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 179 + 119 + + + South Africa + Südafrika apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 251 + 227 + + + Extreme Fear + Extreme Angst - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 261 + libs/ui/src/lib/i18n.ts + 63 + + + Extreme Greed + Extreme Gier - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 282 + libs/ui/src/lib/i18n.ts + 64 + + + Neutral + Neutral - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 316 + libs/ui/src/lib/i18n.ts + 67 + + + Oops! Could not parse historical data. + Ups! Die historischen Daten konnten nicht geparsed werden. - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 362 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts + 205 - - Austria - Österreich + + Do you really want to delete this system message? + Möchtest du diese Systemmeldung wirklich löschen? - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 239 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 159 - - Italy - Italien + + 50-Day Trend + 50 Tage Trend - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 373 + libs/ui/src/lib/benchmark/benchmark.component.html + 15 - - Netherlands - Niederlande + + 200-Day Trend + 200 Tage Trend - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 383 + libs/ui/src/lib/benchmark/benchmark.component.html + 39 - - Thailand - Thailand + + Cash Balances + Cash-Bestände - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 395 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 88 - - New Zealand - Neuseeland + + Starting from + Ab - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 437 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Czech Republic - Tschechische Republik - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 448 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 485 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - (Last 24 hours) - (Letzte 24 Stunden) - apps/client/src/app/pages/open/open-page.html - 37 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - (Last 30 days) - (Letzte 30 Tage) - apps/client/src/app/pages/open/open-page.html - 48 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/open/open-page.html - 59 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - (Last 90 days) - (Letzte 90 Tage) - apps/client/src/app/pages/open/open-page.html - 127 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - New - Neu - apps/client/src/app/pages/landing/landing-page.html - 7 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Choose or drop a file here - Wählen Sie eine Datei aus oder ziehen Sie sie hierhin - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 85 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - You are using the Live Demo. - Du verwendest die Live Demo. - apps/client/src/app/app.component.html - 17 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - One-time fee, annual account fees - Einmalige Eröffnungsgebühr, jährliche Kontoführungsgebühren - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 27 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Distribution of corporate earnings - Ausschüttung von Unternehmensgewinnen - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 33 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Oops! Could not get the historical exchange rate from - Ups! Der historische Wechselkurs konnte nicht abgerufen werden vom - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 198 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Fee - Gebühr - libs/ui/src/lib/i18n.ts - 32 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Interest - Zins - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 280 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Revenue for lending out money - Ertrag für das Ausleihen von Geld - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 39 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Add Tag - Tag hinzufügen - apps/client/src/app/components/admin-tag/admin-tag.component.html - 11 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Do you really want to delete this tag? - Möchtest du diesen Tag wirklich löschen? - apps/client/src/app/components/admin-tag/admin-tag.component.ts - 78 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Update tag - Tag bearbeiten - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 2 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Add tag - Tag hinzufügen - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 3 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - France - Frankreich - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 110 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 459 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 475 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - Ghostfolio X-ray nutzt statische Analysen, um potenzielle Probleme und Risiken in deinem Portfolio zu identifizieren. - apps/client/src/app/pages/portfolio/fire/fire-page.html - 100 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Currency Cluster Risks - Währungsklumpenrisiken - apps/client/src/app/pages/portfolio/fire/fire-page.html - 124 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Account Cluster Risks - Kontoklumpenrisiken - apps/client/src/app/pages/portfolio/fire/fire-page.html - 137 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Transfer Cash Balance - Cash-Bestand Transfer - apps/client/src/app/components/accounts-table/accounts-table.component.html - 9 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 7 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Benchmark - Benchmark - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 219 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Version - Version - apps/client/src/app/components/admin-overview/admin-overview.html - 7 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Settings - Einstellungen - apps/client/src/app/components/user-account-settings/user-account-settings.html - 2 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - From - Von - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 11 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - To - Nach - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 29 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Transfer - Transferieren - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 66 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Finland - Finnland - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 467 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Membership - Mitgliedschaft - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 22 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/user-account/user-account-page.component.ts - 39 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Access - Zugang - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 27 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/user-account/user-account-page.component.ts - 45 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Find holding... - Finde Position... - libs/ui/src/lib/assistant/assistant.component.ts - 89 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - No entries... - Keine Einträge vorhanden... + + year + Jahr - libs/ui/src/lib/assistant/assistant.html - 63 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - libs/ui/src/lib/assistant/assistant.html - 84 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Asset Profile - Anlageprofil - apps/client/src/app/components/admin-jobs/admin-jobs.html - 31 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Do you really want to delete this asset profile? - Möchtest du dieses Anlageprofil wirklich löschen? - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 184 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Search - Suche - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Add Manually - Manuell hinzufügen - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 19 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. - Mit dem Finanz-Dashboard Ghostfolio können Sie Ihr Vermögen in Cash, Aktien, ETFs und Kryptowährungen über mehrere Finanzinstitute überwachen. - apps/client/src/app/pages/i18n/i18n-page.html - 4 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Last All Time High - Letztes Allzeithoch - libs/ui/src/lib/benchmark/benchmark.component.html - 63 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - User - Benutzer - apps/client/src/app/components/admin-users/admin-users.html - 29 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Ghostfolio vs comparison table - Ghostfolio vs Vergleichstabelle apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 - - - Canada - Kanada - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 530 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Open Source Wealth Management Software - Open Source Software für die Vermögensverwaltung - apps/client/src/app/pages/i18n/i18n-page.html - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - aktie, app, asset, dashboard, etf, finanzen, kryptowährung, management, performance, portfolio, software, trading, vermögen, web3 - apps/client/src/app/pages/i18n/i18n-page.html - 9 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Oops, cash balance transfer has failed. - Ups, der Cash-Bestand Transfer ist fehlgeschlagen. - apps/client/src/app/pages/accounts/accounts-page.component.ts - 305 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Poland - Polen - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 120 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - South Africa - Südafrika - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 228 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Extreme Fear - Extreme Angst - libs/ui/src/lib/i18n.ts - 63 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Extreme Greed - Extreme Gier - libs/ui/src/lib/i18n.ts - 64 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Neutral - Neutral - libs/ui/src/lib/i18n.ts - 67 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Oops! Could not parse historical data. - Ups! Die historischen Daten konnten nicht geparsed werden. - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts - 205 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Do you really want to delete this system message? - Möchtest du diese Systemmeldung wirklich löschen? - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 159 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - 50-Day Trend - 50 Tage Trend - libs/ui/src/lib/benchmark/benchmark.component.html - 15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - 200-Day Trend - 200 Tage Trend + + Do you really want to delete this account balance? + Möchtest du diesen Cash-Bestand wirklich löschen? - libs/ui/src/lib/benchmark/benchmark.component.html - 39 + libs/ui/src/lib/account-balances/account-balances.component.ts + 56 diff --git a/apps/client/src/locales/messages.es.xlf b/apps/client/src/locales/messages.es.xlf index d5abb1ce7..f50cded65 100644 --- a/apps/client/src/locales/messages.es.xlf +++ b/apps/client/src/locales/messages.es.xlf @@ -91,7 +91,7 @@ apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 69 + 73 apps/client/src/app/components/accounts-table/accounts-table.component.html @@ -221,6 +221,10 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 227 + + libs/ui/src/lib/account-balances/account-balances.component.html + 20 + libs/ui/src/lib/activities-table/activities-table.component.html 321 @@ -289,6 +293,10 @@ apps/client/src/app/components/admin-tag/admin-tag.component.html 77 + + libs/ui/src/lib/account-balances/account-balances.component.html + 50 + libs/ui/src/lib/activities-table/activities-table.component.html 529 @@ -437,6 +445,10 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 136 + + libs/ui/src/lib/account-balances/account-balances.component.html + 11 + libs/ui/src/lib/activities-table/activities-table.component.html 152 @@ -1650,7 +1662,7 @@ apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html - 203 + 204 apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.html @@ -8886,191 +8898,191 @@ Notes apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 @@ -9078,191 +9090,191 @@ Effortlessly track, analyze, and visualize your wealth with Ghostfolio. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 @@ -9270,191 +9282,191 @@ Personal Finance Tools apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 @@ -10194,191 +10206,191 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 26 + 27 @@ -10462,191 +10474,191 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 25 + 26 @@ -10866,191 +10878,191 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/resources-page.component.ts @@ -11857,1828 +11869,2220 @@ 37 - - Starting from / year - Starting from / year + + open-source-alternative-to + open-source-alternative-to + + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 22 + + + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 13 + + + + Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. + Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 - - Starting from / year - Starting from / year + + Ready to take your investments to the next level? + Ready to take your investments to the next level? apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 - - - - open-source-alternative-to - open-source-alternative-to - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 22 - - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 13 + 217 - - Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. - Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. + + Get Started + Get Started apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 - - Ready to take your investments to the next level? - Ready to take your investments to the next level? + + Switzerland + Switzerland - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 69 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 90 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 506 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 548 + + + Global + Global - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 70 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 317 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 438 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 549 + + + United States + United States - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 81 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 137 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 147 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 189 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 198 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 208 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 218 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 270 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 292 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 303 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 328 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 330 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 340 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 405 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 415 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 425 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 494 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 517 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 537 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 559 + + + Belgium + Belgium - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 167 + + + Germany + Germany - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 128 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 178 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 250 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 260 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 281 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 315 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 361 + + + Austria + Austria - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 238 + + + Italy + Italy - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 372 + + + Netherlands + Netherlands - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 382 + + + Thailand + Thailand - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 394 + + + New Zealand + New Zealand - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 436 + + + Czech Republic + Czech Republic - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 447 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 484 + + + (Last 24 hours) + (Last 24 hours) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/open/open-page.html + 37 + + + (Last 30 days) + (Last 30 days) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/open/open-page.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/open/open-page.html + 59 + + + (Last 90 days) + (Last 90 days) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/open/open-page.html + 127 - - Get Started - Get Started + + New + New - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/landing/landing-page.html + 7 + + + Choose or drop a file here + Choose or drop a file here - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 85 + + + You are using the Live Demo. + You are using the Live Demo. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/app.component.html + 17 + + + One-time fee, annual account fees + One-time fee, annual account fees - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 27 + + + Distribution of corporate earnings + Distribution of corporate earnings - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 33 + + + Oops! Could not get the historical exchange rate from + Oops! Could not get the historical exchange rate from - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 198 + + + Fee + Fee - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + libs/ui/src/lib/i18n.ts + 32 + + + Interest + Interest - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 280 + + + Revenue for lending out money + Revenue for lending out money - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 39 + + + Add Tag + Add Tag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-tag/admin-tag.component.html + 11 + + + Do you really want to delete this tag? + Do you really want to delete this tag? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-tag/admin-tag.component.ts + 78 + + + Update tag + Update tag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 2 + + + Add tag + Add tag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 3 + + + France + France - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 109 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 458 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 474 + + + Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. + Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 100 + + + Currency Cluster Risks + Currency Cluster Risks - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 124 - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + + + Account Cluster Risks + Account Cluster Risks + + apps/client/src/app/pages/portfolio/fire/fire-page.html + 137 + + + Transfer Cash Balance + Transfer Cash Balance - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 9 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 7 + + + Benchmark + Benchmark - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 219 + + + Version + Version - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-overview/admin-overview.html + 7 + + + Settings + Settings - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 2 + + + From + From - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 11 + + + To + To - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 29 + + + + Transfer + Transfer + + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 66 + + + + Finland + Finland + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 466 + + + + Membership + Membership + + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 22 + + + apps/client/src/app/pages/user-account/user-account-page.component.ts + 39 + + + + Access + Access + + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 27 + + + apps/client/src/app/pages/user-account/user-account-page.component.ts + 45 + + + + Find holding... + Find holding... + + libs/ui/src/lib/assistant/assistant.component.ts + 89 + + + + No entries... + No entries... + + libs/ui/src/lib/assistant/assistant.html + 63 + + + libs/ui/src/lib/assistant/assistant.html + 84 + + + + Asset Profile + Asset Profile + + apps/client/src/app/components/admin-jobs/admin-jobs.html + 31 + + + + Do you really want to delete this asset profile? + Do you really want to delete this asset profile? + + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 184 + + + + Search + Search + + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 16 + + + + Add Manually + Add Manually + + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 19 + + + + Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. + Ghostfolio es un dashboard de finanzas personales para hacer un seguimiento de tus activos como acciones, ETFs o criptodivisas a través de múltiples plataformas. + + apps/client/src/app/pages/i18n/i18n-page.html + 4 + + + + Last All Time High + Last All Time High + + libs/ui/src/lib/benchmark/benchmark.component.html + 63 + + + + User + User + + apps/client/src/app/components/admin-users/admin-users.html + 29 + + + Ghostfolio vs comparison table + Ghostfolio vs comparison table apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 - - - Switzerland - Switzerland - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 69 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 91 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 507 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 549 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Global - Global - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 71 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 318 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 439 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 550 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - United States - United States - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 82 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 138 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 148 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 199 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 209 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 219 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 271 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 293 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 304 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 329 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 331 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 341 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 406 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 416 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 426 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 495 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 518 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + Canada + Canada apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 538 + 529 + + + Open Source Wealth Management Software + Open Source Wealth Management Software - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 560 + apps/client/src/app/pages/i18n/i18n-page.html + 13 - - Belgium - Belgium + + app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 + app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 168 + apps/client/src/app/pages/i18n/i18n-page.html + 9 - - Germany - Germany + + Oops, cash balance transfer has failed. + Oops, cash balance transfer has failed. - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 129 + apps/client/src/app/pages/accounts/accounts-page.component.ts + 305 + + + Poland + Poland apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 179 + 119 + + + South Africa + South Africa apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 251 + 227 + + + Extreme Fear + Extreme Fear - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 261 + libs/ui/src/lib/i18n.ts + 63 + + + Extreme Greed + Extreme Greed - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 282 + libs/ui/src/lib/i18n.ts + 64 + + + Neutral + Neutral - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 316 + libs/ui/src/lib/i18n.ts + 67 + + + Oops! Could not parse historical data. + Oops! Could not parse historical data. - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 362 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts + 205 - - Austria - Austria + + Do you really want to delete this system message? + Do you really want to delete this system message? - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 239 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 159 - - Italy - Italy + + 50-Day Trend + 50-Day Trend - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 373 + libs/ui/src/lib/benchmark/benchmark.component.html + 15 - - Netherlands - Netherlands + + 200-Day Trend + 200-Day Trend - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 383 + libs/ui/src/lib/benchmark/benchmark.component.html + 39 - - Thailand - Thailand + + Cash Balances + Cash Balances - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 395 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 88 - - New Zealand - New Zealand + + Starting from + Starting from - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 437 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Czech Republic - Czech Republic - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 448 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 485 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - (Last 24 hours) - (Last 24 hours) - apps/client/src/app/pages/open/open-page.html - 37 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - (Last 30 days) - (Last 30 days) - apps/client/src/app/pages/open/open-page.html - 48 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/open/open-page.html - 59 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - (Last 90 days) - (Last 90 days) - apps/client/src/app/pages/open/open-page.html - 127 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - New - New - apps/client/src/app/pages/landing/landing-page.html - 7 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Choose or drop a file here - Choose or drop a file here - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 85 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - You are using the Live Demo. - You are using the Live Demo. - apps/client/src/app/app.component.html - 17 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - One-time fee, annual account fees - One-time fee, annual account fees - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 27 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Distribution of corporate earnings - Distribution of corporate earnings - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 33 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Oops! Could not get the historical exchange rate from - Oops! Could not get the historical exchange rate from - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 198 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Fee - Fee - libs/ui/src/lib/i18n.ts - 32 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Interest - Interest - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 280 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Revenue for lending out money - Revenue for lending out money - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 39 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Add Tag - Add Tag - apps/client/src/app/components/admin-tag/admin-tag.component.html - 11 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Do you really want to delete this tag? - Do you really want to delete this tag? - apps/client/src/app/components/admin-tag/admin-tag.component.ts - 78 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Update tag - Update tag - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 2 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Add tag - Add tag - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 3 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - France - France - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 110 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 459 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 475 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - apps/client/src/app/pages/portfolio/fire/fire-page.html - 100 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Currency Cluster Risks - Currency Cluster Risks - apps/client/src/app/pages/portfolio/fire/fire-page.html - 124 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Account Cluster Risks - Account Cluster Risks - apps/client/src/app/pages/portfolio/fire/fire-page.html - 137 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Transfer Cash Balance - Transfer Cash Balance - apps/client/src/app/components/accounts-table/accounts-table.component.html - 9 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 7 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Benchmark - Benchmark - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 219 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Version - Version - apps/client/src/app/components/admin-overview/admin-overview.html - 7 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Settings - Settings - apps/client/src/app/components/user-account-settings/user-account-settings.html - 2 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - From - From - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 11 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - To - To - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 29 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Transfer - Transfer - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 66 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Finland - Finland - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 467 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Membership - Membership - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 22 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/user-account/user-account-page.component.ts - 39 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Access - Access - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 27 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/user-account/user-account-page.component.ts - 45 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Find holding... - Find holding... - libs/ui/src/lib/assistant/assistant.component.ts - 89 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - No entries... - No entries... + + year + year - libs/ui/src/lib/assistant/assistant.html - 63 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - libs/ui/src/lib/assistant/assistant.html - 84 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Asset Profile - Asset Profile - apps/client/src/app/components/admin-jobs/admin-jobs.html - 31 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Do you really want to delete this asset profile? - Do you really want to delete this asset profile? - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 184 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Search - Search - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Add Manually - Add Manually - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 19 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. - Ghostfolio es un dashboard de finanzas personales para hacer un seguimiento de tus activos como acciones, ETFs o criptodivisas a través de múltiples plataformas. - apps/client/src/app/pages/i18n/i18n-page.html - 4 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Last All Time High - Last All Time High - libs/ui/src/lib/benchmark/benchmark.component.html - 63 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - User - User - apps/client/src/app/components/admin-users/admin-users.html - 29 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Ghostfolio vs comparison table - Ghostfolio vs comparison table apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 - - - Canada - Canada - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 530 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Open Source Wealth Management Software - Open Source Wealth Management Software - apps/client/src/app/pages/i18n/i18n-page.html - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - apps/client/src/app/pages/i18n/i18n-page.html - 9 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Oops, cash balance transfer has failed. - Oops, cash balance transfer has failed. - apps/client/src/app/pages/accounts/accounts-page.component.ts - 305 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Poland - Poland - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 120 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - South Africa - South Africa - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 228 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Extreme Fear - Extreme Fear - libs/ui/src/lib/i18n.ts - 63 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Extreme Greed - Extreme Greed - libs/ui/src/lib/i18n.ts - 64 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Neutral - Neutral - libs/ui/src/lib/i18n.ts - 67 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Oops! Could not parse historical data. - Oops! Could not parse historical data. - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts - 205 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Do you really want to delete this system message? - Do you really want to delete this system message? - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 159 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - 50-Day Trend - 50-Day Trend - libs/ui/src/lib/benchmark/benchmark.component.html - 15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - 200-Day Trend - 200-Day Trend + + Do you really want to delete this account balance? + Do you really want to delete this account balance? - libs/ui/src/lib/benchmark/benchmark.component.html - 39 + libs/ui/src/lib/account-balances/account-balances.component.ts + 56 diff --git a/apps/client/src/locales/messages.fr.xlf b/apps/client/src/locales/messages.fr.xlf index 76bb8bc58..c107d8b50 100644 --- a/apps/client/src/locales/messages.fr.xlf +++ b/apps/client/src/locales/messages.fr.xlf @@ -102,7 +102,7 @@ apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 69 + 73 apps/client/src/app/components/accounts-table/accounts-table.component.html @@ -272,6 +272,10 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 227 + + libs/ui/src/lib/account-balances/account-balances.component.html + 20 + libs/ui/src/lib/activities-table/activities-table.component.html 321 @@ -340,6 +344,10 @@ apps/client/src/app/components/admin-tag/admin-tag.component.html 77 + + libs/ui/src/lib/account-balances/account-balances.component.html + 50 + libs/ui/src/lib/activities-table/activities-table.component.html 529 @@ -488,6 +496,10 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 136 + + libs/ui/src/lib/account-balances/account-balances.component.html + 11 + libs/ui/src/lib/activities-table/activities-table.component.html 152 @@ -2401,7 +2413,7 @@ apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html - 203 + 204 apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.html @@ -8885,191 +8897,191 @@ Notes apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 @@ -9077,191 +9089,191 @@ Effortlessly track, analyze, and visualize your wealth with Ghostfolio. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 @@ -9269,191 +9281,191 @@ Personal Finance Tools apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 @@ -10193,191 +10205,191 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 26 + 27 @@ -10461,191 +10473,191 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 25 + 26 @@ -10865,191 +10877,191 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/resources-page.component.ts @@ -11856,1828 +11868,2220 @@ 37 - - Starting from / year - Starting from / year + + open-source-alternative-to + open-source-alternative-to + + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 22 + + + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 13 + + + + Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. + Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 - - Starting from / year - Starting from / year + + Ready to take your investments to the next level? + Ready to take your investments to the next level? apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 - - - - open-source-alternative-to - open-source-alternative-to - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 22 - - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 13 + 217 - - Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. - Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. + + Get Started + Get Started apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 - - Ready to take your investments to the next level? - Ready to take your investments to the next level? + + Switzerland + Switzerland - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 69 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 90 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 506 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 548 + + + Global + Global - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 70 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 317 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 438 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 549 + + + United States + United States - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 81 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 137 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 147 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 189 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 198 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 208 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 218 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 270 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 292 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 303 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 328 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 330 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 340 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 405 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 415 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 425 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 494 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 517 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 537 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 559 + + + Belgium + Belgium - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 167 + + + Germany + Germany - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 128 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 178 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 250 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 260 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 281 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 315 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 361 + + + Austria + Austria - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 238 + + + Italy + Italy - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 372 + + + Netherlands + Netherlands - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 382 + + + Thailand + Thailand - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 394 + + + New Zealand + New Zealand - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 436 + + + Czech Republic + Czech Republic - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 447 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 484 + + + (Last 24 hours) + (Last 24 hours) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/open/open-page.html + 37 + + + (Last 30 days) + (Last 30 days) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/open/open-page.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/open/open-page.html + 59 + + + (Last 90 days) + (Last 90 days) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/open/open-page.html + 127 - - Get Started - Get Started + + New + New - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/landing/landing-page.html + 7 + + + Choose or drop a file here + Choose or drop a file here - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 85 + + + You are using the Live Demo. + You are using the Live Demo. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/app.component.html + 17 + + + One-time fee, annual account fees + One-time fee, annual account fees - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 27 + + + Distribution of corporate earnings + Distribution of corporate earnings - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 33 + + + Oops! Could not get the historical exchange rate from + Oops! Could not get the historical exchange rate from - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 198 + + + Fee + Fee - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + libs/ui/src/lib/i18n.ts + 32 + + + Interest + Interest - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 280 + + + Revenue for lending out money + Revenue for lending out money - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 39 + + + Add Tag + Add Tag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-tag/admin-tag.component.html + 11 + + + Do you really want to delete this tag? + Do you really want to delete this tag? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-tag/admin-tag.component.ts + 78 + + + Update tag + Update tag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 2 + + + Add tag + Add tag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 3 + + + France + France - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 109 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 458 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 474 + + + Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. + Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 100 + + + Currency Cluster Risks + Currency Cluster Risks - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 124 - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + + + Account Cluster Risks + Account Cluster Risks + + apps/client/src/app/pages/portfolio/fire/fire-page.html + 137 + + + Transfer Cash Balance + Transfer Cash Balance - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 9 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 7 + + + Benchmark + Benchmark - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 219 + + + Version + Version - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-overview/admin-overview.html + 7 + + + Settings + Settings - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 2 + + + From + From - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 11 + + + To + To - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 29 + + + + Transfer + Transfer + + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 66 + + + + Finland + Finland + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 466 + + + + Membership + Membership + + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 22 + + + apps/client/src/app/pages/user-account/user-account-page.component.ts + 39 + + + + Access + Access + + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 27 + + + apps/client/src/app/pages/user-account/user-account-page.component.ts + 45 + + + + Find holding... + Find holding... + + libs/ui/src/lib/assistant/assistant.component.ts + 89 + + + + No entries... + No entries... + + libs/ui/src/lib/assistant/assistant.html + 63 + + + libs/ui/src/lib/assistant/assistant.html + 84 + + + + Asset Profile + Asset Profile + + apps/client/src/app/components/admin-jobs/admin-jobs.html + 31 + + + + Do you really want to delete this asset profile? + Do you really want to delete this asset profile? + + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 184 + + + + Search + Search + + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 16 + + + + Add Manually + Add Manually + + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 19 + + + + Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. + Ghostfolio est un dashboard de finances personnelles qui permet de suivre vos actifs comme les actions, les ETF ou les crypto-monnaies sur plusieurs plateformes. + + apps/client/src/app/pages/i18n/i18n-page.html + 4 + + + + Last All Time High + Last All Time High + + libs/ui/src/lib/benchmark/benchmark.component.html + 63 + + + + User + User + + apps/client/src/app/components/admin-users/admin-users.html + 29 + + + Ghostfolio vs comparison table + Ghostfolio vs comparison table apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 - - - Switzerland - Switzerland - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 69 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 91 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 507 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 549 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Global - Global - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 71 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 318 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 439 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 550 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - United States - United States - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 82 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 138 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 148 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 199 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 209 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 219 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 271 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 293 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 304 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 329 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 331 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 341 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 406 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 416 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 426 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 495 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 518 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + Canada + Canada apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 538 + 529 + + + Open Source Wealth Management Software + Open Source Wealth Management Software - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 560 + apps/client/src/app/pages/i18n/i18n-page.html + 13 - - Belgium - Belgium + + app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 + app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 168 + apps/client/src/app/pages/i18n/i18n-page.html + 9 - - Germany - Germany + + Oops, cash balance transfer has failed. + Oops, cash balance transfer has failed. - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 129 + apps/client/src/app/pages/accounts/accounts-page.component.ts + 305 + + + Poland + Poland apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 179 + 119 + + + South Africa + South Africa apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 251 + 227 + + + Extreme Fear + Extreme Fear - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 261 + libs/ui/src/lib/i18n.ts + 63 + + + Extreme Greed + Extreme Greed - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 282 + libs/ui/src/lib/i18n.ts + 64 + + + Neutral + Neutral - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 316 + libs/ui/src/lib/i18n.ts + 67 + + + Oops! Could not parse historical data. + Oops! Could not parse historical data. - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 362 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts + 205 - - Austria - Austria + + Do you really want to delete this system message? + Do you really want to delete this system message? - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 239 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 159 - - Italy - Italy + + 50-Day Trend + 50-Day Trend - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 373 + libs/ui/src/lib/benchmark/benchmark.component.html + 15 - - Netherlands - Netherlands + + 200-Day Trend + 200-Day Trend - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 383 + libs/ui/src/lib/benchmark/benchmark.component.html + 39 - - Thailand - Thailand + + Cash Balances + Cash Balances - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 395 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 88 - - New Zealand - New Zealand + + Starting from + Starting from - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 437 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Czech Republic - Czech Republic - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 448 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 485 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - (Last 24 hours) - (Last 24 hours) - apps/client/src/app/pages/open/open-page.html - 37 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - (Last 30 days) - (Last 30 days) - apps/client/src/app/pages/open/open-page.html - 48 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/open/open-page.html - 59 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - (Last 90 days) - (Last 90 days) - apps/client/src/app/pages/open/open-page.html - 127 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - New - New - apps/client/src/app/pages/landing/landing-page.html - 7 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Choose or drop a file here - Choose or drop a file here - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 85 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - You are using the Live Demo. - You are using the Live Demo. - apps/client/src/app/app.component.html - 17 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - One-time fee, annual account fees - One-time fee, annual account fees - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 27 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Distribution of corporate earnings - Distribution of corporate earnings - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 33 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Oops! Could not get the historical exchange rate from - Oops! Could not get the historical exchange rate from - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 198 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Fee - Fee - libs/ui/src/lib/i18n.ts - 32 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Interest - Interest - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 280 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Revenue for lending out money - Revenue for lending out money - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 39 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Add Tag - Add Tag - apps/client/src/app/components/admin-tag/admin-tag.component.html - 11 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Do you really want to delete this tag? - Do you really want to delete this tag? - apps/client/src/app/components/admin-tag/admin-tag.component.ts - 78 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Update tag - Update tag - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 2 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Add tag - Add tag - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 3 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - France - France - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 110 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 459 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 475 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - apps/client/src/app/pages/portfolio/fire/fire-page.html - 100 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Currency Cluster Risks - Currency Cluster Risks - apps/client/src/app/pages/portfolio/fire/fire-page.html - 124 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Account Cluster Risks - Account Cluster Risks - apps/client/src/app/pages/portfolio/fire/fire-page.html - 137 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Transfer Cash Balance - Transfer Cash Balance - apps/client/src/app/components/accounts-table/accounts-table.component.html - 9 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 7 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Benchmark - Benchmark - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 219 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Version - Version - apps/client/src/app/components/admin-overview/admin-overview.html - 7 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Settings - Settings - apps/client/src/app/components/user-account-settings/user-account-settings.html - 2 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - From - From - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 11 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - To - To - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 29 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Transfer - Transfer - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 66 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Finland - Finland - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 467 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Membership - Membership - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 22 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/user-account/user-account-page.component.ts - 39 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Access - Access - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 27 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/user-account/user-account-page.component.ts - 45 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Find holding... - Find holding... - libs/ui/src/lib/assistant/assistant.component.ts - 89 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - No entries... - No entries... + + year + year - libs/ui/src/lib/assistant/assistant.html - 63 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - libs/ui/src/lib/assistant/assistant.html - 84 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Asset Profile - Asset Profile - apps/client/src/app/components/admin-jobs/admin-jobs.html - 31 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Do you really want to delete this asset profile? - Do you really want to delete this asset profile? - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 184 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Search - Search - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Add Manually - Add Manually - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 19 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. - Ghostfolio est un dashboard de finances personnelles qui permet de suivre vos actifs comme les actions, les ETF ou les crypto-monnaies sur plusieurs plateformes. - apps/client/src/app/pages/i18n/i18n-page.html - 4 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Last All Time High - Last All Time High - libs/ui/src/lib/benchmark/benchmark.component.html - 63 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - User - User - apps/client/src/app/components/admin-users/admin-users.html - 29 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Ghostfolio vs comparison table - Ghostfolio vs comparison table apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 - - - Canada - Canada - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 530 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Open Source Wealth Management Software - Open Source Wealth Management Software - apps/client/src/app/pages/i18n/i18n-page.html - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - apps/client/src/app/pages/i18n/i18n-page.html - 9 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Oops, cash balance transfer has failed. - Oops, cash balance transfer has failed. - apps/client/src/app/pages/accounts/accounts-page.component.ts - 305 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Poland - Poland - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 120 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - South Africa - South Africa - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 228 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Extreme Fear - Extreme Fear - libs/ui/src/lib/i18n.ts - 63 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Extreme Greed - Extreme Greed - libs/ui/src/lib/i18n.ts - 64 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Neutral - Neutral - libs/ui/src/lib/i18n.ts - 67 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Oops! Could not parse historical data. - Oops! Could not parse historical data. - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts - 205 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Do you really want to delete this system message? - Do you really want to delete this system message? - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 159 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - 50-Day Trend - 50-Day Trend - libs/ui/src/lib/benchmark/benchmark.component.html - 15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - 200-Day Trend - 200-Day Trend + + Do you really want to delete this account balance? + Do you really want to delete this account balance? - libs/ui/src/lib/benchmark/benchmark.component.html - 39 + libs/ui/src/lib/account-balances/account-balances.component.ts + 56 diff --git a/apps/client/src/locales/messages.it.xlf b/apps/client/src/locales/messages.it.xlf index 6d434a3b0..fa83ef57a 100644 --- a/apps/client/src/locales/messages.it.xlf +++ b/apps/client/src/locales/messages.it.xlf @@ -91,7 +91,7 @@ apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 69 + 73 apps/client/src/app/components/accounts-table/accounts-table.component.html @@ -221,6 +221,10 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 227 + + libs/ui/src/lib/account-balances/account-balances.component.html + 20 + libs/ui/src/lib/activities-table/activities-table.component.html 321 @@ -289,6 +293,10 @@ apps/client/src/app/components/admin-tag/admin-tag.component.html 77 + + libs/ui/src/lib/account-balances/account-balances.component.html + 50 + libs/ui/src/lib/activities-table/activities-table.component.html 529 @@ -437,6 +445,10 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 136 + + libs/ui/src/lib/account-balances/account-balances.component.html + 11 + libs/ui/src/lib/activities-table/activities-table.component.html 152 @@ -1650,7 +1662,7 @@ apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html - 203 + 204 apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.html @@ -8886,191 +8898,191 @@ Note apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 @@ -9078,191 +9090,191 @@ Monitora, analizza e visualizza facilmente la tua ricchezza con Ghostfolio. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 @@ -9270,191 +9282,191 @@ Strumenti di finanza personale apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 @@ -10194,191 +10206,191 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 26 + 27 @@ -10462,191 +10474,191 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 25 + 26 @@ -10866,191 +10878,191 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/resources-page.component.ts @@ -11857,1828 +11869,2220 @@ 37 - - Starting from / year - A partire da / anno + + open-source-alternative-to + alternativa-open-source-a + + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 22 + + + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 13 + + + + Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. + Nota bene: le informazioni fornite si basano sulle nostre ricerche e analisi indipendenti. Questo sito web non è affiliato con o a qualsiasi altro prodotto citato nel confronto. Poiché il panorama degli strumenti di finanza personale si evolve, è essenziale verificare qualsiasi dettaglio o modifica specifica direttamente nella pagina del prodotto in questione. I dati hanno bisogno di essere aggiornati? Aiutaci a mantenere i dati accurati su GitHub. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 - - Starting from / year - A partire da / anno + + Ready to take your investments to the next level? + Sei pronto a portare il tuo investimento al livello successivo? apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 - - - - open-source-alternative-to - alternativa-open-source-a - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 22 - - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 13 + 217 - - Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. - Nota bene: le informazioni fornite si basano sulle nostre ricerche e analisi indipendenti. Questo sito web non è affiliato con o a qualsiasi altro prodotto citato nel confronto. Poiché il panorama degli strumenti di finanza personale si evolve, è essenziale verificare qualsiasi dettaglio o modifica specifica direttamente nella pagina del prodotto in questione. I dati hanno bisogno di essere aggiornati? Aiutaci a mantenere i dati accurati su GitHub. + + Get Started + Inizia apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 - - Ready to take your investments to the next level? - Sei pronto a portare il tuo investimento al livello successivo? + + Switzerland + Svizzera - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 69 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 90 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 506 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 548 + + + Global + Globale - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 70 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 317 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 438 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 549 + + + United States + Stati Uniti - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 81 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 137 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 147 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 189 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 198 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 208 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 218 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 270 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 292 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 303 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 328 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 330 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 340 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 405 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 415 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 425 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 494 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 517 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 537 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 559 + + + Belgium + Belgio - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 167 + + + Germany + Germania - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 128 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 178 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 250 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 260 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 281 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 315 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 361 + + + Austria + Austria - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 238 + + + Italy + Italia - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 372 + + + Netherlands + Paesi Bassi - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 382 + + + Thailand + Thailandia - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 394 + + + New Zealand + Nuova Zelanda - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 436 + + + Czech Republic + Repubblica Ceca - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 447 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 484 + + + (Last 24 hours) + (Ultime 24 ore) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/open/open-page.html + 37 + + + (Last 30 days) + (Ultimi 30 giorni) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/open/open-page.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/open/open-page.html + 59 + + + (Last 90 days) + (Ultimi 90 giorni) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/open/open-page.html + 127 - - Get Started - Inizia + + New + Nuovo - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/landing/landing-page.html + 7 + + + Choose or drop a file here + Choose or drop a file here - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 85 + + + You are using the Live Demo. + You are using the Live Demo. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/app.component.html + 17 + + + One-time fee, annual account fees + One-time fee, annual account fees - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 27 + + + Distribution of corporate earnings + Distribution of corporate earnings - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 33 + + + Oops! Could not get the historical exchange rate from + Oops! Could not get the historical exchange rate from - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 198 + + + Fee + Fee - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + libs/ui/src/lib/i18n.ts + 32 + + + Interest + Interest - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 280 + + + Revenue for lending out money + Revenue for lending out money - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 39 + + + Add Tag + Add Tag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-tag/admin-tag.component.html + 11 + + + Do you really want to delete this tag? + Do you really want to delete this tag? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-tag/admin-tag.component.ts + 78 + + + Update tag + Update tag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 2 + + + Add tag + Add tag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 3 + + + France + France - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 109 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 458 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 474 + + + Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. + Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 100 + + + Currency Cluster Risks + Currency Cluster Risks - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 124 - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + + + Account Cluster Risks + Account Cluster Risks + + apps/client/src/app/pages/portfolio/fire/fire-page.html + 137 + + + Transfer Cash Balance + Transfer Cash Balance - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 9 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 7 + + + Benchmark + Benchmark - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 219 + + + Version + Version - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-overview/admin-overview.html + 7 + + + Settings + Settings - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 2 + + + From + From - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 11 + + + To + To - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 29 + + + + Transfer + Transfer + + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 66 + + + + Finland + Finland + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 466 + + + + Membership + Membership + + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 22 + + + apps/client/src/app/pages/user-account/user-account-page.component.ts + 39 + + + + Access + Access + + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 27 + + + apps/client/src/app/pages/user-account/user-account-page.component.ts + 45 + + + + Find holding... + Find holding... + + libs/ui/src/lib/assistant/assistant.component.ts + 89 + + + + No entries... + No entries... + + libs/ui/src/lib/assistant/assistant.html + 63 + + + libs/ui/src/lib/assistant/assistant.html + 84 + + + + Asset Profile + Asset Profile + + apps/client/src/app/components/admin-jobs/admin-jobs.html + 31 + + + + Do you really want to delete this asset profile? + Do you really want to delete this asset profile? + + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 184 + + + + Search + Search + + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 16 + + + + Add Manually + Add Manually + + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 19 + + + + Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. + Ghostfolio è un dashboard di finanza personale per tenere traccia delle vostre attività come azioni, ETF o criptovalute su più piattaforme. + + apps/client/src/app/pages/i18n/i18n-page.html + 4 + + + + Last All Time High + Last All Time High + + libs/ui/src/lib/benchmark/benchmark.component.html + 63 + + + + User + User + + apps/client/src/app/components/admin-users/admin-users.html + 29 + + + Ghostfolio vs comparison table + Ghostfolio vs comparison table apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 - - - Switzerland - Svizzera - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 69 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 91 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 507 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 549 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Global - Globale - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 71 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 318 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 439 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 550 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - United States - Stati Uniti - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 82 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 138 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 148 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 199 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 209 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 219 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 271 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 293 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 304 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 329 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 331 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 341 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 406 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 416 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 426 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 495 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 518 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + Canada + Canada apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 538 + 529 + + + Open Source Wealth Management Software + Open Source Wealth Management Software - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 560 + apps/client/src/app/pages/i18n/i18n-page.html + 13 - - Belgium - Belgio + + app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 + app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 168 + apps/client/src/app/pages/i18n/i18n-page.html + 9 - - Germany - Germania + + Oops, cash balance transfer has failed. + Oops, cash balance transfer has failed. - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 129 + apps/client/src/app/pages/accounts/accounts-page.component.ts + 305 + + + Poland + Poland apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 179 + 119 + + + South Africa + South Africa apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 251 + 227 + + + Extreme Fear + Extreme Fear - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 261 + libs/ui/src/lib/i18n.ts + 63 + + + Extreme Greed + Extreme Greed - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 282 + libs/ui/src/lib/i18n.ts + 64 + + + Neutral + Neutral - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 316 + libs/ui/src/lib/i18n.ts + 67 + + + Oops! Could not parse historical data. + Oops! Could not parse historical data. - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 362 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts + 205 - - Austria - Austria + + Do you really want to delete this system message? + Do you really want to delete this system message? - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 239 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 159 - - Italy - Italia + + 50-Day Trend + 50-Day Trend - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 373 + libs/ui/src/lib/benchmark/benchmark.component.html + 15 - - Netherlands - Paesi Bassi + + 200-Day Trend + 200-Day Trend - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 383 + libs/ui/src/lib/benchmark/benchmark.component.html + 39 - - Thailand - Thailandia + + Cash Balances + Cash Balances - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 395 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 88 - - New Zealand - Nuova Zelanda + + Starting from + Starting from - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 437 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Czech Republic - Repubblica Ceca - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 448 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 485 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - (Last 24 hours) - (Ultime 24 ore) - apps/client/src/app/pages/open/open-page.html - 37 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - (Last 30 days) - (Ultimi 30 giorni) - apps/client/src/app/pages/open/open-page.html - 48 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/open/open-page.html - 59 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - (Last 90 days) - (Ultimi 90 giorni) - apps/client/src/app/pages/open/open-page.html - 127 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - New - Nuovo - apps/client/src/app/pages/landing/landing-page.html - 7 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Choose or drop a file here - Choose or drop a file here - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 85 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - You are using the Live Demo. - You are using the Live Demo. - apps/client/src/app/app.component.html - 17 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - One-time fee, annual account fees - One-time fee, annual account fees - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 27 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Distribution of corporate earnings - Distribution of corporate earnings - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 33 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Oops! Could not get the historical exchange rate from - Oops! Could not get the historical exchange rate from - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 198 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Fee - Fee - libs/ui/src/lib/i18n.ts - 32 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Interest - Interest - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 280 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Revenue for lending out money - Revenue for lending out money - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 39 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Add Tag - Add Tag - apps/client/src/app/components/admin-tag/admin-tag.component.html - 11 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Do you really want to delete this tag? - Do you really want to delete this tag? - apps/client/src/app/components/admin-tag/admin-tag.component.ts - 78 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Update tag - Update tag - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 2 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Add tag - Add tag - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 3 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - France - France - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 110 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 459 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 475 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - apps/client/src/app/pages/portfolio/fire/fire-page.html - 100 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Currency Cluster Risks - Currency Cluster Risks - apps/client/src/app/pages/portfolio/fire/fire-page.html - 124 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Account Cluster Risks - Account Cluster Risks - apps/client/src/app/pages/portfolio/fire/fire-page.html - 137 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Transfer Cash Balance - Transfer Cash Balance - apps/client/src/app/components/accounts-table/accounts-table.component.html - 9 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 7 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Benchmark - Benchmark - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 219 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Version - Version - apps/client/src/app/components/admin-overview/admin-overview.html - 7 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Settings - Settings - apps/client/src/app/components/user-account-settings/user-account-settings.html - 2 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - From - From - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 11 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - To - To - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 29 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Transfer - Transfer - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 66 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Finland - Finland - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 467 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Membership - Membership - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 22 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/user-account/user-account-page.component.ts - 39 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Access - Access - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 27 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/user-account/user-account-page.component.ts - 45 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Find holding... - Find holding... - libs/ui/src/lib/assistant/assistant.component.ts - 89 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - No entries... - No entries... + + year + year - libs/ui/src/lib/assistant/assistant.html - 63 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - libs/ui/src/lib/assistant/assistant.html - 84 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Asset Profile - Asset Profile - apps/client/src/app/components/admin-jobs/admin-jobs.html - 31 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Do you really want to delete this asset profile? - Do you really want to delete this asset profile? - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 184 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Search - Search - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Add Manually - Add Manually - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 19 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. - Ghostfolio è un dashboard di finanza personale per tenere traccia delle vostre attività come azioni, ETF o criptovalute su più piattaforme. - apps/client/src/app/pages/i18n/i18n-page.html - 4 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Last All Time High - Last All Time High - libs/ui/src/lib/benchmark/benchmark.component.html - 63 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - User - User - apps/client/src/app/components/admin-users/admin-users.html - 29 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Ghostfolio vs comparison table - Ghostfolio vs comparison table apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 - - - Canada - Canada - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 530 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Open Source Wealth Management Software - Open Source Wealth Management Software - apps/client/src/app/pages/i18n/i18n-page.html - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - apps/client/src/app/pages/i18n/i18n-page.html - 9 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Oops, cash balance transfer has failed. - Oops, cash balance transfer has failed. - apps/client/src/app/pages/accounts/accounts-page.component.ts - 305 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Poland - Poland - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 120 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - South Africa - South Africa - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 228 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Extreme Fear - Extreme Fear - libs/ui/src/lib/i18n.ts - 63 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Extreme Greed - Extreme Greed - libs/ui/src/lib/i18n.ts - 64 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Neutral - Neutral - libs/ui/src/lib/i18n.ts - 67 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Oops! Could not parse historical data. - Oops! Could not parse historical data. - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts - 205 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Do you really want to delete this system message? - Do you really want to delete this system message? - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 159 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - 50-Day Trend - 50-Day Trend - libs/ui/src/lib/benchmark/benchmark.component.html - 15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - 200-Day Trend - 200-Day Trend + + Do you really want to delete this account balance? + Do you really want to delete this account balance? - libs/ui/src/lib/benchmark/benchmark.component.html - 39 + libs/ui/src/lib/account-balances/account-balances.component.ts + 56 diff --git a/apps/client/src/locales/messages.nl.xlf b/apps/client/src/locales/messages.nl.xlf index 4723717fe..b103891ca 100644 --- a/apps/client/src/locales/messages.nl.xlf +++ b/apps/client/src/locales/messages.nl.xlf @@ -90,7 +90,7 @@ apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 69 + 73 apps/client/src/app/components/accounts-table/accounts-table.component.html @@ -220,6 +220,10 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 227 + + libs/ui/src/lib/account-balances/account-balances.component.html + 20 + libs/ui/src/lib/activities-table/activities-table.component.html 321 @@ -288,6 +292,10 @@ apps/client/src/app/components/admin-tag/admin-tag.component.html 77 + + libs/ui/src/lib/account-balances/account-balances.component.html + 50 + libs/ui/src/lib/activities-table/activities-table.component.html 529 @@ -436,6 +444,10 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 136 + + libs/ui/src/lib/account-balances/account-balances.component.html + 11 + libs/ui/src/lib/activities-table/activities-table.component.html 152 @@ -1649,7 +1661,7 @@ apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html - 203 + 204 apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.html @@ -8885,191 +8897,191 @@ Notities apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 @@ -9077,191 +9089,191 @@ Volg, analyseer en visualiseer moeiteloos je vermogen met Ghostfolio. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 @@ -9269,191 +9281,191 @@ Tools voor persoonlijke financiën apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 @@ -10193,191 +10205,191 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 26 + 27 @@ -10461,191 +10473,191 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 25 + 26 @@ -10865,191 +10877,191 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/resources-page.component.ts @@ -11856,1828 +11868,2220 @@ 37 - - Starting from / year - Vanaf / jaar + + open-source-alternative-to + open-source-alternatief-voor + + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 22 + + + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 13 + + + + Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. + Houd er rekening mee dat de verstrekte informatie gebaseerd is op ons onafhankelijk onderzoek en analyse. Deze website is niet gelieerd aan of een ander product dat in de vergelijking wordt genoemd. Aangezien het landschap van tools voor persoonlijke financiën evolueert, is het essentieel om specifieke details of wijzigingen rechtstreeks op de betreffende productpagina te controleren. Hebben je gegevens een opfrisbeurt nodig? Help ons nauwkeurige gegevens te onderhouden over GitHub. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 - - Starting from / year - Vanaf / jaar + + Ready to take your investments to the next level? + Klaar om je investeringen naar een hoger niveau te brengen? apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 - - - - open-source-alternative-to - open-source-alternatief-voor - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 22 - - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 13 + 217 - - Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. - Houd er rekening mee dat de verstrekte informatie gebaseerd is op ons onafhankelijk onderzoek en analyse. Deze website is niet gelieerd aan of een ander product dat in de vergelijking wordt genoemd. Aangezien het landschap van tools voor persoonlijke financiën evolueert, is het essentieel om specifieke details of wijzigingen rechtstreeks op de betreffende productpagina te controleren. Hebben je gegevens een opfrisbeurt nodig? Help ons nauwkeurige gegevens te onderhouden over GitHub. + + Get Started + Aan de slag apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 - - Ready to take your investments to the next level? - Klaar om je investeringen naar een hoger niveau te brengen? + + Switzerland + Zwitserland - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 69 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 90 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 506 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 548 + + + Global + Wereldwijd - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 70 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 317 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 438 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 549 + + + United States + Verenigde Staten - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 81 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 137 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 147 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 189 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 198 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 208 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 218 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 270 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 292 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 303 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 328 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 330 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 340 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 405 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 415 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 425 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 494 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 517 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 537 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 559 + + + Belgium + België - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 167 + + + Germany + Duitsland - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 128 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 178 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 250 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 260 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 281 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 315 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 361 + + + Austria + Oostenrijk - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 238 + + + Italy + Italië - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 372 + + + Netherlands + Nederland - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 382 + + + Thailand + Thailand - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 394 + + + New Zealand + Nieuw-Zeeland - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 436 + + + Czech Republic + Tsjechië - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 447 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 484 + + + (Last 24 hours) + (Laatste 24 uur) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/open/open-page.html + 37 + + + (Last 30 days) + (Laatste 30 dagen) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/open/open-page.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/open/open-page.html + 59 + + + (Last 90 days) + (Laatste 90 dagen) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/open/open-page.html + 127 - - Get Started - Aan de slag + + New + New - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/landing/landing-page.html + 7 + + + Choose or drop a file here + Choose or drop a file here - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 85 + + + You are using the Live Demo. + You are using the Live Demo. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/app.component.html + 17 + + + One-time fee, annual account fees + One-time fee, annual account fees - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 27 + + + Distribution of corporate earnings + Distribution of corporate earnings - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 33 + + + Oops! Could not get the historical exchange rate from + Oops! Could not get the historical exchange rate from - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 198 + + + Fee + Fee - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + libs/ui/src/lib/i18n.ts + 32 + + + Interest + Interest - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 280 + + + Revenue for lending out money + Revenue for lending out money - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 39 + + + Add Tag + Add Tag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-tag/admin-tag.component.html + 11 + + + Do you really want to delete this tag? + Do you really want to delete this tag? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-tag/admin-tag.component.ts + 78 + + + Update tag + Update tag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 2 + + + Add tag + Add tag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 3 + + + France + France - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 109 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 458 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 474 + + + Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. + Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 100 + + + Currency Cluster Risks + Currency Cluster Risks - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 124 - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + + + Account Cluster Risks + Account Cluster Risks + + apps/client/src/app/pages/portfolio/fire/fire-page.html + 137 + + + Transfer Cash Balance + Transfer Cash Balance - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 9 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 7 + + + Benchmark + Benchmark - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 219 + + + Version + Version - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-overview/admin-overview.html + 7 + + + Settings + Settings - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 2 + + + From + From - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 11 + + + To + To - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 29 + + + + Transfer + Transfer + + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 66 + + + + Finland + Finland + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 466 + + + + Membership + Membership + + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 22 + + + apps/client/src/app/pages/user-account/user-account-page.component.ts + 39 + + + + Access + Access + + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 27 + + + apps/client/src/app/pages/user-account/user-account-page.component.ts + 45 + + + + Find holding... + Find holding... + + libs/ui/src/lib/assistant/assistant.component.ts + 89 + + + + No entries... + No entries... + + libs/ui/src/lib/assistant/assistant.html + 63 + + + libs/ui/src/lib/assistant/assistant.html + 84 + + + + Asset Profile + Asset Profile + + apps/client/src/app/components/admin-jobs/admin-jobs.html + 31 + + + + Do you really want to delete this asset profile? + Do you really want to delete this asset profile? + + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 184 + + + + Search + Search + + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 16 + + + + Add Manually + Add Manually + + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 19 + + + + Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. + Ghostfolio is een persoonlijk financieel dashboard om uw activa zoals aandelen, ETF’s of cryptocurrencies over meerdere platforms bij te houden. + + apps/client/src/app/pages/i18n/i18n-page.html + 4 + + + + Last All Time High + Last All Time High + + libs/ui/src/lib/benchmark/benchmark.component.html + 63 + + + + User + User + + apps/client/src/app/components/admin-users/admin-users.html + 29 + + + Ghostfolio vs comparison table + Ghostfolio vs comparison table apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 - - - Switzerland - Zwitserland - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 69 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 91 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 507 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 549 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Global - Wereldwijd - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 71 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 318 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 439 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 550 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - United States - Verenigde Staten - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 82 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 138 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 148 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 199 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 209 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 219 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 271 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 293 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 304 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 329 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 331 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 341 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 406 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 416 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 426 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 495 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 518 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + Canada + Canada apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 538 + 529 + + + Open Source Wealth Management Software + Open Source Wealth Management Software - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 560 + apps/client/src/app/pages/i18n/i18n-page.html + 13 - - Belgium - België + + app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 + app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 168 + apps/client/src/app/pages/i18n/i18n-page.html + 9 - - Germany - Duitsland + + Oops, cash balance transfer has failed. + Oops, cash balance transfer has failed. - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 129 + apps/client/src/app/pages/accounts/accounts-page.component.ts + 305 + + + Poland + Poland apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 179 + 119 + + + South Africa + South Africa apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 251 + 227 + + + Extreme Fear + Extreme Fear - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 261 + libs/ui/src/lib/i18n.ts + 63 + + + Extreme Greed + Extreme Greed - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 282 + libs/ui/src/lib/i18n.ts + 64 + + + Neutral + Neutral - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 316 + libs/ui/src/lib/i18n.ts + 67 + + + Oops! Could not parse historical data. + Oops! Could not parse historical data. - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 362 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts + 205 - - Austria - Oostenrijk + + Do you really want to delete this system message? + Do you really want to delete this system message? - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 239 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 159 - - Italy - Italië + + 50-Day Trend + 50-Day Trend - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 373 + libs/ui/src/lib/benchmark/benchmark.component.html + 15 - - Netherlands - Nederland + + 200-Day Trend + 200-Day Trend - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 383 + libs/ui/src/lib/benchmark/benchmark.component.html + 39 - - Thailand - Thailand + + Cash Balances + Cash Balances - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 395 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 88 - - New Zealand - Nieuw-Zeeland + + Starting from + Starting from - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 437 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Czech Republic - Tsjechië - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 448 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 485 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - (Last 24 hours) - (Laatste 24 uur) - apps/client/src/app/pages/open/open-page.html - 37 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - (Last 30 days) - (Laatste 30 dagen) - apps/client/src/app/pages/open/open-page.html - 48 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/open/open-page.html - 59 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - (Last 90 days) - (Laatste 90 dagen) - apps/client/src/app/pages/open/open-page.html - 127 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - New - New - apps/client/src/app/pages/landing/landing-page.html - 7 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Choose or drop a file here - Choose or drop a file here - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 85 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - You are using the Live Demo. - You are using the Live Demo. - apps/client/src/app/app.component.html - 17 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - One-time fee, annual account fees - One-time fee, annual account fees - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 27 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Distribution of corporate earnings - Distribution of corporate earnings - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 33 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Oops! Could not get the historical exchange rate from - Oops! Could not get the historical exchange rate from - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 198 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Fee - Fee - libs/ui/src/lib/i18n.ts - 32 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Interest - Interest - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 280 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Revenue for lending out money - Revenue for lending out money - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 39 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Add Tag - Add Tag - apps/client/src/app/components/admin-tag/admin-tag.component.html - 11 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Do you really want to delete this tag? - Do you really want to delete this tag? - apps/client/src/app/components/admin-tag/admin-tag.component.ts - 78 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Update tag - Update tag - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 2 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Add tag - Add tag - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 3 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - France - France - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 110 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 459 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 475 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - apps/client/src/app/pages/portfolio/fire/fire-page.html - 100 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Currency Cluster Risks - Currency Cluster Risks - apps/client/src/app/pages/portfolio/fire/fire-page.html - 124 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Account Cluster Risks - Account Cluster Risks - apps/client/src/app/pages/portfolio/fire/fire-page.html - 137 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Transfer Cash Balance - Transfer Cash Balance - apps/client/src/app/components/accounts-table/accounts-table.component.html - 9 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 7 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Benchmark - Benchmark - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 219 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Version - Version - apps/client/src/app/components/admin-overview/admin-overview.html - 7 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Settings - Settings - apps/client/src/app/components/user-account-settings/user-account-settings.html - 2 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - From - From - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 11 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - To - To - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 29 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Transfer - Transfer - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 66 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Finland - Finland - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 467 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Membership - Membership - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 22 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/user-account/user-account-page.component.ts - 39 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Access - Access - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 27 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/user-account/user-account-page.component.ts - 45 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Find holding... - Find holding... - libs/ui/src/lib/assistant/assistant.component.ts - 89 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - No entries... - No entries... + + year + year - libs/ui/src/lib/assistant/assistant.html - 63 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - libs/ui/src/lib/assistant/assistant.html - 84 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Asset Profile - Asset Profile - apps/client/src/app/components/admin-jobs/admin-jobs.html - 31 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Do you really want to delete this asset profile? - Do you really want to delete this asset profile? - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 184 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Search - Search - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Add Manually - Add Manually - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 19 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. - Ghostfolio is een persoonlijk financieel dashboard om uw activa zoals aandelen, ETF’s of cryptocurrencies over meerdere platforms bij te houden. - apps/client/src/app/pages/i18n/i18n-page.html - 4 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Last All Time High - Last All Time High - libs/ui/src/lib/benchmark/benchmark.component.html - 63 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - User - User - apps/client/src/app/components/admin-users/admin-users.html - 29 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Ghostfolio vs comparison table - Ghostfolio vs comparison table apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 - - - Canada - Canada - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 530 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Open Source Wealth Management Software - Open Source Wealth Management Software - apps/client/src/app/pages/i18n/i18n-page.html - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - apps/client/src/app/pages/i18n/i18n-page.html - 9 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Oops, cash balance transfer has failed. - Oops, cash balance transfer has failed. - apps/client/src/app/pages/accounts/accounts-page.component.ts - 305 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Poland - Poland - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 120 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - South Africa - South Africa - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 228 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Extreme Fear - Extreme Fear - libs/ui/src/lib/i18n.ts - 63 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Extreme Greed - Extreme Greed - libs/ui/src/lib/i18n.ts - 64 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Neutral - Neutral - libs/ui/src/lib/i18n.ts - 67 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Oops! Could not parse historical data. - Oops! Could not parse historical data. - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts - 205 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Do you really want to delete this system message? - Do you really want to delete this system message? - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 159 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - 50-Day Trend - 50-Day Trend - libs/ui/src/lib/benchmark/benchmark.component.html - 15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - 200-Day Trend - 200-Day Trend + + Do you really want to delete this account balance? + Do you really want to delete this account balance? - libs/ui/src/lib/benchmark/benchmark.component.html - 39 + libs/ui/src/lib/account-balances/account-balances.component.ts + 56 diff --git a/apps/client/src/locales/messages.pl.xlf b/apps/client/src/locales/messages.pl.xlf index 7211c04ab..3971bd557 100644 --- a/apps/client/src/locales/messages.pl.xlf +++ b/apps/client/src/locales/messages.pl.xlf @@ -82,191 +82,191 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 25 + 26 @@ -346,191 +346,191 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 26 + 27 @@ -750,191 +750,191 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/resources-page.component.ts @@ -1038,7 +1038,7 @@ apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html - 203 + 204 apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.html @@ -1534,7 +1534,7 @@ apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 69 + 73 apps/client/src/app/components/accounts-table/accounts-table.component.html @@ -1716,6 +1716,10 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 227 + + libs/ui/src/lib/account-balances/account-balances.component.html + 20 + libs/ui/src/lib/activities-table/activities-table.component.html 321 @@ -1784,6 +1788,10 @@ apps/client/src/app/components/admin-tag/admin-tag.component.html 77 + + libs/ui/src/lib/account-balances/account-balances.component.html + 50 + libs/ui/src/lib/activities-table/activities-table.component.html 529 @@ -1932,6 +1940,10 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 136 + + libs/ui/src/lib/account-balances/account-balances.component.html + 11 + libs/ui/src/lib/activities-table/activities-table.component.html 152 @@ -11115,2572 +11127,2964 @@ 164 - - Starting from / year - Starting from / year + + Notes + Notes apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 - - Starting from / year - Starting from / year + + Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. + Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 - - Notes - Notes + + Ready to take your investments to the next level? + Ready to take your investments to the next level? apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 - - Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. - Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. + + Effortlessly track, analyze, and visualize your wealth with Ghostfolio. + Effortlessly track, analyze, and visualize your wealth with Ghostfolio. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 - - Ready to take your investments to the next level? - Ready to take your investments to the next level? + + Get Started + Get Started apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 - - Effortlessly track, analyze, and visualize your wealth with Ghostfolio. - Effortlessly track, analyze, and visualize your wealth with Ghostfolio. + + Personal Finance Tools + Personal Finance Tools apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 - - Get Started - Get Started + + Switzerland + Switzerland - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 69 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 90 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 506 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 548 + + + Global + Global - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 70 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 317 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 438 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 549 + + + United States + United States - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 81 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 137 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 147 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 189 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 198 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 208 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 218 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 270 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 292 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 303 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 328 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 330 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 340 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 405 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 415 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 425 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 494 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 517 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 537 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 559 + + + France + France - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 109 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 458 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 474 + + + Poland + Poland - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 119 + + + Germany + Germany - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 128 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 178 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 250 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 260 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 281 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 315 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 361 + + + Belgium + Belgium - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 167 + + + South Africa + South Africa - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 227 + + + Austria + Austria - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 238 + + + Italy + Italy - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 372 + + + Netherlands + Netherlands - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 382 + + + Thailand + Thailand - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 394 + + + New Zealand + New Zealand - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 436 - - Personal Finance Tools - Personal Finance Tools + + Czech Republic + Czech Republic - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 447 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 484 + + + Finland + Finland - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 466 + + + Canada + Canada - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 529 + + + Resources + Resources - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/pages/resources/resources-page-routing.module.ts + 12 + + + Guides + Guides - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/pages/resources/resources-page.html + 5 + + + Glossary + Glossary - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/pages/resources/resources-page.html + 75 + + + Membership + Membership - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 22 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/pages/user-account/user-account-page.component.ts + 39 + + + Access + Access - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 27 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/pages/user-account/user-account-page.component.ts + 45 + + + My Ghostfolio + My Ghostfolio - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 32 + + + Oops, authentication has failed. + Oops, authentication has failed. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/pages/webauthn/webauthn-page.html + 18 + + + Try again + Try again - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/pages/webauthn/webauthn-page.html + 26 + + + Go back to Home Page + Go back to Home Page - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/pages/webauthn/webauthn-page.html + 30 + + + Import Activities + Import Activities - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/activities-table/activities-table.component.html + 16 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/activities-table/activities-table.component.html + 453 + + + Import Dividends + Import Dividends - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/activities-table/activities-table.component.html + 35 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/activities-table/activities-table.component.html + 464 + + + Export Activities + Export Activities - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/activities-table/activities-table.component.html + 47 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/activities-table/activities-table.component.html + 476 + + + Export Drafts as ICS + Export Drafts as ICS - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/activities-table/activities-table.component.html + 59 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/activities-table/activities-table.component.html + 488 + + + Delete all Activities + Delete all Activities - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/activities-table/activities-table.component.html + 69 + + + Draft + Draft - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/activities-table/activities-table.component.html + 189 + + + Clone + Clone - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/activities-table/activities-table.component.html + 513 + + + Export Draft as ICS + Export Draft as ICS - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/activities-table/activities-table.component.html + 523 + + + Do you really want to delete this activity? + Do you really want to delete this activity? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/activities-table/activities-table.component.ts + 227 + + + Filter by account, currency, symbol or type... + Filter by account, currency, symbol or type... - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/activities-table/activities-table.component.ts + 427 + + + Find holding... + Find holding... - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/assistant/assistant.component.ts + 89 + + + No entries... + No entries... - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/assistant/assistant.html + 63 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/assistant/assistant.html + 84 + + + Asset Profiles + Asset Profiles - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/assistant/assistant.html + 67 + + + Index + Index - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/benchmark/benchmark.component.html + 3 + + + Last All Time High + Last All Time High - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/benchmark/benchmark.component.html + 63 + + + Change from All Time High + Change from All Time High - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/benchmark/benchmark.component.html + 79 + + + from ATH + from ATH - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/benchmark/benchmark.component.html + 81 + + + Market data provided by + Market data provided by - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/data-provider-credits/data-provider-credits.component.html + 2 + + + Savings Rate per Month + Savings Rate per Month - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/fire-calculator/fire-calculator.component.html + 10 + + + Annual Interest Rate + Annual Interest Rate - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/fire-calculator/fire-calculator.component.html + 21 + + + Retirement Date + Retirement Date - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/fire-calculator/fire-calculator.component.html + 32 + + + Projected Total Amount + Projected Total Amount - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/fire-calculator/fire-calculator.component.html + 60 + + + Interest + Interest - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/fire-calculator/fire-calculator.component.ts + 341 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/i18n.ts + 33 + + + Savings + Savings - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/fire-calculator/fire-calculator.component.ts + 351 + + + Allocation + Allocation - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/holdings-table/holdings-table.component.html + 98 - - Switzerland - Switzerland + + Show all + Show all - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 69 + libs/ui/src/lib/holdings-table/holdings-table.component.html + 172 + + + Account + Account - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 91 + libs/ui/src/lib/i18n.ts + 4 + + + Asia-Pacific + Asia-Pacific - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 507 + libs/ui/src/lib/i18n.ts + 5 + + + Asset Class + Asset Class - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 549 + libs/ui/src/lib/i18n.ts + 6 - - Global - Global + + Asset Sub Class + Asset Sub Class - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 71 + libs/ui/src/lib/i18n.ts + 7 + + + Core + Core - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 318 + libs/ui/src/lib/i18n.ts + 8 + + + Switch to Ghostfolio Premium or Ghostfolio Open Source easily + Switch to Ghostfolio Premium or Ghostfolio Open Source easily - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 439 + libs/ui/src/lib/i18n.ts + 9 + + + Switch to Ghostfolio Premium easily + Switch to Ghostfolio Premium easily - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 550 + libs/ui/src/lib/i18n.ts + 10 - - United States - United States + + Switch to Ghostfolio Open Source or Ghostfolio Basic easily + Switch to Ghostfolio Open Source or Ghostfolio Basic easily - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 82 + libs/ui/src/lib/i18n.ts + 11 + + + Emergency Fund + Emergency Fund - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 138 + libs/ui/src/lib/i18n.ts + 12 + + + Grant + Grant - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 148 + libs/ui/src/lib/i18n.ts + 13 + + + Higher Risk + Higher Risk - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 190 + libs/ui/src/lib/i18n.ts + 14 + + + This activity already exists. + This activity already exists. - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 199 + libs/ui/src/lib/i18n.ts + 15 + + + Japan + Japan - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 209 + libs/ui/src/lib/i18n.ts + 16 + + + Lower Risk + Lower Risk - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 219 + libs/ui/src/lib/i18n.ts + 17 + + + Month + Month - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 271 + libs/ui/src/lib/i18n.ts + 18 + + + Months + Months - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 293 + libs/ui/src/lib/i18n.ts + 19 + + + Other + Other - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 304 + libs/ui/src/lib/i18n.ts + 20 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 329 + libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts + 384 + + + Preset + Preset - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 331 + libs/ui/src/lib/i18n.ts + 21 + + + Retirement Provision + Retirement Provision - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 341 + libs/ui/src/lib/i18n.ts + 22 + + + Satellite + Satellite - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 406 + libs/ui/src/lib/i18n.ts + 23 + + + Symbol + Symbol - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 416 + libs/ui/src/lib/i18n.ts + 24 + + + Tag + Tag - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 426 + libs/ui/src/lib/i18n.ts + 25 + + + Year + Year - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 495 + libs/ui/src/lib/i18n.ts + 26 + + + Years + Years - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 518 + libs/ui/src/lib/i18n.ts + 27 + + + Buy + Buy - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 538 + libs/ui/src/lib/i18n.ts + 30 + + + Fee + Fee - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 560 + libs/ui/src/lib/i18n.ts + 32 - - France - France + + Valuable + Valuable - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 110 + libs/ui/src/lib/i18n.ts + 34 + + + Liability + Liability - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 459 + libs/ui/src/lib/i18n.ts + 35 + + + Sell + Sell - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 475 + libs/ui/src/lib/i18n.ts + 36 - - Poland - Poland + + Cash + Cash - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 120 + libs/ui/src/lib/i18n.ts + 39 - - Germany - Germany + + Commodity + Commodity - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 129 + libs/ui/src/lib/i18n.ts + 40 + + + Equity + Equity - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 179 + libs/ui/src/lib/i18n.ts + 41 + + + Fixed Income + Fixed Income - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 251 + libs/ui/src/lib/i18n.ts + 42 + + + Real Estate + Real Estate - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 261 + libs/ui/src/lib/i18n.ts + 43 + + + Bond + Bond - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 282 + libs/ui/src/lib/i18n.ts + 46 + + + Cryptocurrency + Cryptocurrency - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 316 + libs/ui/src/lib/i18n.ts + 47 + + + ETF + ETF - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 362 + libs/ui/src/lib/i18n.ts + 48 - - Belgium - Belgium + + Mutual Fund + Mutual Fund - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 168 + libs/ui/src/lib/i18n.ts + 49 - - South Africa - South Africa + + Precious Metal + Precious Metal - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 228 + libs/ui/src/lib/i18n.ts + 50 - - Austria - Austria + + Private Equity + Private Equity - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 239 + libs/ui/src/lib/i18n.ts + 51 - - Italy - Italy + + Stock + Stock - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 373 + libs/ui/src/lib/i18n.ts + 52 - - Netherlands - Netherlands + + Africa + Africa - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 383 + libs/ui/src/lib/i18n.ts + 55 - - Thailand - Thailand + + Asia + Asia - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 395 + libs/ui/src/lib/i18n.ts + 56 - - New Zealand - New Zealand + + Europe + Europe - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 437 + libs/ui/src/lib/i18n.ts + 57 - - Czech Republic - Czech Republic - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 448 - + + North America + North America - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 485 + libs/ui/src/lib/i18n.ts + 58 - - Finland - Finland + + Oceania + Oceania - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 467 + libs/ui/src/lib/i18n.ts + 59 - - Canada - Canada + + South America + South America - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 530 + libs/ui/src/lib/i18n.ts + 60 - - Resources - Resources + + Extreme Fear + Extreme Fear - apps/client/src/app/pages/resources/resources-page-routing.module.ts - 12 + libs/ui/src/lib/i18n.ts + 63 - - Guides - Guides + + Extreme Greed + Extreme Greed - apps/client/src/app/pages/resources/resources-page.html - 5 + libs/ui/src/lib/i18n.ts + 64 - - Glossary - Glossary + + Neutral + Neutral - apps/client/src/app/pages/resources/resources-page.html - 75 + libs/ui/src/lib/i18n.ts + 67 - + Membership Membership - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + libs/ui/src/lib/membership-card/membership-card.component.html + 18 + + + + Valid until + Valid until + + libs/ui/src/lib/membership-card/membership-card.component.html 22 + + + Time to add your first activity. + Time to add your first activity. - apps/client/src/app/pages/user-account/user-account-page.component.ts - 39 + libs/ui/src/lib/no-transactions-info/no-transactions-info.component.html + 12 - - Access - Access + + No data available + No data available - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 27 + libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts + 386 - apps/client/src/app/pages/user-account/user-account-page.component.ts - 45 + libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts + 399 - - My Ghostfolio - My Ghostfolio + + 50-Day Trend + 50-Day Trend - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 32 + libs/ui/src/lib/benchmark/benchmark.component.html + 15 - - Oops, authentication has failed. - Oops, authentication has failed. + + 200-Day Trend + 200-Day Trend - apps/client/src/app/pages/webauthn/webauthn-page.html - 18 + libs/ui/src/lib/benchmark/benchmark.component.html + 39 - - Try again - Try again + + Cash Balances + Cash Balances - apps/client/src/app/pages/webauthn/webauthn-page.html - 26 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 88 - - Go back to Home Page - Go back to Home Page + + Starting from + Starting from - apps/client/src/app/pages/webauthn/webauthn-page.html - 30 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Import Activities - Import Activities - libs/ui/src/lib/activities-table/activities-table.component.html - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - libs/ui/src/lib/activities-table/activities-table.component.html - 453 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Import Dividends - Import Dividends - libs/ui/src/lib/activities-table/activities-table.component.html - 35 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - libs/ui/src/lib/activities-table/activities-table.component.html - 464 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Export Activities - Export Activities - libs/ui/src/lib/activities-table/activities-table.component.html - 47 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - libs/ui/src/lib/activities-table/activities-table.component.html - 476 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Export Drafts as ICS - Export Drafts as ICS - libs/ui/src/lib/activities-table/activities-table.component.html - 59 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - libs/ui/src/lib/activities-table/activities-table.component.html - 488 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Delete all Activities - Delete all Activities - libs/ui/src/lib/activities-table/activities-table.component.html - 69 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Draft - Draft - libs/ui/src/lib/activities-table/activities-table.component.html - 189 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Clone - Clone - libs/ui/src/lib/activities-table/activities-table.component.html - 513 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Export Draft as ICS - Export Draft as ICS - libs/ui/src/lib/activities-table/activities-table.component.html - 523 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Do you really want to delete this activity? - Do you really want to delete this activity? - libs/ui/src/lib/activities-table/activities-table.component.ts - 227 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Filter by account, currency, symbol or type... - Filter by account, currency, symbol or type... - libs/ui/src/lib/activities-table/activities-table.component.ts - 427 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Find holding... - Find holding... - libs/ui/src/lib/assistant/assistant.component.ts - 89 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - No entries... - No entries... - libs/ui/src/lib/assistant/assistant.html - 63 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - libs/ui/src/lib/assistant/assistant.html - 84 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Asset Profiles - Asset Profiles - libs/ui/src/lib/assistant/assistant.html - 67 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Index - Index - libs/ui/src/lib/benchmark/benchmark.component.html - 3 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Last All Time High - Last All Time High - libs/ui/src/lib/benchmark/benchmark.component.html - 63 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Change from All Time High - Change from All Time High - libs/ui/src/lib/benchmark/benchmark.component.html - 79 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - from ATH - from ATH - libs/ui/src/lib/benchmark/benchmark.component.html - 81 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Market data provided by - Market data provided by - libs/ui/src/lib/data-provider-credits/data-provider-credits.component.html - 2 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Savings Rate per Month - Savings Rate per Month - libs/ui/src/lib/fire-calculator/fire-calculator.component.html - 10 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Annual Interest Rate - Annual Interest Rate - libs/ui/src/lib/fire-calculator/fire-calculator.component.html - 21 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Retirement Date - Retirement Date - libs/ui/src/lib/fire-calculator/fire-calculator.component.html - 32 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Projected Total Amount - Projected Total Amount - libs/ui/src/lib/fire-calculator/fire-calculator.component.html - 60 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Interest - Interest - libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 341 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - libs/ui/src/lib/i18n.ts - 33 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Savings - Savings - libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 351 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Allocation - Allocation - libs/ui/src/lib/holdings-table/holdings-table.component.html - 98 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Show all - Show all - libs/ui/src/lib/holdings-table/holdings-table.component.html - 172 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Account - Account - libs/ui/src/lib/i18n.ts - 4 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Asia-Pacific - Asia-Pacific - libs/ui/src/lib/i18n.ts - 5 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Asset Class - Asset Class - libs/ui/src/lib/i18n.ts - 6 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Asset Sub Class - Asset Sub Class - libs/ui/src/lib/i18n.ts - 7 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Core - Core - libs/ui/src/lib/i18n.ts - 8 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Switch to Ghostfolio Premium or Ghostfolio Open Source easily - Switch to Ghostfolio Premium or Ghostfolio Open Source easily - libs/ui/src/lib/i18n.ts - 9 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Switch to Ghostfolio Premium easily - Switch to Ghostfolio Premium easily - libs/ui/src/lib/i18n.ts - 10 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Switch to Ghostfolio Open Source or Ghostfolio Basic easily - Switch to Ghostfolio Open Source or Ghostfolio Basic easily - libs/ui/src/lib/i18n.ts - 11 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Emergency Fund - Emergency Fund - libs/ui/src/lib/i18n.ts - 12 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Grant - Grant - libs/ui/src/lib/i18n.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Higher Risk - Higher Risk - libs/ui/src/lib/i18n.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - This activity already exists. - This activity already exists. - libs/ui/src/lib/i18n.ts - 15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Japan - Japan - libs/ui/src/lib/i18n.ts - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Lower Risk - Lower Risk - libs/ui/src/lib/i18n.ts - 17 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Month - Month - libs/ui/src/lib/i18n.ts - 18 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - - Months - Months - libs/ui/src/lib/i18n.ts - 19 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - - Other - Other - libs/ui/src/lib/i18n.ts - 20 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts - 384 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - - Preset - Preset - libs/ui/src/lib/i18n.ts - 21 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - - Retirement Provision - Retirement Provision - libs/ui/src/lib/i18n.ts - 22 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - - Satellite - Satellite - libs/ui/src/lib/i18n.ts - 23 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - - Symbol - Symbol - libs/ui/src/lib/i18n.ts - 24 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - - Tag - Tag - libs/ui/src/lib/i18n.ts - 25 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - - Year - Year - libs/ui/src/lib/i18n.ts - 26 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - - Years - Years - libs/ui/src/lib/i18n.ts - 27 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - Buy - Buy + + year + year + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + - libs/ui/src/lib/i18n.ts - 30 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Fee - Fee - libs/ui/src/lib/i18n.ts - 32 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Valuable - Valuable - libs/ui/src/lib/i18n.ts - 34 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Liability - Liability - libs/ui/src/lib/i18n.ts - 35 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Sell - Sell - libs/ui/src/lib/i18n.ts - 36 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Cash - Cash - libs/ui/src/lib/i18n.ts - 39 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Commodity - Commodity - libs/ui/src/lib/i18n.ts - 40 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Equity - Equity - libs/ui/src/lib/i18n.ts - 41 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Fixed Income - Fixed Income - libs/ui/src/lib/i18n.ts - 42 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Real Estate - Real Estate - libs/ui/src/lib/i18n.ts - 43 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Bond - Bond - libs/ui/src/lib/i18n.ts - 46 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Cryptocurrency - Cryptocurrency - libs/ui/src/lib/i18n.ts - 47 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - ETF - ETF - libs/ui/src/lib/i18n.ts - 48 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Mutual Fund - Mutual Fund - libs/ui/src/lib/i18n.ts - 49 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Precious Metal - Precious Metal - libs/ui/src/lib/i18n.ts - 50 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Private Equity - Private Equity - libs/ui/src/lib/i18n.ts - 51 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Stock - Stock - libs/ui/src/lib/i18n.ts - 52 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Africa - Africa - libs/ui/src/lib/i18n.ts - 55 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Asia - Asia - libs/ui/src/lib/i18n.ts - 56 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Europe - Europe - libs/ui/src/lib/i18n.ts - 57 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - North America - North America - libs/ui/src/lib/i18n.ts - 58 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Oceania - Oceania - libs/ui/src/lib/i18n.ts - 59 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - South America - South America - libs/ui/src/lib/i18n.ts - 60 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Extreme Fear - Extreme Fear - libs/ui/src/lib/i18n.ts - 63 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Extreme Greed - Extreme Greed - libs/ui/src/lib/i18n.ts - 64 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Neutral - Neutral - libs/ui/src/lib/i18n.ts - 67 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Membership - Membership - libs/ui/src/lib/membership-card/membership-card.component.html - 18 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Valid until - Valid until - libs/ui/src/lib/membership-card/membership-card.component.html - 22 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Time to add your first activity. - Time to add your first activity. - libs/ui/src/lib/no-transactions-info/no-transactions-info.component.html - 12 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - No data available - No data available - libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts - 386 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts - 399 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - 50-Day Trend - 50-Day Trend - libs/ui/src/lib/benchmark/benchmark.component.html - 15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - 200-Day Trend - 200-Day Trend + + Do you really want to delete this account balance? + Do you really want to delete this account balance? - libs/ui/src/lib/benchmark/benchmark.component.html - 39 + libs/ui/src/lib/account-balances/account-balances.component.ts + 56 diff --git a/apps/client/src/locales/messages.pt.xlf b/apps/client/src/locales/messages.pt.xlf index 6b0e450a3..2c358c8cd 100644 --- a/apps/client/src/locales/messages.pt.xlf +++ b/apps/client/src/locales/messages.pt.xlf @@ -102,7 +102,7 @@ apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 69 + 73 apps/client/src/app/components/accounts-table/accounts-table.component.html @@ -272,6 +272,10 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 227 + + libs/ui/src/lib/account-balances/account-balances.component.html + 20 + libs/ui/src/lib/activities-table/activities-table.component.html 321 @@ -340,6 +344,10 @@ apps/client/src/app/components/admin-tag/admin-tag.component.html 77 + + libs/ui/src/lib/account-balances/account-balances.component.html + 50 + libs/ui/src/lib/activities-table/activities-table.component.html 529 @@ -488,6 +496,10 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 136 + + libs/ui/src/lib/account-balances/account-balances.component.html + 11 + libs/ui/src/lib/activities-table/activities-table.component.html 152 @@ -2321,7 +2333,7 @@ apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html - 203 + 204 apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.html @@ -8885,191 +8897,191 @@ Notes apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 196 @@ -9077,191 +9089,191 @@ Effortlessly track, analyze, and visualize your wealth with Ghostfolio. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 221 @@ -9269,191 +9281,191 @@ Personal Finance Tools apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + 302 @@ -10193,191 +10205,191 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 26 + 27 @@ -10461,191 +10473,191 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 25 + 26 @@ -10865,191 +10877,191 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/resources-page.component.ts @@ -11856,1828 +11868,2220 @@ 37 - - Starting from / year - Starting from / year + + open-source-alternative-to + open-source-alternative-to + + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 22 + + + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 13 + + + + Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. + Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 204 - - Starting from / year - Starting from / year + + Ready to take your investments to the next level? + Ready to take your investments to the next level? apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 - - - - open-source-alternative-to - open-source-alternative-to - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 22 - - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 13 + 217 - - Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. - Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. + + Get Started + Get Started apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 226 - - Ready to take your investments to the next level? - Ready to take your investments to the next level? + + Switzerland + Switzerland - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 69 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 90 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 506 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 548 + + + Global + Global - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 70 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 317 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 438 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 549 + + + United States + United States - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 81 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 137 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 147 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 189 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 198 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 208 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 218 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 270 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 292 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 303 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 328 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 330 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 340 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 405 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 415 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 425 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 494 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 517 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 537 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 559 + + + Belgium + Belgium - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 167 + + + Germany + Germany - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 128 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 178 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 250 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 260 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 281 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 315 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 361 + + + Austria + Austria - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 238 + + + Italy + Italy - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 372 + + + Netherlands + Netherlands - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 382 + + + Thailand + Thailand - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 394 + + + New Zealand + New Zealand - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 436 + + + Czech Republic + Czech Republic - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 447 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 484 + + + (Last 24 hours) + (Last 24 hours) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/open/open-page.html + 37 + + + (Last 30 days) + (Last 30 days) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/open/open-page.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/open/open-page.html + 59 + + + (Last 90 days) + (Last 90 days) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + apps/client/src/app/pages/open/open-page.html + 127 - - Get Started - Get Started + + New + New - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/landing/landing-page.html + 7 + + + Choose or drop a file here + Choose or drop a file here - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 85 + + + You are using the Live Demo. + You are using the Live Demo. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/app.component.html + 17 + + + One-time fee, annual account fees + One-time fee, annual account fees - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 27 + + + Distribution of corporate earnings + Distribution of corporate earnings - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 33 + + + Oops! Could not get the historical exchange rate from + Oops! Could not get the historical exchange rate from - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 198 + + + Fee + Fee - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + libs/ui/src/lib/i18n.ts + 32 + + + Interest + Interest - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 280 + + + Revenue for lending out money + Revenue for lending out money - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 39 + + + Add Tag + Add Tag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-tag/admin-tag.component.html + 11 + + + Do you really want to delete this tag? + Do you really want to delete this tag? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-tag/admin-tag.component.ts + 78 + + + Update tag + Update tag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 2 + + + Add tag + Add tag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 3 + + + France + France - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 109 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 458 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 474 + + + Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. + Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 100 + + + Currency Cluster Risks + Currency Cluster Risks - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 124 - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + + + Account Cluster Risks + Account Cluster Risks + + apps/client/src/app/pages/portfolio/fire/fire-page.html + 137 + + + Transfer Cash Balance + Transfer Cash Balance - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 9 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 7 + + + Benchmark + Benchmark - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 219 + + + Version + Version - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/admin-overview/admin-overview.html + 7 + + + Settings + Settings - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 2 + + + From + From - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 11 + + + To + To - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 29 + + + + Transfer + Transfer + + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 66 + + + + Finland + Finland + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 466 + + + + Membership + Membership + + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 22 + + + apps/client/src/app/pages/user-account/user-account-page.component.ts + 39 + + + + Access + Access + + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 27 + + + apps/client/src/app/pages/user-account/user-account-page.component.ts + 45 + + + + Find holding... + Find holding... + + libs/ui/src/lib/assistant/assistant.component.ts + 89 + + + + No entries... + No entries... + + libs/ui/src/lib/assistant/assistant.html + 63 + + + libs/ui/src/lib/assistant/assistant.html + 84 + + + + Asset Profile + Asset Profile + + apps/client/src/app/components/admin-jobs/admin-jobs.html + 31 + + + + Do you really want to delete this asset profile? + Do you really want to delete this asset profile? + + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 184 + + + + Search + Search + + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 16 + + + + Add Manually + Add Manually + + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 19 + + + + Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. + Ghostfolio é um dashboard de finanças pessoais para acompanhar os seus activos como acções, ETFs ou criptomoedas em múltiplas plataformas. + + apps/client/src/app/pages/i18n/i18n-page.html + 4 + + + + Last All Time High + Last All Time High + + libs/ui/src/lib/benchmark/benchmark.component.html + 63 + + + + User + User + + apps/client/src/app/components/admin-users/admin-users.html + 29 + + + Ghostfolio vs comparison table + Ghostfolio vs comparison table apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + 48 - - - Switzerland - Switzerland - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 69 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 91 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 507 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 549 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Global - Global - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 71 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 318 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 439 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 550 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - United States - United States - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 82 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 138 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 148 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 199 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 209 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 219 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 271 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 293 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 304 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 329 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 331 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 341 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 406 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 416 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 426 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 495 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 518 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + Canada + Canada apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 538 + 529 + + + Open Source Wealth Management Software + Open Source Wealth Management Software - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 560 + apps/client/src/app/pages/i18n/i18n-page.html + 13 - - Belgium - Belgium + + app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 + app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 168 + apps/client/src/app/pages/i18n/i18n-page.html + 9 - - Germany - Germany + + Oops, cash balance transfer has failed. + Oops, cash balance transfer has failed. - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 129 + apps/client/src/app/pages/accounts/accounts-page.component.ts + 305 + + + Poland + Poland apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 179 + 119 + + + South Africa + South Africa apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 251 + 227 + + + Extreme Fear + Extreme Fear - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 261 + libs/ui/src/lib/i18n.ts + 63 + + + Extreme Greed + Extreme Greed - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 282 + libs/ui/src/lib/i18n.ts + 64 + + + Neutral + Neutral - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 316 + libs/ui/src/lib/i18n.ts + 67 + + + Oops! Could not parse historical data. + Oops! Could not parse historical data. - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 362 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts + 205 - - Austria - Austria + + Do you really want to delete this system message? + Do you really want to delete this system message? - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 239 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 159 - - Italy - Italy + + 50-Day Trend + 50-Day Trend - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 373 + libs/ui/src/lib/benchmark/benchmark.component.html + 15 - - Netherlands - Netherlands + + 200-Day Trend + 200-Day Trend - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 383 + libs/ui/src/lib/benchmark/benchmark.component.html + 39 - - Thailand - Thailand + + Cash Balances + Cash Balances - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 395 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 88 - - New Zealand - New Zealand + + Starting from + Starting from - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 437 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Czech Republic - Czech Republic - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 448 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 485 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - (Last 24 hours) - (Last 24 hours) - apps/client/src/app/pages/open/open-page.html - 37 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - (Last 30 days) - (Last 30 days) - apps/client/src/app/pages/open/open-page.html - 48 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/open/open-page.html - 59 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - (Last 90 days) - (Last 90 days) - apps/client/src/app/pages/open/open-page.html - 127 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - New - New - apps/client/src/app/pages/landing/landing-page.html - 7 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Choose or drop a file here - Choose or drop a file here - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 85 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - You are using the Live Demo. - You are using the Live Demo. - apps/client/src/app/app.component.html - 17 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - One-time fee, annual account fees - One-time fee, annual account fees - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 27 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Distribution of corporate earnings - Distribution of corporate earnings - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 33 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Oops! Could not get the historical exchange rate from - Oops! Could not get the historical exchange rate from - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 198 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Fee - Fee - libs/ui/src/lib/i18n.ts - 32 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Interest - Interest - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 280 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Revenue for lending out money - Revenue for lending out money - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 39 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Add Tag - Add Tag - apps/client/src/app/components/admin-tag/admin-tag.component.html - 11 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Do you really want to delete this tag? - Do you really want to delete this tag? - apps/client/src/app/components/admin-tag/admin-tag.component.ts - 78 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Update tag - Update tag - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 2 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Add tag - Add tag - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 3 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - France - France - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 110 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 459 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 475 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - apps/client/src/app/pages/portfolio/fire/fire-page.html - 100 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Currency Cluster Risks - Currency Cluster Risks - apps/client/src/app/pages/portfolio/fire/fire-page.html - 124 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Account Cluster Risks - Account Cluster Risks - apps/client/src/app/pages/portfolio/fire/fire-page.html - 137 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Transfer Cash Balance - Transfer Cash Balance - apps/client/src/app/components/accounts-table/accounts-table.component.html - 9 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 7 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Benchmark - Benchmark - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 219 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Version - Version - apps/client/src/app/components/admin-overview/admin-overview.html - 7 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Settings - Settings - apps/client/src/app/components/user-account-settings/user-account-settings.html - 2 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - From - From - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 11 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - To - To - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 29 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Transfer - Transfer - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 66 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Finland - Finland - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 467 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Membership - Membership - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 22 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/user-account/user-account-page.component.ts - 39 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Access - Access - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 27 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/user-account/user-account-page.component.ts - 45 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Find holding... - Find holding... - libs/ui/src/lib/assistant/assistant.component.ts - 89 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - No entries... - No entries... + + year + year - libs/ui/src/lib/assistant/assistant.html - 63 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - libs/ui/src/lib/assistant/assistant.html - 84 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Asset Profile - Asset Profile - apps/client/src/app/components/admin-jobs/admin-jobs.html - 31 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Do you really want to delete this asset profile? - Do you really want to delete this asset profile? - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 184 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Search - Search - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Add Manually - Add Manually - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 19 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. - Ghostfolio é um dashboard de finanças pessoais para acompanhar os seus activos como acções, ETFs ou criptomoedas em múltiplas plataformas. - apps/client/src/app/pages/i18n/i18n-page.html - 4 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Last All Time High - Last All Time High - libs/ui/src/lib/benchmark/benchmark.component.html - 63 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - User - User - apps/client/src/app/components/admin-users/admin-users.html - 29 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Ghostfolio vs comparison table - Ghostfolio vs comparison table apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 - - - Canada - Canada - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 530 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Open Source Wealth Management Software - Open Source Wealth Management Software - apps/client/src/app/pages/i18n/i18n-page.html - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - apps/client/src/app/pages/i18n/i18n-page.html - 9 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Oops, cash balance transfer has failed. - Oops, cash balance transfer has failed. - apps/client/src/app/pages/accounts/accounts-page.component.ts - 305 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Poland - Poland - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 120 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - South Africa - South Africa - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 228 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Extreme Fear - Extreme Fear - libs/ui/src/lib/i18n.ts - 63 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Extreme Greed - Extreme Greed - libs/ui/src/lib/i18n.ts - 64 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Neutral - Neutral - libs/ui/src/lib/i18n.ts - 67 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Oops! Could not parse historical data. - Oops! Could not parse historical data. - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts - 205 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Do you really want to delete this system message? - Do you really want to delete this system message? - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 159 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - 50-Day Trend - 50-Day Trend - libs/ui/src/lib/benchmark/benchmark.component.html - 15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - 200-Day Trend - 200-Day Trend + + Do you really want to delete this account balance? + Do you really want to delete this account balance? - libs/ui/src/lib/benchmark/benchmark.component.html - 39 + libs/ui/src/lib/account-balances/account-balances.component.ts + 56 diff --git a/apps/client/src/locales/messages.tr.xlf b/apps/client/src/locales/messages.tr.xlf index 3905e92bb..fd1b43788 100644 --- a/apps/client/src/locales/messages.tr.xlf +++ b/apps/client/src/locales/messages.tr.xlf @@ -82,191 +82,191 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 25 + 26 @@ -346,191 +346,191 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 26 + 27 @@ -750,191 +750,191 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/resources-page.component.ts @@ -1014,7 +1014,7 @@ apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html - 203 + 204 apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.html @@ -1526,7 +1526,7 @@ apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 69 + 73 apps/client/src/app/components/accounts-table/accounts-table.component.html @@ -1680,6 +1680,10 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 227 + + libs/ui/src/lib/account-balances/account-balances.component.html + 20 + libs/ui/src/lib/activities-table/activities-table.component.html 321 @@ -1748,6 +1752,10 @@ apps/client/src/app/components/admin-tag/admin-tag.component.html 77 + + libs/ui/src/lib/account-balances/account-balances.component.html + 50 + libs/ui/src/lib/activities-table/activities-table.component.html 529 @@ -1896,6 +1904,10 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 136 + + libs/ui/src/lib/account-balances/account-balances.component.html + 11 + libs/ui/src/lib/activities-table/activities-table.component.html 152 @@ -10380,3304 +10392,3696 @@ 164 - - Starting from / year - Starting from / year + + Notes + Notes apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 - - Starting from / year - Starting from / year + + Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. + Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 - - Notes - Notes + + Ready to take your investments to the next level? + Ready to take your investments to the next level? apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 - - Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. - Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. + + Effortlessly track, analyze, and visualize your wealth with Ghostfolio. + Effortlessly track, analyze, and visualize your wealth with Ghostfolio. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 - - Ready to take your investments to the next level? - Ready to take your investments to the next level? + + Get Started + Get Started apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 - - Effortlessly track, analyze, and visualize your wealth with Ghostfolio. - Effortlessly track, analyze, and visualize your wealth with Ghostfolio. + + Personal Finance Tools + Personal Finance Tools apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 - - Get Started - Get Started + + Switzerland + Switzerland - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 69 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 90 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 506 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 548 + + + Global + Global - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 70 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 317 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 438 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 549 + + + United States + United States - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 81 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 137 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 147 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 189 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 198 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 208 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 218 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 270 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 292 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 303 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 328 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 330 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 340 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 405 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 415 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 425 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 494 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 517 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 537 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 559 + + + Belgium + Belgium - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 167 + + + Germany + Germany - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 128 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 178 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 250 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 260 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 281 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 315 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 361 + + + Austria + Austria - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 238 + + + Italy + Italy - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 372 + + + Netherlands + Netherlands - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 382 + + + Thailand + Thailand - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 394 + + + New Zealand + New Zealand - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 436 + + + Czech Republic + Czech Republic - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 447 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 484 + + + Resources + Resources - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/resources-page-routing.module.ts + 12 + + + Guides + Guides - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/resources-page.html + 5 + + + Glossary + Glossary - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/resources-page.html + 75 + + + Grant access + Grant access - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html + 7 - - Personal Finance Tools - Personal Finance Tools + + Public + Public - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html + 24 + + + My Ghostfolio + My Ghostfolio - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 32 + + + Auto + Auto - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.component.ts + 31 + + + Please enter your coupon code: + Please enter your coupon code: - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 110 + + + Could not redeem coupon code + Could not redeem coupon code - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 120 + + + Coupon code has been redeemed + Coupon code has been redeemed - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 132 + + + Reload + Reload - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 133 + + + Do you really want to remove this sign in method? + Do you really want to remove this sign in method? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.component.ts + 182 + + + Membership + Membership - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/membership-card/membership-card.component.html + 18 + + + Valid until + Valid until - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/membership-card/membership-card.component.html + 22 + + + Upgrade + Upgrade - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-membership/user-account-membership.html + 18 + + + Renew + Renew - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-membership/user-account-membership.html + 21 + + + per year + per year - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-membership/user-account-membership.html + 33 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/pages/pricing/pricing-page.html + 332 + + + Try Premium + Try Premium - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-membership/user-account-membership.html + 42 + + + Redeem Coupon + Redeem Coupon - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-membership/user-account-membership.html + 55 + + + Presenter View + Presenter View - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 7 + + + Protection for sensitive information like absolute performances and quantity values + Protection for sensitive information like absolute performances and quantity values - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 8 + + + Base Currency + Base Currency - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 27 + + + Language + Language - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 48 + + + Locale + Locale - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 95 + + + Date and number format + Date and number format - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 97 + + + Appearance + Appearance - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 118 + + + Auto + Auto - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 130 + + + Light + Light - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 131 + + + Dark + Dark - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 132 + + + Distraction-free experience for turbulent times + Distraction-free experience for turbulent times - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 142 + + + Biometric Authentication + Biometric Authentication - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 158 + + + Sign in with fingerprint + Sign in with fingerprint - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 159 + + + Experimental Features + Experimental Features - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 176 + + + Sneak peek at upcoming functionality + Sneak peek at upcoming functionality - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 177 + + + User ID + User ID - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 192 + + + Export Data + Export Data - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 199 + + + Granted Access + Granted Access - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-access/user-account-access.html + 5 + + + Oops, authentication has failed. + Oops, authentication has failed. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/pages/webauthn/webauthn-page.html + 18 + + + Try again + Try again - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/pages/webauthn/webauthn-page.html + 26 + + + Go back to Home Page + Go back to Home Page - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/pages/webauthn/webauthn-page.html + 30 + + + Import Activities + Import Activities - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/activities-table/activities-table.component.html + 16 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/activities-table/activities-table.component.html + 453 + + + Import Dividends + Import Dividends - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/activities-table/activities-table.component.html + 35 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/activities-table/activities-table.component.html + 464 + + + Export Activities + Export Activities - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/activities-table/activities-table.component.html + 47 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/activities-table/activities-table.component.html + 476 + + + Export Drafts as ICS + Export Drafts as ICS - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/activities-table/activities-table.component.html + 59 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/activities-table/activities-table.component.html + 488 - - Switzerland - Switzerland + + Delete all Activities + Delete all Activities - apps/client/src/app/pages/resources/personal-finance-tools/products.ts + libs/ui/src/lib/activities-table/activities-table.component.html 69 + + + Draft + Draft - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 91 + libs/ui/src/lib/activities-table/activities-table.component.html + 189 + + + Clone + Clone - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 507 + libs/ui/src/lib/activities-table/activities-table.component.html + 513 + + + Export Draft as ICS + Export Draft as ICS - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 549 + libs/ui/src/lib/activities-table/activities-table.component.html + 523 - - Global - Global + + Do you really want to delete this activity? + Do you really want to delete this activity? - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 71 + libs/ui/src/lib/activities-table/activities-table.component.ts + 227 + + + Filter by account, currency, symbol or type... + Filter by account, currency, symbol or type... - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 318 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 439 + libs/ui/src/lib/activities-table/activities-table.component.ts + 427 + + + Index + Index - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 550 + libs/ui/src/lib/benchmark/benchmark.component.html + 3 - - United States - United States + + Change from All Time High + Change from All Time High - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 82 + libs/ui/src/lib/benchmark/benchmark.component.html + 79 + + + from ATH + from ATH - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 138 + libs/ui/src/lib/benchmark/benchmark.component.html + 81 + + + Market data provided by + Market data provided by - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 148 + libs/ui/src/lib/data-provider-credits/data-provider-credits.component.html + 2 + + + Savings Rate per Month + Savings Rate per Month - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 190 + libs/ui/src/lib/fire-calculator/fire-calculator.component.html + 10 + + + Annual Interest Rate + Annual Interest Rate - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 199 + libs/ui/src/lib/fire-calculator/fire-calculator.component.html + 21 + + + Retirement Date + Retirement Date - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 209 + libs/ui/src/lib/fire-calculator/fire-calculator.component.html + 32 + + + Projected Total Amount + Projected Total Amount - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 219 + libs/ui/src/lib/fire-calculator/fire-calculator.component.html + 60 + + + Interest + Interest - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 271 + libs/ui/src/lib/fire-calculator/fire-calculator.component.ts + 341 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 293 + libs/ui/src/lib/i18n.ts + 33 + + + Savings + Savings - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 304 + libs/ui/src/lib/fire-calculator/fire-calculator.component.ts + 351 + + + Allocation + Allocation - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 329 + libs/ui/src/lib/holdings-table/holdings-table.component.html + 98 + + + Show all + Show all - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 331 + libs/ui/src/lib/holdings-table/holdings-table.component.html + 172 + + + Account + Account - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 341 + libs/ui/src/lib/i18n.ts + 4 + + + Asia-Pacific + Asia-Pacific - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 406 + libs/ui/src/lib/i18n.ts + 5 + + + Asset Class + Asset Class - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 416 + libs/ui/src/lib/i18n.ts + 6 + + + Asset Sub Class + Asset Sub Class - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 426 + libs/ui/src/lib/i18n.ts + 7 + + + Core + Core - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 495 + libs/ui/src/lib/i18n.ts + 8 + + + Switch to Ghostfolio Premium or Ghostfolio Open Source easily + Switch to Ghostfolio Premium or Ghostfolio Open Source easily - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 518 + libs/ui/src/lib/i18n.ts + 9 + + + Switch to Ghostfolio Premium easily + Switch to Ghostfolio Premium easily - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 538 + libs/ui/src/lib/i18n.ts + 10 + + + Switch to Ghostfolio Open Source or Ghostfolio Basic easily + Switch to Ghostfolio Open Source or Ghostfolio Basic easily - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 560 + libs/ui/src/lib/i18n.ts + 11 - - Belgium - Belgium + + Emergency Fund + Emergency Fund - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 168 + libs/ui/src/lib/i18n.ts + 12 - - Germany - Germany + + Grant + Grant - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 129 + libs/ui/src/lib/i18n.ts + 13 + + + Higher Risk + Higher Risk - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 179 + libs/ui/src/lib/i18n.ts + 14 + + + This activity already exists. + This activity already exists. - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 251 + libs/ui/src/lib/i18n.ts + 15 + + + Japan + Japan - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 261 + libs/ui/src/lib/i18n.ts + 16 + + + Lower Risk + Lower Risk - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 282 + libs/ui/src/lib/i18n.ts + 17 + + + Month + Month - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 316 + libs/ui/src/lib/i18n.ts + 18 + + + Months + Months - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 362 + libs/ui/src/lib/i18n.ts + 19 - - Austria - Austria + + Other + Other - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 239 + libs/ui/src/lib/i18n.ts + 20 - - - Italy - Italy - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 373 + libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts + 384 - - Netherlands - Netherlands + + Preset + Preset - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 383 + libs/ui/src/lib/i18n.ts + 21 - - Thailand - Thailand + + Retirement Provision + Retirement Provision - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 395 + libs/ui/src/lib/i18n.ts + 22 - - New Zealand - New Zealand + + Satellite + Satellite - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 437 + libs/ui/src/lib/i18n.ts + 23 - - Czech Republic - Czech Republic - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 448 - + + Symbol + Symbol - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 485 + libs/ui/src/lib/i18n.ts + 24 - - Resources - Resources + + Tag + Tag - apps/client/src/app/pages/resources/resources-page-routing.module.ts - 12 + libs/ui/src/lib/i18n.ts + 25 - - Guides - Guides + + Year + Yıl - apps/client/src/app/pages/resources/resources-page.html - 5 + libs/ui/src/lib/i18n.ts + 26 - - Glossary - Glossary + + Years + Years - apps/client/src/app/pages/resources/resources-page.html - 75 + libs/ui/src/lib/i18n.ts + 27 - - Grant access - Grant access + + Buy + Buy - apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html - 7 + libs/ui/src/lib/i18n.ts + 30 - - Public - Public + + Valuable + Valuable - apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html - 24 + libs/ui/src/lib/i18n.ts + 34 - - My Ghostfolio - My Ghostfolio + + Liability + Liability - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 32 + libs/ui/src/lib/i18n.ts + 35 - - Auto - Auto + + Sell + Sell - apps/client/src/app/components/user-account-settings/user-account-settings.component.ts - 31 + libs/ui/src/lib/i18n.ts + 36 - - Please enter your coupon code: - Please enter your coupon code: + + Cash + Cash - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 110 + libs/ui/src/lib/i18n.ts + 39 - - Could not redeem coupon code - Could not redeem coupon code + + Commodity + Commodity - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 120 + libs/ui/src/lib/i18n.ts + 40 - - Coupon code has been redeemed - Coupon code has been redeemed + + Equity + Equity - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 132 + libs/ui/src/lib/i18n.ts + 41 - - Reload - Reload + + Fixed Income + Fixed Income - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 133 + libs/ui/src/lib/i18n.ts + 42 - - Do you really want to remove this sign in method? - Do you really want to remove this sign in method? + + Real Estate + Real Estate - apps/client/src/app/components/user-account-settings/user-account-settings.component.ts - 182 + libs/ui/src/lib/i18n.ts + 43 - - Membership - Membership + + Bond + Bond - libs/ui/src/lib/membership-card/membership-card.component.html - 18 + libs/ui/src/lib/i18n.ts + 46 - - Valid until - Valid until + + Cryptocurrency + Cryptocurrency - libs/ui/src/lib/membership-card/membership-card.component.html - 22 + libs/ui/src/lib/i18n.ts + 47 - - Upgrade - Upgrade + + ETF + ETF - apps/client/src/app/components/user-account-membership/user-account-membership.html - 18 + libs/ui/src/lib/i18n.ts + 48 - - Renew - Renew + + Mutual Fund + Mutual Fund - apps/client/src/app/components/user-account-membership/user-account-membership.html - 21 + libs/ui/src/lib/i18n.ts + 49 - - per year - per year + + Precious Metal + Precious Metal - apps/client/src/app/components/user-account-membership/user-account-membership.html - 33 + libs/ui/src/lib/i18n.ts + 50 + + + Private Equity + Private Equity - apps/client/src/app/pages/pricing/pricing-page.html - 332 + libs/ui/src/lib/i18n.ts + 51 - - Try Premium - Try Premium + + Stock + Stock - apps/client/src/app/components/user-account-membership/user-account-membership.html - 42 + libs/ui/src/lib/i18n.ts + 52 - - Redeem Coupon - Redeem Coupon + + Africa + Africa - apps/client/src/app/components/user-account-membership/user-account-membership.html + libs/ui/src/lib/i18n.ts 55 - - Presenter View - Presenter View + + Asia + Asia - apps/client/src/app/components/user-account-settings/user-account-settings.html - 7 + libs/ui/src/lib/i18n.ts + 56 - - Protection for sensitive information like absolute performances and quantity values - Protection for sensitive information like absolute performances and quantity values + + Europe + Europe - apps/client/src/app/components/user-account-settings/user-account-settings.html - 8 + libs/ui/src/lib/i18n.ts + 57 - - Base Currency - Base Currency + + North America + North America - apps/client/src/app/components/user-account-settings/user-account-settings.html - 27 + libs/ui/src/lib/i18n.ts + 58 - - Language - Language + + Oceania + Oceania - apps/client/src/app/components/user-account-settings/user-account-settings.html - 48 + libs/ui/src/lib/i18n.ts + 59 - - Locale - Locale + + South America + South America - apps/client/src/app/components/user-account-settings/user-account-settings.html - 95 + libs/ui/src/lib/i18n.ts + 60 - - Date and number format - Date and number format + + Time to add your first activity. + Time to add your first activity. - apps/client/src/app/components/user-account-settings/user-account-settings.html - 97 + libs/ui/src/lib/no-transactions-info/no-transactions-info.component.html + 12 - - Appearance - Appearance + + No data available + No data available - apps/client/src/app/components/user-account-settings/user-account-settings.html - 118 + libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts + 386 - - - Auto - Auto - apps/client/src/app/components/user-account-settings/user-account-settings.html - 130 + libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts + 399 - - Light - Light + + You are using the Live Demo. + You are using the Live Demo. - apps/client/src/app/components/user-account-settings/user-account-settings.html - 131 + apps/client/src/app/app.component.html + 17 - - Dark - Dark + + Interest + Interest - apps/client/src/app/components/user-account-settings/user-account-settings.html - 132 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 280 - - Distraction-free experience for turbulent times - Distraction-free experience for turbulent times + + New + New - apps/client/src/app/components/user-account-settings/user-account-settings.html - 142 + apps/client/src/app/pages/landing/landing-page.html + 7 - - Biometric Authentication - Biometric Authentication + + (Last 24 hours) + (Last 24 hours) - apps/client/src/app/components/user-account-settings/user-account-settings.html - 158 + apps/client/src/app/pages/open/open-page.html + 37 - - Sign in with fingerprint - Sign in with fingerprint + + (Last 30 days) + (Last 30 days) - apps/client/src/app/components/user-account-settings/user-account-settings.html - 159 + apps/client/src/app/pages/open/open-page.html + 48 - - - Experimental Features - Experimental Features - apps/client/src/app/components/user-account-settings/user-account-settings.html - 176 + apps/client/src/app/pages/open/open-page.html + 59 - - Sneak peek at upcoming functionality - Sneak peek at upcoming functionality + + (Last 90 days) + (Last 90 days) - apps/client/src/app/components/user-account-settings/user-account-settings.html - 177 + apps/client/src/app/pages/open/open-page.html + 127 - - User ID - User ID + + One-time fee, annual account fees + One-time fee, annual account fees - apps/client/src/app/components/user-account-settings/user-account-settings.html - 192 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 27 - - Export Data - Export Data + + Distribution of corporate earnings + Distribution of corporate earnings - apps/client/src/app/components/user-account-settings/user-account-settings.html - 199 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 33 - - Granted Access - Granted Access + + Revenue for lending out money + Revenue for lending out money - apps/client/src/app/components/user-account-access/user-account-access.html - 5 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 39 - - Oops, authentication has failed. - Oops, authentication has failed. + + Oops! Could not get the historical exchange rate from + Oops! Could not get the historical exchange rate from - apps/client/src/app/pages/webauthn/webauthn-page.html - 18 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 198 - - Try again - Try again + + Choose or drop a file here + Choose or drop a file here - apps/client/src/app/pages/webauthn/webauthn-page.html - 26 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 85 - - Go back to Home Page - Go back to Home Page + + Fee + Fee - apps/client/src/app/pages/webauthn/webauthn-page.html - 30 + libs/ui/src/lib/i18n.ts + 32 - - Import Activities - Import Activities - - libs/ui/src/lib/activities-table/activities-table.component.html - 16 - + + Add Tag + Add Tag - libs/ui/src/lib/activities-table/activities-table.component.html - 453 + apps/client/src/app/components/admin-tag/admin-tag.component.html + 11 - - Import Dividends - Import Dividends + + Do you really want to delete this tag? + Do you really want to delete this tag? - libs/ui/src/lib/activities-table/activities-table.component.html - 35 + apps/client/src/app/components/admin-tag/admin-tag.component.ts + 78 + + + Update tag + Update tag - libs/ui/src/lib/activities-table/activities-table.component.html - 464 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 2 - - Export Activities - Export Activities + + Add tag + Add tag - libs/ui/src/lib/activities-table/activities-table.component.html - 47 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 3 + + + France + France - libs/ui/src/lib/activities-table/activities-table.component.html - 476 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 109 - - - Export Drafts as ICS - Export Drafts as ICS - libs/ui/src/lib/activities-table/activities-table.component.html - 59 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 458 - libs/ui/src/lib/activities-table/activities-table.component.html - 488 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 474 - - Delete all Activities - Delete all Activities + + Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. + Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - libs/ui/src/lib/activities-table/activities-table.component.html - 69 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 100 - - Draft - Draft + + Currency Cluster Risks + Currency Cluster Risks - libs/ui/src/lib/activities-table/activities-table.component.html - 189 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 124 - - Clone - Clone + + Account Cluster Risks + Account Cluster Risks - libs/ui/src/lib/activities-table/activities-table.component.html - 513 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 137 - - Export Draft as ICS - Export Draft as ICS + + Transfer Cash Balance + Transfer Cash Balance - libs/ui/src/lib/activities-table/activities-table.component.html - 523 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 9 - - - Do you really want to delete this activity? - Do you really want to delete this activity? - libs/ui/src/lib/activities-table/activities-table.component.ts - 227 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 7 - - Filter by account, currency, symbol or type... - Filter by account, currency, symbol or type... + + Benchmark + Benchmark - libs/ui/src/lib/activities-table/activities-table.component.ts - 427 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 219 - - Index - Index + + Version + Version - libs/ui/src/lib/benchmark/benchmark.component.html - 3 + apps/client/src/app/components/admin-overview/admin-overview.html + 7 - - Change from All Time High - Change from All Time High + + Settings + Settings - libs/ui/src/lib/benchmark/benchmark.component.html - 79 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 2 - - from ATH - from ATH + + From + From - libs/ui/src/lib/benchmark/benchmark.component.html - 81 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 11 - - Market data provided by - Market data provided by + + To + To - libs/ui/src/lib/data-provider-credits/data-provider-credits.component.html - 2 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 29 - - Savings Rate per Month - Savings Rate per Month + + Transfer + Transfer - libs/ui/src/lib/fire-calculator/fire-calculator.component.html - 10 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 66 - - Annual Interest Rate - Annual Interest Rate + + Finland + Finland - libs/ui/src/lib/fire-calculator/fire-calculator.component.html - 21 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 466 - - Retirement Date - Retirement Date + + Membership + Membership - libs/ui/src/lib/fire-calculator/fire-calculator.component.html - 32 + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 22 - - - Projected Total Amount - Projected Total Amount - libs/ui/src/lib/fire-calculator/fire-calculator.component.html - 60 + apps/client/src/app/pages/user-account/user-account-page.component.ts + 39 - - Interest - Interest + + Access + Access - libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 341 + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 27 - libs/ui/src/lib/i18n.ts - 33 + apps/client/src/app/pages/user-account/user-account-page.component.ts + 45 - - Savings - Savings + + Find holding... + Find holding... - libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 351 + libs/ui/src/lib/assistant/assistant.component.ts + 89 - - Allocation - Allocation + + No entries... + No entries... - libs/ui/src/lib/holdings-table/holdings-table.component.html - 98 + libs/ui/src/lib/assistant/assistant.html + 63 - - - Show all - Show all - libs/ui/src/lib/holdings-table/holdings-table.component.html - 172 + libs/ui/src/lib/assistant/assistant.html + 84 - - Account - Account + + Asset Profile + Asset Profile - libs/ui/src/lib/i18n.ts - 4 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 31 - - Asia-Pacific - Asia-Pacific + + Do you really want to delete this asset profile? + Do you really want to delete this asset profile? - libs/ui/src/lib/i18n.ts - 5 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 184 - - Asset Class - Asset Class + + Search + Search - libs/ui/src/lib/i18n.ts - 6 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 16 - - Asset Sub Class - Asset Sub Class + + Add Manually + Add Manually - libs/ui/src/lib/i18n.ts - 7 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 19 - - Core - Core + + Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. + Ghostfolio, hisse senetleri, ETF’ler veya kripto para birimleri gibi varlıklarınızı birden fazla platformda takip etmenizi sağlayan bir kişisel finans panosudur. - libs/ui/src/lib/i18n.ts - 8 + apps/client/src/app/pages/i18n/i18n-page.html + 4 - - Switch to Ghostfolio Premium or Ghostfolio Open Source easily - Switch to Ghostfolio Premium or Ghostfolio Open Source easily + + Last All Time High + Last All Time High - libs/ui/src/lib/i18n.ts - 9 + libs/ui/src/lib/benchmark/benchmark.component.html + 63 - - Switch to Ghostfolio Premium easily - Switch to Ghostfolio Premium easily + + User + User - libs/ui/src/lib/i18n.ts - 10 + apps/client/src/app/components/admin-users/admin-users.html + 29 - - Switch to Ghostfolio Open Source or Ghostfolio Basic easily - Switch to Ghostfolio Open Source or Ghostfolio Basic easily + + Ghostfolio vs comparison table + Ghostfolio vs comparison table - libs/ui/src/lib/i18n.ts - 11 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Emergency Fund - Emergency Fund - libs/ui/src/lib/i18n.ts - 12 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Grant - Grant - libs/ui/src/lib/i18n.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Higher Risk - Higher Risk - libs/ui/src/lib/i18n.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - This activity already exists. - This activity already exists. - libs/ui/src/lib/i18n.ts - 15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Japan - Japan - libs/ui/src/lib/i18n.ts - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Lower Risk - Lower Risk - libs/ui/src/lib/i18n.ts - 17 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Month - Month - libs/ui/src/lib/i18n.ts - 18 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Months - Months - libs/ui/src/lib/i18n.ts - 19 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Other - Other - libs/ui/src/lib/i18n.ts - 20 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts - 384 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Preset - Preset - libs/ui/src/lib/i18n.ts - 21 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Retirement Provision - Retirement Provision - libs/ui/src/lib/i18n.ts - 22 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Satellite - Satellite - libs/ui/src/lib/i18n.ts - 23 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Symbol - Symbol - libs/ui/src/lib/i18n.ts - 24 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Tag - Tag - libs/ui/src/lib/i18n.ts - 25 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Year - Yıl - libs/ui/src/lib/i18n.ts - 26 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Years - Years - libs/ui/src/lib/i18n.ts - 27 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Buy - Buy - libs/ui/src/lib/i18n.ts - 30 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Valuable - Valuable - libs/ui/src/lib/i18n.ts - 34 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Liability - Liability - libs/ui/src/lib/i18n.ts - 35 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Sell - Sell - libs/ui/src/lib/i18n.ts - 36 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Cash - Cash - libs/ui/src/lib/i18n.ts - 39 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Commodity - Commodity - libs/ui/src/lib/i18n.ts - 40 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Equity - Equity - libs/ui/src/lib/i18n.ts - 41 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Fixed Income - Fixed Income - libs/ui/src/lib/i18n.ts - 42 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Real Estate - Real Estate - libs/ui/src/lib/i18n.ts - 43 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Bond - Bond - libs/ui/src/lib/i18n.ts - 46 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Cryptocurrency - Cryptocurrency - libs/ui/src/lib/i18n.ts - 47 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - ETF - ETF - libs/ui/src/lib/i18n.ts + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 48 - - - Mutual Fund - Mutual Fund - libs/ui/src/lib/i18n.ts - 49 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Precious Metal - Precious Metal - libs/ui/src/lib/i18n.ts - 50 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Private Equity - Private Equity - libs/ui/src/lib/i18n.ts - 51 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Stock - Stock - libs/ui/src/lib/i18n.ts - 52 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Africa - Africa - libs/ui/src/lib/i18n.ts - 55 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Asia - Asia - libs/ui/src/lib/i18n.ts - 56 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Europe - Europe - libs/ui/src/lib/i18n.ts - 57 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - North America - North America + + Canada + Canada + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 529 + + + + Open Source Wealth Management Software + Open Source Wealth Management Software + + apps/client/src/app/pages/i18n/i18n-page.html + 13 + + + + app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 + app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 + + apps/client/src/app/pages/i18n/i18n-page.html + 9 + + + + Oops, cash balance transfer has failed. + Oops, cash balance transfer has failed. + + apps/client/src/app/pages/accounts/accounts-page.component.ts + 305 + + + + Poland + Poland + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 119 + + + + South Africa + South Africa + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 227 + + + + Extreme Fear + Extreme Fear libs/ui/src/lib/i18n.ts - 58 + 63 - - Oceania - Oceania + + Extreme Greed + Extreme Greed libs/ui/src/lib/i18n.ts - 59 + 64 - - South America - South America + + Neutral + Neutral libs/ui/src/lib/i18n.ts - 60 + 67 - - Time to add your first activity. - Time to add your first activity. + + Oops! Could not parse historical data. + Oops! Could not parse historical data. - libs/ui/src/lib/no-transactions-info/no-transactions-info.component.html - 12 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts + 205 - - No data available - No data available + + Do you really want to delete this system message? + Do you really want to delete this system message? - libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts - 386 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 159 + + + 50-Day Trend + 50-Day Trend - libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts - 399 + libs/ui/src/lib/benchmark/benchmark.component.html + 15 - - You are using the Live Demo. - You are using the Live Demo. + + 200-Day Trend + 200-Day Trend - apps/client/src/app/app.component.html - 17 + libs/ui/src/lib/benchmark/benchmark.component.html + 39 - - Interest - Interest + + Cash Balances + Cash Balances - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 280 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 88 - - New - New + + Starting from + Starting from - apps/client/src/app/pages/landing/landing-page.html - 7 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - - (Last 24 hours) - (Last 24 hours) - apps/client/src/app/pages/open/open-page.html - 37 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - - (Last 30 days) - (Last 30 days) - apps/client/src/app/pages/open/open-page.html - 48 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - apps/client/src/app/pages/open/open-page.html - 59 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - - (Last 90 days) - (Last 90 days) - apps/client/src/app/pages/open/open-page.html - 127 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - - One-time fee, annual account fees - One-time fee, annual account fees - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 27 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - - Distribution of corporate earnings - Distribution of corporate earnings - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 33 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - - Revenue for lending out money - Revenue for lending out money - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 39 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - - Oops! Could not get the historical exchange rate from - Oops! Could not get the historical exchange rate from - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 198 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - Choose or drop a file here - Choose or drop a file here + + year + year - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 85 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Fee - Fee - libs/ui/src/lib/i18n.ts - 32 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Add Tag - Add Tag - apps/client/src/app/components/admin-tag/admin-tag.component.html - 11 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Do you really want to delete this tag? - Do you really want to delete this tag? - apps/client/src/app/components/admin-tag/admin-tag.component.ts - 78 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Update tag - Update tag - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 2 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Add tag - Add tag - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 3 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - France - France - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 110 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 459 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 475 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - apps/client/src/app/pages/portfolio/fire/fire-page.html - 100 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Currency Cluster Risks - Currency Cluster Risks - apps/client/src/app/pages/portfolio/fire/fire-page.html - 124 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Account Cluster Risks - Account Cluster Risks - apps/client/src/app/pages/portfolio/fire/fire-page.html - 137 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Transfer Cash Balance - Transfer Cash Balance - apps/client/src/app/components/accounts-table/accounts-table.component.html - 9 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 7 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Benchmark - Benchmark - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 219 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Version - Version - apps/client/src/app/components/admin-overview/admin-overview.html - 7 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Settings - Settings - apps/client/src/app/components/user-account-settings/user-account-settings.html - 2 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - From - From - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 11 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - To - To - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 29 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Transfer - Transfer - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 66 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Finland - Finland - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 467 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Membership - Membership - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 22 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - apps/client/src/app/pages/user-account/user-account-page.component.ts - 39 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Access - Access - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 27 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - apps/client/src/app/pages/user-account/user-account-page.component.ts - 45 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Find holding... - Find holding... - libs/ui/src/lib/assistant/assistant.component.ts - 89 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - No entries... - No entries... - libs/ui/src/lib/assistant/assistant.html - 63 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - libs/ui/src/lib/assistant/assistant.html - 84 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Asset Profile - Asset Profile - apps/client/src/app/components/admin-jobs/admin-jobs.html - 31 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Do you really want to delete this asset profile? - Do you really want to delete this asset profile? - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 184 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Search - Search - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Add Manually - Add Manually - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 19 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. - Ghostfolio, hisse senetleri, ETF’ler veya kripto para birimleri gibi varlıklarınızı birden fazla platformda takip etmenizi sağlayan bir kişisel finans panosudur. - apps/client/src/app/pages/i18n/i18n-page.html - 4 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Last All Time High - Last All Time High - libs/ui/src/lib/benchmark/benchmark.component.html - 63 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - User - User - apps/client/src/app/components/admin-users/admin-users.html - 29 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 - - - Ghostfolio vs comparison table - Ghostfolio vs comparison table apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 186 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 191 - - - Canada - Canada - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 530 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Open Source Wealth Management Software - Open Source Wealth Management Software - apps/client/src/app/pages/i18n/i18n-page.html - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - apps/client/src/app/pages/i18n/i18n-page.html - 9 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Oops, cash balance transfer has failed. - Oops, cash balance transfer has failed. - apps/client/src/app/pages/accounts/accounts-page.component.ts - 305 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Poland - Poland - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 120 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - South Africa - South Africa - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 228 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Extreme Fear - Extreme Fear - libs/ui/src/lib/i18n.ts - 63 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Extreme Greed - Extreme Greed - libs/ui/src/lib/i18n.ts - 64 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Neutral - Neutral - libs/ui/src/lib/i18n.ts - 67 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Oops! Could not parse historical data. - Oops! Could not parse historical data. - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts - 205 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Do you really want to delete this system message? - Do you really want to delete this system message? - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 159 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - 50-Day Trend - 50-Day Trend - libs/ui/src/lib/benchmark/benchmark.component.html - 15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - 200-Day Trend - 200-Day Trend + + Do you really want to delete this account balance? + Do you really want to delete this account balance? - libs/ui/src/lib/benchmark/benchmark.component.html - 39 + libs/ui/src/lib/account-balances/account-balances.component.ts + 56 diff --git a/apps/client/src/locales/messages.xlf b/apps/client/src/locales/messages.xlf index 791cef853..2c04c01a4 100644 --- a/apps/client/src/locales/messages.xlf +++ b/apps/client/src/locales/messages.xlf @@ -82,191 +82,191 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 25 + 26 @@ -344,191 +344,191 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 26 + 27 apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 26 + 27 @@ -742,191 +742,191 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 28 + 29 apps/client/src/app/pages/resources/resources-page.component.ts @@ -1001,7 +1001,7 @@ apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html - 203 + 204 apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.html @@ -1495,7 +1495,7 @@ apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 69 + 73 apps/client/src/app/components/accounts-table/accounts-table.component.html @@ -1645,6 +1645,10 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 227 + + libs/ui/src/lib/account-balances/account-balances.component.html + 20 + libs/ui/src/lib/activities-table/activities-table.component.html 321 @@ -1711,6 +1715,10 @@ apps/client/src/app/components/admin-tag/admin-tag.component.html 77 + + libs/ui/src/lib/account-balances/account-balances.component.html + 50 + libs/ui/src/lib/activities-table/activities-table.component.html 529 @@ -1844,6 +1852,10 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 136 + + libs/ui/src/lib/account-balances/account-balances.component.html + 11 + libs/ui/src/lib/activities-table/activities-table.component.html 152 @@ -10019,3079 +10031,3469 @@ 164 - - Starting from / year + + Notes apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184 + 196 - - Starting from / year + + Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189 + 204 - - Notes + + Ready to take your investments to the next level? apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 217 - - Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. + + Effortlessly track, analyze, and visualize your wealth with Ghostfolio. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203 + 221 - - Ready to take your investments to the next level? + + Get Started apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216 + 226 - - Effortlessly track, analyze, and visualize your wealth with Ghostfolio. + + Personal Finance Tools apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220 + 302 - - Get Started + + Switzerland - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 69 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 90 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 506 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 548 + + + Global - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 70 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 317 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 438 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 549 + + + United States - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 81 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 137 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 147 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 189 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 198 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 208 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 218 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 270 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 292 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 303 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 328 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 330 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 340 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 405 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 415 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 425 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 494 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 517 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 537 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 559 + + + Belgium - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 167 + + + Germany - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 128 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 178 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 250 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 260 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 281 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 315 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 361 + + + Austria - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 238 + + + Italy - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 372 + + + Netherlands - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 382 + + + Thailand - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 394 + + + New Zealand - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 436 + + + Czech Republic - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 447 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 484 + + + Resources - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/resources-page-routing.module.ts + 12 + + + Guides - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/resources-page.html + 5 + + + Glossary - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/pages/resources/resources-page.html + 75 + + + Grant access - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225 + apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html + 7 - - Personal Finance Tools + + Public - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html + 24 + + + My Ghostfolio - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 32 + + + Auto - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.component.ts + 31 + + + Please enter your coupon code: - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 110 + + + Could not redeem coupon code - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 120 + + + Coupon code has been redeemed - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 132 + + + Reload - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 133 + + + Do you really want to remove this sign in method? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.component.ts + 182 + + + Membership - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/membership-card/membership-card.component.html + 18 + + + Valid until - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/membership-card/membership-card.component.html + 22 + + + Upgrade - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-membership/user-account-membership.html + 18 + + + Renew - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-membership/user-account-membership.html + 21 + + + Try Premium - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-membership/user-account-membership.html + 42 + + + Redeem Coupon - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-membership/user-account-membership.html + 55 + + + Presenter View - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 7 + + + Protection for sensitive information like absolute performances and quantity values - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 8 + + + Base Currency - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 27 + + + Language - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 48 + + + Locale - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 95 + + + Date and number format - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 97 + + + Appearance - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 118 + + + Auto - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 130 + + + Light - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 131 + + + Dark - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 132 + + + Distraction-free experience for turbulent times - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 142 + + + Biometric Authentication - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 158 + + + Sign in with fingerprint - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 159 + + + Experimental Features - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 176 + + + Sneak peek at upcoming functionality - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 177 + + + User ID - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 192 + + + Export Data - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 199 + + + Granted Access - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/components/user-account-access/user-account-access.html + 5 + + + Oops, authentication has failed. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/pages/webauthn/webauthn-page.html + 18 + + + Try again - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/pages/webauthn/webauthn-page.html + 26 + + + Go back to Home Page - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + apps/client/src/app/pages/webauthn/webauthn-page.html + 30 + + + Import Activities - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/activities-table/activities-table.component.html + 16 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/activities-table/activities-table.component.html + 453 + + + Import Dividends - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/activities-table/activities-table.component.html + 35 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/activities-table/activities-table.component.html + 464 + + + Export Activities - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/activities-table/activities-table.component.html + 47 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/activities-table/activities-table.component.html + 476 + + + Export Drafts as ICS - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/activities-table/activities-table.component.html + 59 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/activities-table/activities-table.component.html + 488 + + + Delete all Activities - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/activities-table/activities-table.component.html + 69 + + + Draft - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/activities-table/activities-table.component.html + 189 + + + Clone - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/activities-table/activities-table.component.html + 513 + + + Export Draft as ICS - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 301 + libs/ui/src/lib/activities-table/activities-table.component.html + 523 - - Switzerland + + Do you really want to delete this activity? - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 69 + libs/ui/src/lib/activities-table/activities-table.component.ts + 227 + + + Filter by account, currency, symbol or type... - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 91 + libs/ui/src/lib/activities-table/activities-table.component.ts + 427 + + + Index - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 507 + libs/ui/src/lib/benchmark/benchmark.component.html + 3 + + + Change from All Time High - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 549 + libs/ui/src/lib/benchmark/benchmark.component.html + 79 - - Global + + from ATH - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 71 + libs/ui/src/lib/benchmark/benchmark.component.html + 81 + + + Market data provided by - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 318 + libs/ui/src/lib/data-provider-credits/data-provider-credits.component.html + 2 + + + Savings Rate per Month - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 439 + libs/ui/src/lib/fire-calculator/fire-calculator.component.html + 10 + + + Annual Interest Rate - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 550 + libs/ui/src/lib/fire-calculator/fire-calculator.component.html + 21 - - United States + + Retirement Date - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 82 + libs/ui/src/lib/fire-calculator/fire-calculator.component.html + 32 + + + Projected Total Amount - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 138 + libs/ui/src/lib/fire-calculator/fire-calculator.component.html + 60 + + + Interest - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 148 + libs/ui/src/lib/fire-calculator/fire-calculator.component.ts + 341 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 190 + libs/ui/src/lib/i18n.ts + 33 + + + Savings - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 199 + libs/ui/src/lib/fire-calculator/fire-calculator.component.ts + 351 + + + Allocation - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 209 + libs/ui/src/lib/holdings-table/holdings-table.component.html + 98 + + + Show all - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 219 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 271 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 293 + libs/ui/src/lib/holdings-table/holdings-table.component.html + 172 + + + Account - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 304 + libs/ui/src/lib/i18n.ts + 4 + + + Asia-Pacific - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 329 + libs/ui/src/lib/i18n.ts + 5 + + + Asset Class - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 331 + libs/ui/src/lib/i18n.ts + 6 + + + Asset Sub Class - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 341 + libs/ui/src/lib/i18n.ts + 7 + + + Core - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 406 + libs/ui/src/lib/i18n.ts + 8 + + + Switch to Ghostfolio Premium or Ghostfolio Open Source easily - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 416 + libs/ui/src/lib/i18n.ts + 9 + + + Switch to Ghostfolio Premium easily - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 426 + libs/ui/src/lib/i18n.ts + 10 + + + Switch to Ghostfolio Open Source or Ghostfolio Basic easily - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 495 + libs/ui/src/lib/i18n.ts + 11 + + + Emergency Fund - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 518 + libs/ui/src/lib/i18n.ts + 12 + + + Grant - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 538 + libs/ui/src/lib/i18n.ts + 13 + + + Higher Risk - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 560 + libs/ui/src/lib/i18n.ts + 14 - - Belgium + + This activity already exists. - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 168 + libs/ui/src/lib/i18n.ts + 15 - - Germany + + Japan - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 129 + libs/ui/src/lib/i18n.ts + 16 + + + Lower Risk - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 179 + libs/ui/src/lib/i18n.ts + 17 + + + Month - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 251 + libs/ui/src/lib/i18n.ts + 18 + + + Months - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 261 + libs/ui/src/lib/i18n.ts + 19 + + + Other - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 282 + libs/ui/src/lib/i18n.ts + 20 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 316 + libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts + 384 + + + Preset - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 362 + libs/ui/src/lib/i18n.ts + 21 - - Austria + + Retirement Provision - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 239 + libs/ui/src/lib/i18n.ts + 22 - - Italy + + Satellite - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 373 + libs/ui/src/lib/i18n.ts + 23 - - Netherlands + + Symbol - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 383 + libs/ui/src/lib/i18n.ts + 24 - - Thailand + + Tag - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 395 + libs/ui/src/lib/i18n.ts + 25 - - New Zealand + + Year - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 437 + libs/ui/src/lib/i18n.ts + 26 - - Czech Republic + + Years - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 448 + libs/ui/src/lib/i18n.ts + 27 + + + Buy - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 485 + libs/ui/src/lib/i18n.ts + 30 - - Resources + + Valuable - apps/client/src/app/pages/resources/resources-page-routing.module.ts - 12 + libs/ui/src/lib/i18n.ts + 34 - - Guides + + Liability - apps/client/src/app/pages/resources/resources-page.html - 5 + libs/ui/src/lib/i18n.ts + 35 - - Glossary + + Sell - apps/client/src/app/pages/resources/resources-page.html - 75 + libs/ui/src/lib/i18n.ts + 36 - - Grant access + + Cash - apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html - 7 + libs/ui/src/lib/i18n.ts + 39 - - Public + + Commodity - apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html - 24 + libs/ui/src/lib/i18n.ts + 40 - - My Ghostfolio + + Equity - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 32 + libs/ui/src/lib/i18n.ts + 41 - - Auto + + Fixed Income - apps/client/src/app/components/user-account-settings/user-account-settings.component.ts - 31 + libs/ui/src/lib/i18n.ts + 42 - - Please enter your coupon code: + + Real Estate - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 110 + libs/ui/src/lib/i18n.ts + 43 - - Could not redeem coupon code + + Bond - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 120 + libs/ui/src/lib/i18n.ts + 46 - - Coupon code has been redeemed + + Cryptocurrency - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 132 + libs/ui/src/lib/i18n.ts + 47 - - Reload + + ETF - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 133 + libs/ui/src/lib/i18n.ts + 48 - - Do you really want to remove this sign in method? + + Mutual Fund - apps/client/src/app/components/user-account-settings/user-account-settings.component.ts - 182 + libs/ui/src/lib/i18n.ts + 49 - - Membership + + Precious Metal - libs/ui/src/lib/membership-card/membership-card.component.html - 18 + libs/ui/src/lib/i18n.ts + 50 - - Valid until + + Private Equity - libs/ui/src/lib/membership-card/membership-card.component.html - 22 + libs/ui/src/lib/i18n.ts + 51 - - Upgrade + + Stock - apps/client/src/app/components/user-account-membership/user-account-membership.html - 18 + libs/ui/src/lib/i18n.ts + 52 - - Renew + + Africa - apps/client/src/app/components/user-account-membership/user-account-membership.html - 21 + libs/ui/src/lib/i18n.ts + 55 - - Try Premium + + Asia - apps/client/src/app/components/user-account-membership/user-account-membership.html - 42 + libs/ui/src/lib/i18n.ts + 56 - - Redeem Coupon + + Europe - apps/client/src/app/components/user-account-membership/user-account-membership.html - 55 + libs/ui/src/lib/i18n.ts + 57 - - Presenter View + + North America - apps/client/src/app/components/user-account-settings/user-account-settings.html - 7 + libs/ui/src/lib/i18n.ts + 58 - - Protection for sensitive information like absolute performances and quantity values + + Oceania - apps/client/src/app/components/user-account-settings/user-account-settings.html - 8 + libs/ui/src/lib/i18n.ts + 59 - - Base Currency + + South America - apps/client/src/app/components/user-account-settings/user-account-settings.html - 27 + libs/ui/src/lib/i18n.ts + 60 - - Language + + Time to add your first activity. - apps/client/src/app/components/user-account-settings/user-account-settings.html - 48 + libs/ui/src/lib/no-transactions-info/no-transactions-info.component.html + 12 - - Locale + + No data available - apps/client/src/app/components/user-account-settings/user-account-settings.html - 95 + libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts + 386 - - - Date and number format - apps/client/src/app/components/user-account-settings/user-account-settings.html - 97 + libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts + 399 - - Appearance + + Choose or drop a file here - apps/client/src/app/components/user-account-settings/user-account-settings.html - 118 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 85 - - Auto + + You are using the Live Demo. - apps/client/src/app/components/user-account-settings/user-account-settings.html - 130 + apps/client/src/app/app.component.html + 17 - - Light + + Fee - apps/client/src/app/components/user-account-settings/user-account-settings.html - 131 + libs/ui/src/lib/i18n.ts + 32 - - Dark + + Distribution of corporate earnings - apps/client/src/app/components/user-account-settings/user-account-settings.html - 132 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 33 - - Distraction-free experience for turbulent times + + Oops! Could not get the historical exchange rate from - apps/client/src/app/components/user-account-settings/user-account-settings.html - 142 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 198 - - Biometric Authentication + + One-time fee, annual account fees - apps/client/src/app/components/user-account-settings/user-account-settings.html - 158 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 27 - - Sign in with fingerprint + + Revenue for lending out money - apps/client/src/app/components/user-account-settings/user-account-settings.html - 159 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 39 - - Experimental Features + + Interest - apps/client/src/app/components/user-account-settings/user-account-settings.html - 176 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 280 - - Sneak peek at upcoming functionality + + Add tag - apps/client/src/app/components/user-account-settings/user-account-settings.html - 177 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 3 - - User ID + + Do you really want to delete this tag? - apps/client/src/app/components/user-account-settings/user-account-settings.html - 192 + apps/client/src/app/components/admin-tag/admin-tag.component.ts + 78 - - Export Data + + France - apps/client/src/app/components/user-account-settings/user-account-settings.html - 199 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 109 - - - Granted Access - apps/client/src/app/components/user-account-access/user-account-access.html - 5 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 458 - - - Oops, authentication has failed. - apps/client/src/app/pages/webauthn/webauthn-page.html - 18 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 474 - - Try again + + Update tag - apps/client/src/app/pages/webauthn/webauthn-page.html - 26 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 2 - - Go back to Home Page + + Add Tag - apps/client/src/app/pages/webauthn/webauthn-page.html - 30 + apps/client/src/app/components/admin-tag/admin-tag.component.html + 11 - - Import Activities - - libs/ui/src/lib/activities-table/activities-table.component.html - 16 - + + Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - libs/ui/src/lib/activities-table/activities-table.component.html - 453 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 100 - - Import Dividends + + Currency Cluster Risks - libs/ui/src/lib/activities-table/activities-table.component.html - 35 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 124 + + + Account Cluster Risks - libs/ui/src/lib/activities-table/activities-table.component.html - 464 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 137 - - Export Activities - - libs/ui/src/lib/activities-table/activities-table.component.html - 47 - + + Benchmark - libs/ui/src/lib/activities-table/activities-table.component.html - 476 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 219 - - Export Drafts as ICS - - libs/ui/src/lib/activities-table/activities-table.component.html - 59 - + + Settings - libs/ui/src/lib/activities-table/activities-table.component.html - 488 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 2 - - Delete all Activities + + Membership - libs/ui/src/lib/activities-table/activities-table.component.html - 69 + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 22 - - - Draft - libs/ui/src/lib/activities-table/activities-table.component.html - 189 + apps/client/src/app/pages/user-account/user-account-page.component.ts + 39 - - Clone + + Find holding... - libs/ui/src/lib/activities-table/activities-table.component.html - 513 + libs/ui/src/lib/assistant/assistant.component.ts + 89 - - Export Draft as ICS + + Transfer Cash Balance - libs/ui/src/lib/activities-table/activities-table.component.html - 523 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 9 - - - Do you really want to delete this activity? - libs/ui/src/lib/activities-table/activities-table.component.ts - 227 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 7 - - Filter by account, currency, symbol or type... + + Access - libs/ui/src/lib/activities-table/activities-table.component.ts - 427 + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 27 - - - Index - libs/ui/src/lib/benchmark/benchmark.component.html - 3 + apps/client/src/app/pages/user-account/user-account-page.component.ts + 45 - - Change from All Time High + + To - libs/ui/src/lib/benchmark/benchmark.component.html - 79 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 29 - - from ATH + + Transfer - libs/ui/src/lib/benchmark/benchmark.component.html - 81 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 66 - - Market data provided by + + Finland - libs/ui/src/lib/data-provider-credits/data-provider-credits.component.html - 2 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 466 - - Savings Rate per Month + + Version - libs/ui/src/lib/fire-calculator/fire-calculator.component.html - 10 + apps/client/src/app/components/admin-overview/admin-overview.html + 7 - - Annual Interest Rate + + No entries... - libs/ui/src/lib/fire-calculator/fire-calculator.component.html - 21 + libs/ui/src/lib/assistant/assistant.html + 63 - - - Retirement Date - libs/ui/src/lib/fire-calculator/fire-calculator.component.html - 32 + libs/ui/src/lib/assistant/assistant.html + 84 - - Projected Total Amount + + From - libs/ui/src/lib/fire-calculator/fire-calculator.component.html - 60 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 11 - - Interest + + Asset Profile - libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 341 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 31 + + + Last All Time High - libs/ui/src/lib/i18n.ts - 33 + libs/ui/src/lib/benchmark/benchmark.component.html + 63 - - Savings + + Add Manually - libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 351 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 19 - - Allocation + + Do you really want to delete this asset profile? - libs/ui/src/lib/holdings-table/holdings-table.component.html - 98 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 184 - - Show all + + Search - libs/ui/src/lib/holdings-table/holdings-table.component.html - 172 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 16 - - Account + + Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. - libs/ui/src/lib/i18n.ts + apps/client/src/app/pages/i18n/i18n-page.html 4 - - Asia-Pacific + + User - libs/ui/src/lib/i18n.ts - 5 + apps/client/src/app/components/admin-users/admin-users.html + 29 - - Asset Class + + Ghostfolio vs comparison table - libs/ui/src/lib/i18n.ts - 6 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Asset Sub Class - libs/ui/src/lib/i18n.ts - 7 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Core - libs/ui/src/lib/i18n.ts - 8 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Switch to Ghostfolio Premium or Ghostfolio Open Source easily - libs/ui/src/lib/i18n.ts - 9 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Switch to Ghostfolio Premium easily - libs/ui/src/lib/i18n.ts - 10 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Switch to Ghostfolio Open Source or Ghostfolio Basic easily - libs/ui/src/lib/i18n.ts - 11 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Emergency Fund - libs/ui/src/lib/i18n.ts - 12 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Grant - libs/ui/src/lib/i18n.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Higher Risk - libs/ui/src/lib/i18n.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - This activity already exists. - libs/ui/src/lib/i18n.ts - 15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Japan - libs/ui/src/lib/i18n.ts - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Lower Risk - libs/ui/src/lib/i18n.ts - 17 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Month - libs/ui/src/lib/i18n.ts - 18 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Months - libs/ui/src/lib/i18n.ts - 19 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Other - libs/ui/src/lib/i18n.ts - 20 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts - 384 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Preset - libs/ui/src/lib/i18n.ts - 21 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Retirement Provision - libs/ui/src/lib/i18n.ts - 22 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Satellite - libs/ui/src/lib/i18n.ts - 23 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Symbol - libs/ui/src/lib/i18n.ts - 24 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Tag - libs/ui/src/lib/i18n.ts - 25 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - - Year - libs/ui/src/lib/i18n.ts - 26 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 48 - - Years + + Canada - libs/ui/src/lib/i18n.ts - 27 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 529 - - Buy + + Open Source Wealth Management Software - libs/ui/src/lib/i18n.ts - 30 + apps/client/src/app/pages/i18n/i18n-page.html + 13 - - Valuable + + app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - libs/ui/src/lib/i18n.ts - 34 + apps/client/src/app/pages/i18n/i18n-page.html + 9 - - Liability + + Oops, cash balance transfer has failed. - libs/ui/src/lib/i18n.ts - 35 + apps/client/src/app/pages/accounts/accounts-page.component.ts + 305 - - Sell + + Poland - libs/ui/src/lib/i18n.ts - 36 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 119 - - Cash + + Extreme Fear libs/ui/src/lib/i18n.ts - 39 + 63 - - Commodity + + Extreme Greed libs/ui/src/lib/i18n.ts - 40 + 64 - - Equity + + Neutral libs/ui/src/lib/i18n.ts - 41 + 67 - - Fixed Income + + South Africa - libs/ui/src/lib/i18n.ts - 42 + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 227 - - Real Estate + + Oops! Could not parse historical data. - libs/ui/src/lib/i18n.ts - 43 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts + 205 - - Bond + + Do you really want to delete this system message? - libs/ui/src/lib/i18n.ts - 46 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 159 + + + + 200-Day Trend + + libs/ui/src/lib/benchmark/benchmark.component.html + 39 + + + + 50-Day Trend + + libs/ui/src/lib/benchmark/benchmark.component.html + 15 + + + + Cash Balances + + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 88 + + + + Do you really want to delete this account balance? + + libs/ui/src/lib/account-balances/account-balances.component.ts + 56 + + + + year + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Cryptocurrency - libs/ui/src/lib/i18n.ts - 47 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - ETF - libs/ui/src/lib/i18n.ts - 48 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Mutual Fund - libs/ui/src/lib/i18n.ts - 49 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Precious Metal - libs/ui/src/lib/i18n.ts - 50 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Private Equity - libs/ui/src/lib/i18n.ts - 51 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Stock - libs/ui/src/lib/i18n.ts - 52 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Africa - libs/ui/src/lib/i18n.ts - 55 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Asia - libs/ui/src/lib/i18n.ts - 56 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Europe - libs/ui/src/lib/i18n.ts - 57 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - North America - libs/ui/src/lib/i18n.ts - 58 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Oceania - libs/ui/src/lib/i18n.ts - 59 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - South America - libs/ui/src/lib/i18n.ts - 60 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Time to add your first activity. - libs/ui/src/lib/no-transactions-info/no-transactions-info.component.html - 12 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - No data available - libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts - 386 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts - 399 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Choose or drop a file here - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 85 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - You are using the Live Demo. - apps/client/src/app/app.component.html - 17 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Fee - libs/ui/src/lib/i18n.ts - 32 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Distribution of corporate earnings - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 33 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Oops! Could not get the historical exchange rate from - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 198 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - One-time fee, annual account fees - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 27 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Revenue for lending out money - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 39 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - - Interest - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 280 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 191 - - Add tag + + Starting from - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 3 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Do you really want to delete this tag? - apps/client/src/app/components/admin-tag/admin-tag.component.ts - 78 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - France - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 110 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 459 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 475 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Update tag - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 2 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Add Tag - apps/client/src/app/components/admin-tag/admin-tag.component.html - 11 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - apps/client/src/app/pages/portfolio/fire/fire-page.html - 100 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Currency Cluster Risks - apps/client/src/app/pages/portfolio/fire/fire-page.html - 124 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Account Cluster Risks - apps/client/src/app/pages/portfolio/fire/fire-page.html - 137 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Benchmark - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 219 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Settings - apps/client/src/app/components/user-account-settings/user-account-settings.html - 2 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Membership - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 22 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/user-account/user-account-page.component.ts - 39 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Find holding... - libs/ui/src/lib/assistant/assistant.component.ts - 89 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Transfer Cash Balance - apps/client/src/app/components/accounts-table/accounts-table.component.html - 9 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 7 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Access - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 27 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - apps/client/src/app/pages/user-account/user-account-page.component.ts - 45 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - To - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 29 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Transfer - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 66 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Finland - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 467 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Version - apps/client/src/app/components/admin-overview/admin-overview.html - 7 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - No entries... - libs/ui/src/lib/assistant/assistant.html - 63 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - libs/ui/src/lib/assistant/assistant.html - 84 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - From - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 11 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Asset Profile - apps/client/src/app/components/admin-jobs/admin-jobs.html - 31 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Last All Time High - libs/ui/src/lib/benchmark/benchmark.component.html - 63 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Add Manually - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 19 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Do you really want to delete this asset profile? - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 184 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Search - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. - apps/client/src/app/pages/i18n/i18n-page.html - 4 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - User - apps/client/src/app/components/admin-users/admin-users.html - 29 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185 - - - Ghostfolio vs comparison table apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 185 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 185 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 185 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 185 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 185 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 185 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 185 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 185 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 185 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 185 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 185 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 185 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 185 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 190 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 190 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 190 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 190 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 190 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 190 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 190 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 190 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 190 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 190 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 190 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 190 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 190 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 190 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 190 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 190 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 190 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 190 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 190 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 190 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 190 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 190 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 190 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 190 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 190 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 190 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 190 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 190 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 190 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 190 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 190 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 190 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 190 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48 + 190 - - - Canada - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 530 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - - Open Source Wealth Management Software - apps/client/src/app/pages/i18n/i18n-page.html - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - - app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - apps/client/src/app/pages/i18n/i18n-page.html - 9 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - - Oops, cash balance transfer has failed. - apps/client/src/app/pages/accounts/accounts-page.component.ts - 305 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - - Poland - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 120 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - - Extreme Fear - libs/ui/src/lib/i18n.ts - 63 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - - Extreme Greed - libs/ui/src/lib/i18n.ts - 64 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - - Neutral - libs/ui/src/lib/i18n.ts - 67 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - - South Africa - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 228 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - - Oops! Could not parse historical data. - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts - 205 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - - Do you really want to delete this system message? - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 159 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - - 200-Day Trend - libs/ui/src/lib/benchmark/benchmark.component.html - 39 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 - - - 50-Day Trend - libs/ui/src/lib/benchmark/benchmark.component.html - 15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 190 From cbea8ac9d3d8958d4559af5d23f302d79e7cb9bd Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Mon, 4 Dec 2023 19:53:50 +0100 Subject: [PATCH 05/11] Feature/increase tab height on mobile (#2712) * Increase tab height on mobile * Update changelog --- CHANGELOG.md | 1 + apps/client/src/styles.scss | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 28910d5fe..ff17bac3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +- Increased the height of the tabs on mobile - Improved the language localization for German (`de`) ## 2.28.0 - 2023-12-02 diff --git a/apps/client/src/styles.scss b/apps/client/src/styles.scss index 7085effc5..fbcc5e73f 100644 --- a/apps/client/src/styles.scss +++ b/apps/client/src/styles.scss @@ -539,6 +539,12 @@ ngx-skeleton-loader { --mdc-tab-indicator-active-indicator-color: transparent; } + @media (max-width: 575.98px) { + .mat-mdc-tab-link { + --mdc-secondary-navigation-tab-container-height: 3rem; + } + } + @media (min-width: 576px) { flex-direction: row-reverse; From 43f67ba832975d1f5f37f823f82b239fb10f3745 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Mon, 4 Dec 2023 19:54:43 +0100 Subject: [PATCH 06/11] Feature/upgrade ng extract i18n merge to version 2.9.0 (#2715) * Upgrade ng-extract-i18n-merge to version 2.9.0 * Update changelog --- CHANGELOG.md | 1 + package.json | 2 +- yarn.lock | 8 ++++---- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ff17bac3a..8ed160e04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Increased the height of the tabs on mobile - Improved the language localization for German (`de`) +- Upgraded `ng-extract-i18n-merge` from version `2.8.3` to `2.9.0` ## 2.28.0 - 2023-12-02 diff --git a/package.json b/package.json index 1df537ff8..a95f3a279 100644 --- a/package.json +++ b/package.json @@ -113,7 +113,7 @@ "lodash": "4.17.21", "marked": "4.2.12", "ms": "3.0.0-canary.1", - "ng-extract-i18n-merge": "2.8.3", + "ng-extract-i18n-merge": "2.9.0", "ngx-device-detector": "5.0.1", "ngx-markdown": "15.1.0", "ngx-skeleton-loader": "7.0.0", diff --git a/yarn.lock b/yarn.lock index ac0a5db2e..85f19044e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -14416,10 +14416,10 @@ neo-async@^2.5.0, neo-async@^2.6.2: resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== -ng-extract-i18n-merge@2.8.3: - version "2.8.3" - resolved "https://registry.yarnpkg.com/ng-extract-i18n-merge/-/ng-extract-i18n-merge-2.8.3.tgz#a092f7758df7c566df7a1d710dbc709c6a8f56d1" - integrity sha512-w6LdzpfjRBLpT7lnMEqduivjn6kg2oKDZBL6P9W5GKRZ4bgmFthAmwN1lvWrzkwcPHPARJR+qC4DBRVsv4vmkg== +ng-extract-i18n-merge@2.9.0: + version "2.9.0" + resolved "https://registry.yarnpkg.com/ng-extract-i18n-merge/-/ng-extract-i18n-merge-2.9.0.tgz#a487e3cec76a266c7bb61985de62f87828ee2e21" + integrity sha512-xKdkegJcJCzbvsy07IaSxz2AmkHdF3l0UR5mLr5CHai2g1VHD0xhoHPk/6kFFDNJ42fQT8EybPH/YcqZUt2iQg== dependencies: "@angular-devkit/architect" "^0.1301.0 || ^0.1401.0 || ^0.1501.0 || ^0.1601.0 || ^0.1700.0" "@angular-devkit/core" "^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" From c85966e5eda46c3df9caec4e4195aa9f9cf3a831 Mon Sep 17 00:00:00 2001 From: sadmimye <134071831+sadmimye@users.noreply.github.com> Date: Mon, 4 Dec 2023 23:04:20 +0300 Subject: [PATCH 07/11] Improve language localization for tr (#2717) * Improve language localization for tr * Update changelog --- CHANGELOG.md | 1 + apps/client/src/locales/messages.tr.xlf | 110 ++++++++++++++---------- 2 files changed, 64 insertions(+), 47 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ed160e04..4d6b4486e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Increased the height of the tabs on mobile - Improved the language localization for German (`de`) +- Improved the language localization for Türkçe (`tr`) - Upgraded `ng-extract-i18n-merge` from version `2.8.3` to `2.9.0` ## 2.28.0 - 2023-12-02 diff --git a/apps/client/src/locales/messages.tr.xlf b/apps/client/src/locales/messages.tr.xlf index fd1b43788..51db67cdb 100644 --- a/apps/client/src/locales/messages.tr.xlf +++ b/apps/client/src/locales/messages.tr.xlf @@ -3042,7 +3042,7 @@ - için komisyon tutarı + için komisyon tutarı apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html 12 @@ -3150,7 +3150,7 @@ Net Worth - Net Worth + Toplam Varlık apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html 250 @@ -3158,7 +3158,7 @@ Annualized Performance - Annualized Performance + Yıllıklandırılmış Performans apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html 262 @@ -3166,7 +3166,7 @@ Dividend - Dividend + Temettü apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html 292 @@ -3190,7 +3190,7 @@ Please enter the amount of your emergency fund: - Please enter the amount of your emergency fund: + Lütfen acil durum yedeği meblağını giriniz: apps/client/src/app/components/portfolio-summary/portfolio-summary.component.ts 52 @@ -3198,7 +3198,7 @@ Change - Change + Para Birimi apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html 48 @@ -3206,7 +3206,7 @@ Average Unit Price - Average Unit Price + Ortalama Birim Fiyat apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html 70 @@ -3214,7 +3214,7 @@ Minimum Price - Minimum Price + Asgari Fiyat apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html 93 @@ -3222,7 +3222,7 @@ Maximum Price - Maximum Price + Azami Fiyat apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html 105 @@ -3230,7 +3230,7 @@ Quantity - Quantity + Miktar apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html 115 @@ -3246,7 +3246,7 @@ Fees - Fees + Komisyon apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html 87 @@ -3257,12 +3257,28 @@ apps/client/src/app/pages/portfolio/fire/fire-page.html + 137 + + + + First Buy Date + İlk Alım Tarihi + + apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + 158 + + + + Transactions + İşlemler + + apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html 150 Report Data Glitch - Report Data Glitch + Rapor Veri Sorunu apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html 287 @@ -3270,7 +3286,7 @@ Are you an ambitious investor who needs the full picture? - Are you an ambitious investor who needs the full picture? + Tüm ayrıntılara hakim olmak isteyen iddialı bir yatırımcı mısınız? apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html 15 @@ -3278,7 +3294,7 @@ Upgrade to Ghostfolio Premium today and gain access to exclusive features to enhance your investment experience: - Upgrade to Ghostfolio Premium today and gain access to exclusive features to enhance your investment experience: + Bugün Ghostfolio Premium'a yükseltin ve yatırım deneyiminizi geliştirmek için ayrıcalıklı özelliklere erişim kazanın: apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html 18 @@ -3286,7 +3302,7 @@ Portfolio Summary - Portfolio Summary + Portföy Özeti apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html 25 @@ -3302,7 +3318,7 @@ Portfolio Allocations - Portfolio Allocations + Portföy Dağılımı apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html 29 @@ -3322,7 +3338,7 @@ Performance Benchmarks - Performance Benchmarks + Performans Ölçütleri apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html 33 @@ -3338,7 +3354,7 @@ FIRE Calculator - FIRE Calculator + FIRE Hesaplayıcı apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html 37 @@ -3354,7 +3370,7 @@ Professional Data Provider - Professional Data Provider + Profesyonel Veri Sağlayıcı apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html 41 @@ -3366,7 +3382,7 @@ and more Features... - and more Features... + ve daha fazla Özellik... apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html 45 @@ -3382,7 +3398,7 @@ Get the tools to effectively manage your finances and refine your personal investment strategy. - Get the tools to effectively manage your finances and refine your personal investment strategy. + Mali durumunuzu etkili bir şekilde yönetecek ve kişisel yatırım stratejinizi geliştirecek Araçları edinin. apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html 48 @@ -3390,7 +3406,7 @@ Skip - Skip + Geç apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html 55 @@ -3398,7 +3414,7 @@ Upgrade Plan - Upgrade Plan + <Üyeliğinizi Yükseltin> apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html 62 @@ -3410,7 +3426,7 @@ Today - Today + Bugün apps/client/src/app/components/toggle/toggle.component.ts 21 @@ -3418,7 +3434,7 @@ YTD - YTD + YTD apps/client/src/app/components/toggle/toggle.component.ts 22 @@ -3426,7 +3442,7 @@ 1Y - 1Y + 1Y apps/client/src/app/components/toggle/toggle.component.ts 23 @@ -3434,7 +3450,7 @@ 5Y - 5Y + 5Y apps/client/src/app/components/toggle/toggle.component.ts 24 @@ -3442,7 +3458,7 @@ Max - Max + Maks. apps/client/src/app/components/toggle/toggle.component.ts 25 @@ -3450,7 +3466,7 @@ This feature is currently unavailable. - This feature is currently unavailable. + Bu özellik şu an için mevcut değil. apps/client/src/app/core/http-response.interceptor.ts 59 @@ -3458,7 +3474,7 @@ Please try again later. - Please try again later. + Daha sonra tekrar deneyiniz. apps/client/src/app/core/http-response.interceptor.ts 61 @@ -3474,7 +3490,7 @@ Oops! Something went wrong. - Oops! Something went wrong. + Hay Allah! Bir şeyler yanlış gitti. apps/client/src/app/core/http-response.interceptor.ts 86 @@ -3486,7 +3502,7 @@ Okay - Okay + Tamam apps/client/src/app/core/http-response.interceptor.ts 89 @@ -3498,7 +3514,7 @@ About - About + Hakkında apps/client/src/app/pages/about/about-page-routing.module.ts 52 @@ -3514,7 +3530,7 @@ Changelog - Changelog + Değişiklik Günlüğü apps/client/src/app/pages/about/about-page.component.ts 48 @@ -3526,7 +3542,7 @@ License - License + Lisans apps/client/src/app/pages/about/about-page.component.ts 53 @@ -3538,7 +3554,7 @@ Privacy Policy - Privacy Policy + Gizlilik Politikası apps/client/src/app/pages/about/about-page.component.ts 61 @@ -3550,7 +3566,7 @@ Our - Our + Bizim apps/client/src/app/pages/about/oss-friends/oss-friends-page.html 6 @@ -3558,7 +3574,7 @@ Discover other exciting Open Source Software projects - Discover other exciting Open Source Software projects + Diğer heyecan verici Açık Kaynak Yazılım projelerini keşfedin apps/client/src/app/pages/about/oss-friends/oss-friends-page.html 9 @@ -3566,7 +3582,7 @@ Visit - Visit + Ziyaret et apps/client/src/app/pages/about/oss-friends/oss-friends-page.html 28 @@ -3574,7 +3590,7 @@ Accounts - Accounts + Hesaplar apps/client/src/app/pages/accounts/accounts-page-routing.module.ts 12 @@ -3582,7 +3598,7 @@ Update account - Update account + Hesabı Güncelle apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html 7 @@ -3590,7 +3606,7 @@ Add account - Add account + Hesap ekle apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html 8 @@ -3598,7 +3614,7 @@ Account ID - Account ID + Hesap Kimliği apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html 90 @@ -3606,7 +3622,7 @@ Admin Control - Admin Control + Yönetici Denetimleri apps/client/src/app/pages/admin/admin-page-routing.module.ts 19 @@ -3614,7 +3630,7 @@ Jobs - Jobs + İşler apps/client/src/app/pages/admin/admin-page-routing.module.ts 21 @@ -3626,7 +3642,7 @@ Market Data - Market Data + Piyasa Verileri apps/client/src/app/pages/admin/admin-page-routing.module.ts 25 @@ -3638,7 +3654,7 @@ Settings - Settings + Ayarlar apps/client/src/app/pages/admin/admin-page-routing.module.ts 30 From 833982a9de446f8785bedb5005b39dac4a4952cd Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Tue, 5 Dec 2023 18:13:35 +0100 Subject: [PATCH 08/11] Bugfix/fix biometric authentication registration (#2713) * Remove token on device registration * Update changelog --- CHANGELOG.md | 4 ++++ .../src/app/components/header/header.component.ts | 4 ++-- .../login-with-access-token-dialog.component.ts | 4 ++-- .../user-account-settings.component.ts | 6 ++++-- apps/client/src/app/pages/auth/auth-page.component.ts | 4 ++-- .../src/app/services/settings-storage.service.ts | 5 +++-- apps/client/src/app/services/token-storage.service.ts | 11 +++++------ 7 files changed, 22 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d6b4486e..fe3af1f46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Improved the language localization for Türkçe (`tr`) - Upgraded `ng-extract-i18n-merge` from version `2.8.3` to `2.9.0` +### Fixed + +- Fixed an issue in the biometric authentication registration + ## 2.28.0 - 2023-12-02 ### Added diff --git a/apps/client/src/app/components/header/header.component.ts b/apps/client/src/app/components/header/header.component.ts index 930c4910c..a1f65f244 100644 --- a/apps/client/src/app/components/header/header.component.ts +++ b/apps/client/src/app/components/header/header.component.ts @@ -15,7 +15,7 @@ import { LoginWithAccessTokenDialog } from '@ghostfolio/client/components/login- import { DataService } from '@ghostfolio/client/services/data.service'; import { ImpersonationStorageService } from '@ghostfolio/client/services/impersonation-storage.service'; import { - STAY_SIGNED_IN, + KEY_STAY_SIGNED_IN, SettingsStorageService } from '@ghostfolio/client/services/settings-storage.service'; import { TokenStorageService } from '@ghostfolio/client/services/token-storage.service'; @@ -196,7 +196,7 @@ export class HeaderComponent implements OnChanges { public setToken(aToken: string) { this.tokenStorageService.saveToken( aToken, - this.settingsStorageService.getSetting(STAY_SIGNED_IN) === 'true' + this.settingsStorageService.getSetting(KEY_STAY_SIGNED_IN) === 'true' ); this.router.navigate(['/']); diff --git a/apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.component.ts b/apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.component.ts index b3236b2be..9f9fdbabd 100644 --- a/apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.component.ts +++ b/apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.component.ts @@ -4,7 +4,7 @@ import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog'; import { Router } from '@angular/router'; import { InternetIdentityService } from '@ghostfolio/client/services/internet-identity.service'; import { - STAY_SIGNED_IN, + KEY_STAY_SIGNED_IN, SettingsStorageService } from '@ghostfolio/client/services/settings-storage.service'; import { TokenStorageService } from '@ghostfolio/client/services/token-storage.service'; @@ -31,7 +31,7 @@ export class LoginWithAccessTokenDialog { public onChangeStaySignedIn(aValue: MatCheckboxChange) { this.settingsStorageService.setSetting( - STAY_SIGNED_IN, + KEY_STAY_SIGNED_IN, aValue.checked?.toString() ); } diff --git a/apps/client/src/app/components/user-account-settings/user-account-settings.component.ts b/apps/client/src/app/components/user-account-settings/user-account-settings.component.ts index 3a1e02596..eaf16e015 100644 --- a/apps/client/src/app/components/user-account-settings/user-account-settings.component.ts +++ b/apps/client/src/app/components/user-account-settings/user-account-settings.component.ts @@ -8,7 +8,8 @@ import { import { MatSlideToggleChange } from '@angular/material/slide-toggle'; import { DataService } from '@ghostfolio/client/services/data.service'; import { - STAY_SIGNED_IN, + KEY_STAY_SIGNED_IN, + KEY_TOKEN, SettingsStorageService } from '@ghostfolio/client/services/settings-storage.service'; import { UserService } from '@ghostfolio/client/services/user/user.service'; @@ -241,7 +242,8 @@ export class UserAccountSettingsComponent implements OnDestroy, OnInit { }) ) .subscribe(() => { - this.settingsStorageService.removeSetting(STAY_SIGNED_IN); + this.settingsStorageService.removeSetting(KEY_STAY_SIGNED_IN); + this.settingsStorageService.removeSetting(KEY_TOKEN); this.update(); }); diff --git a/apps/client/src/app/pages/auth/auth-page.component.ts b/apps/client/src/app/pages/auth/auth-page.component.ts index 75702c096..1dc494773 100644 --- a/apps/client/src/app/pages/auth/auth-page.component.ts +++ b/apps/client/src/app/pages/auth/auth-page.component.ts @@ -1,7 +1,7 @@ import { Component, OnDestroy, OnInit } from '@angular/core'; import { ActivatedRoute, Router } from '@angular/router'; import { - STAY_SIGNED_IN, + KEY_STAY_SIGNED_IN, SettingsStorageService } from '@ghostfolio/client/services/settings-storage.service'; import { TokenStorageService } from '@ghostfolio/client/services/token-storage.service'; @@ -31,7 +31,7 @@ export class AuthPageComponent implements OnDestroy, OnInit { this.tokenStorageService.saveToken( jwt, - this.settingsStorageService.getSetting(STAY_SIGNED_IN) === 'true' + this.settingsStorageService.getSetting(KEY_STAY_SIGNED_IN) === 'true' ); this.router.navigate(['/']); diff --git a/apps/client/src/app/services/settings-storage.service.ts b/apps/client/src/app/services/settings-storage.service.ts index a340f89b7..abb49ea2d 100644 --- a/apps/client/src/app/services/settings-storage.service.ts +++ b/apps/client/src/app/services/settings-storage.service.ts @@ -1,7 +1,8 @@ import { Injectable } from '@angular/core'; -export const RANGE = 'range'; -export const STAY_SIGNED_IN = 'staySignedIn'; +export const KEY_RANGE = 'range'; +export const KEY_STAY_SIGNED_IN = 'staySignedIn'; +export const KEY_TOKEN = 'auth-token'; @Injectable({ providedIn: 'root' diff --git a/apps/client/src/app/services/token-storage.service.ts b/apps/client/src/app/services/token-storage.service.ts index 5980f56e1..b6af7350f 100644 --- a/apps/client/src/app/services/token-storage.service.ts +++ b/apps/client/src/app/services/token-storage.service.ts @@ -1,10 +1,9 @@ import { Injectable } from '@angular/core'; import { WebAuthnService } from '@ghostfolio/client/services/web-authn.service'; +import { KEY_TOKEN } from './settings-storage.service'; import { UserService } from './user/user.service'; -const TOKEN_KEY = 'auth-token'; - @Injectable({ providedIn: 'root' }) @@ -16,16 +15,16 @@ export class TokenStorageService { public getToken(): string { return ( - window.sessionStorage.getItem(TOKEN_KEY) || - window.localStorage.getItem(TOKEN_KEY) + window.sessionStorage.getItem(KEY_TOKEN) || + window.localStorage.getItem(KEY_TOKEN) ); } public saveToken(token: string, staySignedIn = false): void { if (staySignedIn) { - window.localStorage.setItem(TOKEN_KEY, token); + window.localStorage.setItem(KEY_TOKEN, token); } - window.sessionStorage.setItem(TOKEN_KEY, token); + window.sessionStorage.setItem(KEY_TOKEN, token); } public signOut(): void { From 8d80e840b88f563f982e59d853f1ce438b568d63 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Tue, 5 Dec 2023 18:16:03 +0100 Subject: [PATCH 09/11] Feature/upgrade ngx markdown to version 17.1.1 (#2714) * Upgrade marked and ngx-markdown * Update changelog --- CHANGELOG.md | 2 + package.json | 5 +- yarn.lock | 415 ++++++++++++++++++++++++++++++++++++++++++++++----- 3 files changed, 380 insertions(+), 42 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fe3af1f46..0ebfd8462 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Increased the height of the tabs on mobile - Improved the language localization for German (`de`) - Improved the language localization for Türkçe (`tr`) +- Upgraded `marked` from version `4.2.12` to `9.1.6` +- Upgraded `ngx-markdown` from version `15.1.0` to `17.1.1` - Upgraded `ng-extract-i18n-merge` from version `2.8.3` to `2.9.0` ### Fixed diff --git a/package.json b/package.json index a95f3a279..bccedc68f 100644 --- a/package.json +++ b/package.json @@ -111,11 +111,11 @@ "http-status-codes": "2.3.0", "ionicons": "7.1.0", "lodash": "4.17.21", - "marked": "4.2.12", + "marked": "9.1.6", "ms": "3.0.0-canary.1", "ng-extract-i18n-merge": "2.9.0", "ngx-device-detector": "5.0.1", - "ngx-markdown": "15.1.0", + "ngx-markdown": "17.1.1", "ngx-skeleton-loader": "7.0.0", "ngx-stripe": "15.5.0", "papaparse": "5.3.1", @@ -168,7 +168,6 @@ "@types/google-spreadsheet": "3.1.5", "@types/jest": "29.4.4", "@types/lodash": "4.14.195", - "@types/marked": "4.0.8", "@types/node": "20.4.2", "@types/papaparse": "5.3.7", "@types/passport-google-oauth20": "2.0.11", diff --git a/yarn.lock b/yarn.lock index 85f19044e..c19ae8175 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1795,7 +1795,7 @@ resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== -"@braintree/sanitize-url@^6.0.0": +"@braintree/sanitize-url@^6.0.1": version "6.0.4" resolved "https://registry.yarnpkg.com/@braintree/sanitize-url/-/sanitize-url-6.0.4.tgz#923ca57e173c6b232bbbb07347b1be982f03e783" integrity sha512-s3jaWicZd0pkP0jf5ysyHUI/RE7MHos6qlToFcGWXVp+ykHOy77OUMrfbgJ9it2C5bow7OIQwYYaHjk9XlBQ2A== @@ -5704,6 +5704,30 @@ dependencies: "@types/node" "*" +"@types/d3-scale-chromatic@^3.0.0": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@types/d3-scale-chromatic/-/d3-scale-chromatic-3.0.3.tgz#fc0db9c10e789c351f4c42d96f31f2e4df8f5644" + integrity sha512-laXM4+1o5ImZv3RpFAsTRn3TEkzqkytiOY0Dz0sq5cnd1dtNlk6sHLon4OvqaiJb28T0S/TdsBI3Sjsy+keJrw== + +"@types/d3-scale@^4.0.3": + version "4.0.8" + resolved "https://registry.yarnpkg.com/@types/d3-scale/-/d3-scale-4.0.8.tgz#d409b5f9dcf63074464bf8ddfb8ee5a1f95945bb" + integrity sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ== + dependencies: + "@types/d3-time" "*" + +"@types/d3-time@*": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@types/d3-time/-/d3-time-3.0.3.tgz#3c186bbd9d12b9d84253b6be6487ca56b54f88be" + integrity sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw== + +"@types/debug@^4.0.0": + version "4.1.12" + resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.12.tgz#a155f21690871953410df4b6b6f53187f0500917" + integrity sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ== + dependencies: + "@types/ms" "*" + "@types/detect-port@^1.3.0": version "1.3.4" resolved "https://registry.yarnpkg.com/@types/detect-port/-/detect-port-1.3.4.tgz#cd34ab0f26391f5b9c5c9bb4c9e370dfbf9e4d05" @@ -5910,10 +5934,12 @@ resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.200.tgz#435b6035c7eba9cdf1e039af8212c9e9281e7149" integrity sha512-YI/M/4HRImtNf3pJgbF+W6FrXovqj+T+/HpENLTooK9PnkacBsDpeP3IpHab40CClUfhNmdM2WTNP2sa2dni5Q== -"@types/marked@4.0.8": - version "4.0.8" - resolved "https://registry.yarnpkg.com/@types/marked/-/marked-4.0.8.tgz#b316887ab3499d0a8f4c70b7bd8508f92d477955" - integrity sha512-HVNzMT5QlWCOdeuBsgXP8EZzKUf0+AXzN+sLmjvaB3ZlLqO+e4u0uXrdw9ub69wBKFs+c6/pA4r9sy6cCDvImw== +"@types/mdast@^3.0.0": + version "3.0.15" + resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.15.tgz#49c524a263f30ffa28b71ae282f813ed000ab9f5" + integrity sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ== + dependencies: + "@types/unist" "^2" "@types/mdx@^2.0.0": version "2.0.9" @@ -5940,6 +5966,11 @@ resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-5.1.2.tgz#07508b45797cb81ec3f273011b054cd0755eddca" integrity sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA== +"@types/ms@*": + version "0.7.34" + resolved "https://registry.yarnpkg.com/@types/ms/-/ms-0.7.34.tgz#10964ba0dee6ac4cd462e2795b6bebd407303433" + integrity sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g== + "@types/node-fetch@^2.5.7", "@types/node-fetch@^2.6.4": version "2.6.7" resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.7.tgz#a1abe2ce24228b58ad97f99480fdcf9bbc6ab16d" @@ -6172,6 +6203,11 @@ resolved "https://registry.yarnpkg.com/@types/tough-cookie/-/tough-cookie-4.0.4.tgz#cf2f0c7c51b985b6afecea73eb2cd65421ecb717" integrity sha512-95Sfz4nvMAb0Nl9DTxN3j64adfwfbBPEYq14VN7zT5J5O2M9V6iZMIIQU1U+pJyl9agHYHNCqhCXgyEtIRRa5A== +"@types/unist@^2": + version "2.0.10" + resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.10.tgz#04ffa7f406ab628f7f7e97ca23e290cd8ab15efc" + integrity sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA== + "@types/unist@^2.0.0": version "2.0.9" resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.9.tgz#72e164381659a49557b0a078b28308f2c6a3e1ce" @@ -7950,6 +7986,11 @@ char-regex@^1.0.2: resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== +character-entities@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-2.0.2.tgz#2d09c2e72cd9523076ccb21157dff66ad43fcc22" + integrity sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ== + chardet@^0.7.0: version "0.7.0" resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" @@ -8952,6 +8993,13 @@ cytoscape@^3.23.0: heap "^0.2.6" lodash "^4.17.21" +"d3-array@1 - 2": + version "2.12.1" + resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-2.12.1.tgz#e20b41aafcdffdf5d50928004ececf815a465e81" + integrity sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ== + dependencies: + internmap "^1.0.0" + "d3-array@2 - 3", "d3-array@2.10.0 - 3", "d3-array@2.5.0 - 3", d3-array@3, d3-array@^3.2.0: version "3.2.4" resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-3.2.4.tgz#15fec33b237f97ac5d7c986dc77da273a8ed0bb5" @@ -9068,6 +9116,11 @@ d3-hierarchy@3: dependencies: d3-color "1 - 3" +d3-path@1: + version "1.0.9" + resolved "https://registry.yarnpkg.com/d3-path/-/d3-path-1.0.9.tgz#48c050bb1fe8c262493a8caf5524e3e9591701cf" + integrity sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg== + "d3-path@1 - 3", d3-path@3, d3-path@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/d3-path/-/d3-path-3.1.0.tgz#22df939032fb5a71ae8b1800d61ddb7851c42526" @@ -9088,6 +9141,14 @@ d3-random@3: resolved "https://registry.yarnpkg.com/d3-random/-/d3-random-3.0.1.tgz#d4926378d333d9c0bfd1e6fa0194d30aebaa20f4" integrity sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ== +d3-sankey@^0.12.3: + version "0.12.3" + resolved "https://registry.yarnpkg.com/d3-sankey/-/d3-sankey-0.12.3.tgz#b3c268627bd72e5d80336e8de6acbfec9d15d01d" + integrity sha512-nQhsBRmM19Ax5xEIPLMY9ZmJ/cDvd1BG3UVvt5h3WRxKg5zGRbvnteTyWAbzeSvlh3tW7ZEmq4VwR5mB3tutmQ== + dependencies: + d3-array "1 - 2" + d3-shape "^1.2.0" + d3-scale-chromatic@3: version "3.0.0" resolved "https://registry.yarnpkg.com/d3-scale-chromatic/-/d3-scale-chromatic-3.0.0.tgz#15b4ceb8ca2bb0dcb6d1a641ee03d59c3b62376a" @@ -9119,6 +9180,13 @@ d3-shape@3: dependencies: d3-path "^3.1.0" +d3-shape@^1.2.0: + version "1.3.7" + resolved "https://registry.yarnpkg.com/d3-shape/-/d3-shape-1.3.7.tgz#df63801be07bc986bc54f63789b4fe502992b5d7" + integrity sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw== + dependencies: + d3-path "1" + "d3-time-format@2 - 4", d3-time-format@4: version "4.1.0" resolved "https://registry.yarnpkg.com/d3-time-format/-/d3-time-format-4.1.0.tgz#7ab5257a5041d11ecb4fe70a5c7d16a195bb408a" @@ -9196,10 +9264,10 @@ d3@^7.4.0, d3@^7.8.2: d3-transition "3" d3-zoom "3" -dagre-d3-es@7.0.9: - version "7.0.9" - resolved "https://registry.yarnpkg.com/dagre-d3-es/-/dagre-d3-es-7.0.9.tgz#aca12fccd9d09955a4430029ba72ee6934542a8d" - integrity sha512-rYR4QfVmy+sR44IBDvVtcAmOReGBvRCWDpO2QjYwqgh9yijw6eSHBqaPG/LIOEy7aBsniLvtMW6pg19qJhq60w== +dagre-d3-es@7.0.10: + version "7.0.10" + resolved "https://registry.yarnpkg.com/dagre-d3-es/-/dagre-d3-es-7.0.10.tgz#19800d4be674379a3cd8c86a8216a2ac6827cadc" + integrity sha512-qTCQmEhcynucuaZgY5/+ti3X/rnszKZhEQH/ZdWdtP1tA/y3VoHJzcVrO9pjjJCNpigfscAtoUB5ONcd2wNn0A== dependencies: d3 "^7.8.2" lodash-es "^4.17.21" @@ -9247,7 +9315,7 @@ debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.9: dependencies: ms "2.0.0" -debug@4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.2, debug@^4.3.4, debug@~4.3.1, debug@~4.3.2: +debug@4, debug@^4.0.0, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.2, debug@^4.3.4, debug@~4.3.1, debug@~4.3.2: version "4.3.4" resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== @@ -9283,6 +9351,13 @@ decimal.js@^10.4.2: resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.4.3.tgz#1044092884d245d1b7f65725fa4ad4c6f781cc23" integrity sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA== +decode-named-character-reference@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz#daabac9690874c394c81e4162a0304b35d824f0e" + integrity sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg== + dependencies: + character-entities "^2.0.0" + decode-uri-component@^0.2.0: version "0.2.2" resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9" @@ -9448,7 +9523,7 @@ depd@~1.1.2: resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" integrity sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ== -dequal@^2.0.2, dequal@^2.0.3: +dequal@^2.0.0, dequal@^2.0.2, dequal@^2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be" integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA== @@ -9518,6 +9593,11 @@ diff@^4.0.1: resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== +diff@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/diff/-/diff-5.1.0.tgz#bc52d298c5ea8df9194800224445ed43ffc87e40" + integrity sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw== + dir-glob@^2.2.2: version "2.2.2" resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-2.2.2.tgz#fa09f0694153c8918b18ba0deafae94769fc50c4" @@ -9609,10 +9689,10 @@ domhandler@^5.0.2, domhandler@^5.0.3: dependencies: domelementtype "^2.3.0" -dompurify@2.4.3: - version "2.4.3" - resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-2.4.3.tgz#f4133af0e6a50297fc8874e2eaedc13a3c308c03" - integrity sha512-q6QaLcakcRjebxjg8/+NP+h0rPfatOgOzc46Fst9VAA3jF2ApfKBNKMzdP4DYTqtUMXSCd5pRS/8Po/OmoCHZQ== +dompurify@^3.0.5: + version "3.0.6" + resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-3.0.6.tgz#925ebd576d54a9531b5d76f0a5bef32548351dae" + integrity sha512-ilkD8YEnnGh1zJ240uJsW7AzE+2qpbOUYjacomn3AvJ6J4JhKGSZ2nh4wUIXPZrEPppaCLx5jFe8T89Rk8tQ7w== domutils@^2.5.2, domutils@^2.8.0: version "2.8.0" @@ -9751,10 +9831,10 @@ emoji-regex@^9.2.2: resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== -emoji-toolkit@^7.0.0: - version "7.0.1" - resolved "https://registry.yarnpkg.com/emoji-toolkit/-/emoji-toolkit-7.0.1.tgz#4ea2a78fe4b40c7cdbe7ef5725c7011299932f09" - integrity sha512-l5aJyAhpC5s4mDuoVuqt4SzVjwIsIvakPh4ZGJJE4KWuWFCEHaXacQFkStVdD9zbRR+/BbRXob7u99o0lQFr8A== +emoji-toolkit@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/emoji-toolkit/-/emoji-toolkit-8.0.0.tgz#59e0273a4a32d653b5125e9a1b8823f0611a042a" + integrity sha512-Vz8YIqQJsQ+QZ4yuKMMzliXceayqfWbNjb6bST+vm77QAhU2is3I+/PRxrNknW+q1bvHHMgjLCQXxzINWLVapg== emojis-list@^3.0.0: version "3.0.0" @@ -12134,6 +12214,11 @@ internal-slot@^1.0.5: resolved "https://registry.yarnpkg.com/internmap/-/internmap-2.0.3.tgz#6685f23755e43c524e251d29cbc97248e3061009" integrity sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg== +internmap@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/internmap/-/internmap-1.0.1.tgz#0017cc8a3b99605f0302f2b198d272e015e5df95" + integrity sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw== + interpret@^1.0.0: version "1.4.0" resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e" @@ -13467,6 +13552,11 @@ kleur@^3.0.3: resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== +kleur@^4.0.3: + version "4.1.5" + resolved "https://registry.yarnpkg.com/kleur/-/kleur-4.1.5.tgz#95106101795f7050c6c650f350c683febddb1780" + integrity sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ== + klona@^2.0.4, klona@^2.0.5: version "2.0.6" resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.6.tgz#85bffbf819c03b2f53270412420a4555ef882e22" @@ -13948,10 +14038,10 @@ markdown-to-jsx@^7.1.8: resolved "https://registry.yarnpkg.com/markdown-to-jsx/-/markdown-to-jsx-7.3.2.tgz#f286b4d112dad3028acc1e77dfe1f653b347e131" integrity sha512-B+28F5ucp83aQm+OxNrPkS8z0tMKaeHiy0lHJs3LqCyDQFtWuenaIrkaVTgAm1pf1AU85LXltva86hlaT17i8Q== -marked@4.2.12: - version "4.2.12" - resolved "https://registry.yarnpkg.com/marked/-/marked-4.2.12.tgz#d69a64e21d71b06250da995dcd065c11083bebb5" - integrity sha512-yr8hSKa3Fv4D3jdZmtMMPghgVt6TWbk86WQaWhDloQjRSQhMMYCAro7jP7VDJrjjdV8pxVxMssXS8B8Y5DZ5aw== +marked@9.1.6: + version "9.1.6" + resolved "https://registry.yarnpkg.com/marked/-/marked-9.1.6.tgz#5d2a3f8180abfbc5d62e3258a38a1c19c0381695" + integrity sha512-jcByLnIFkd5gSXZmjNvS1TlmRhCXZjIzHYlaGkPlLIekG55JDR2Z4va9tZwCiP+/RDERiNhMOFu01xd6O5ct1Q== mdast-util-definitions@^4.0.0: version "4.0.0" @@ -13960,11 +14050,36 @@ mdast-util-definitions@^4.0.0: dependencies: unist-util-visit "^2.0.0" +mdast-util-from-markdown@^1.3.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.1.tgz#9421a5a247f10d31d2faed2a30df5ec89ceafcf0" + integrity sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww== + dependencies: + "@types/mdast" "^3.0.0" + "@types/unist" "^2.0.0" + decode-named-character-reference "^1.0.0" + mdast-util-to-string "^3.1.0" + micromark "^3.0.0" + micromark-util-decode-numeric-character-reference "^1.0.0" + micromark-util-decode-string "^1.0.0" + micromark-util-normalize-identifier "^1.0.0" + micromark-util-symbol "^1.0.0" + micromark-util-types "^1.0.0" + unist-util-stringify-position "^3.0.0" + uvu "^0.5.0" + mdast-util-to-string@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz#27055500103f51637bd07d01da01eb1967a43527" integrity sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A== +mdast-util-to-string@^3.1.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz#66f7bb6324756741c5f47a53557f0cbf16b6f789" + integrity sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg== + dependencies: + "@types/mdast" "^3.0.0" + mdn-data@2.0.28: version "2.0.28" resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.28.tgz#5ec48e7bef120654539069e1ae4ddc81ca490eba" @@ -14018,24 +14133,28 @@ merge2@^1.2.3, merge2@^1.3.0, merge2@^1.4.1: resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== -mermaid@^9.1.2: - version "9.4.3" - resolved "https://registry.yarnpkg.com/mermaid/-/mermaid-9.4.3.tgz#62cf210c246b74972ea98c19837519b6f03427f2" - integrity sha512-TLkQEtqhRSuEHSE34lh5bCa94KATCyluAXmFnNI2PRZwOpXFeqiJWwZl+d2CcemE1RS6QbbueSSq9QIg8Uxcyw== +mermaid@^10.6.0: + version "10.6.1" + resolved "https://registry.yarnpkg.com/mermaid/-/mermaid-10.6.1.tgz#701f4160484137a417770ce757ce1887a98c00fc" + integrity sha512-Hky0/RpOw/1il9X8AvzOEChfJtVvmXm+y7JML5C//ePYMy0/9jCEmW1E1g86x9oDfW9+iVEdTV/i+M6KWRNs4A== dependencies: - "@braintree/sanitize-url" "^6.0.0" + "@braintree/sanitize-url" "^6.0.1" + "@types/d3-scale" "^4.0.3" + "@types/d3-scale-chromatic" "^3.0.0" cytoscape "^3.23.0" cytoscape-cose-bilkent "^4.1.0" cytoscape-fcose "^2.1.0" d3 "^7.4.0" - dagre-d3-es "7.0.9" + d3-sankey "^0.12.3" + dagre-d3-es "7.0.10" dayjs "^1.11.7" - dompurify "2.4.3" + dompurify "^3.0.5" elkjs "^0.8.2" khroma "^2.0.0" lodash-es "^4.17.21" + mdast-util-from-markdown "^1.3.0" non-layered-tidy-tree-layout "^2.0.2" - stylis "^4.1.2" + stylis "^4.1.3" ts-dedent "^2.2.0" uuid "^9.0.0" web-worker "^1.2.0" @@ -14045,6 +14164,200 @@ methods@~1.1.2: resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== +micromark-core-commonmark@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-core-commonmark/-/micromark-core-commonmark-1.1.0.tgz#1386628df59946b2d39fb2edfd10f3e8e0a75bb8" + integrity sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw== + dependencies: + decode-named-character-reference "^1.0.0" + micromark-factory-destination "^1.0.0" + micromark-factory-label "^1.0.0" + micromark-factory-space "^1.0.0" + micromark-factory-title "^1.0.0" + micromark-factory-whitespace "^1.0.0" + micromark-util-character "^1.0.0" + micromark-util-chunked "^1.0.0" + micromark-util-classify-character "^1.0.0" + micromark-util-html-tag-name "^1.0.0" + micromark-util-normalize-identifier "^1.0.0" + micromark-util-resolve-all "^1.0.0" + micromark-util-subtokenize "^1.0.0" + micromark-util-symbol "^1.0.0" + micromark-util-types "^1.0.1" + uvu "^0.5.0" + +micromark-factory-destination@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-factory-destination/-/micromark-factory-destination-1.1.0.tgz#eb815957d83e6d44479b3df640f010edad667b9f" + integrity sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg== + dependencies: + micromark-util-character "^1.0.0" + micromark-util-symbol "^1.0.0" + micromark-util-types "^1.0.0" + +micromark-factory-label@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-factory-label/-/micromark-factory-label-1.1.0.tgz#cc95d5478269085cfa2a7282b3de26eb2e2dec68" + integrity sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w== + dependencies: + micromark-util-character "^1.0.0" + micromark-util-symbol "^1.0.0" + micromark-util-types "^1.0.0" + uvu "^0.5.0" + +micromark-factory-space@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-factory-space/-/micromark-factory-space-1.1.0.tgz#c8f40b0640a0150751d3345ed885a080b0d15faf" + integrity sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ== + dependencies: + micromark-util-character "^1.0.0" + micromark-util-types "^1.0.0" + +micromark-factory-title@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-factory-title/-/micromark-factory-title-1.1.0.tgz#dd0fe951d7a0ac71bdc5ee13e5d1465ad7f50ea1" + integrity sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ== + dependencies: + micromark-factory-space "^1.0.0" + micromark-util-character "^1.0.0" + micromark-util-symbol "^1.0.0" + micromark-util-types "^1.0.0" + +micromark-factory-whitespace@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-factory-whitespace/-/micromark-factory-whitespace-1.1.0.tgz#798fb7489f4c8abafa7ca77eed6b5745853c9705" + integrity sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ== + dependencies: + micromark-factory-space "^1.0.0" + micromark-util-character "^1.0.0" + micromark-util-symbol "^1.0.0" + micromark-util-types "^1.0.0" + +micromark-util-character@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/micromark-util-character/-/micromark-util-character-1.2.0.tgz#4fedaa3646db249bc58caeb000eb3549a8ca5dcc" + integrity sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg== + dependencies: + micromark-util-symbol "^1.0.0" + micromark-util-types "^1.0.0" + +micromark-util-chunked@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-util-chunked/-/micromark-util-chunked-1.1.0.tgz#37a24d33333c8c69a74ba12a14651fd9ea8a368b" + integrity sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ== + dependencies: + micromark-util-symbol "^1.0.0" + +micromark-util-classify-character@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-util-classify-character/-/micromark-util-classify-character-1.1.0.tgz#6a7f8c8838e8a120c8e3c4f2ae97a2bff9190e9d" + integrity sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw== + dependencies: + micromark-util-character "^1.0.0" + micromark-util-symbol "^1.0.0" + micromark-util-types "^1.0.0" + +micromark-util-combine-extensions@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.1.0.tgz#192e2b3d6567660a85f735e54d8ea6e3952dbe84" + integrity sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA== + dependencies: + micromark-util-chunked "^1.0.0" + micromark-util-types "^1.0.0" + +micromark-util-decode-numeric-character-reference@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.1.0.tgz#b1e6e17009b1f20bc652a521309c5f22c85eb1c6" + integrity sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw== + dependencies: + micromark-util-symbol "^1.0.0" + +micromark-util-decode-string@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-util-decode-string/-/micromark-util-decode-string-1.1.0.tgz#dc12b078cba7a3ff690d0203f95b5d5537f2809c" + integrity sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ== + dependencies: + decode-named-character-reference "^1.0.0" + micromark-util-character "^1.0.0" + micromark-util-decode-numeric-character-reference "^1.0.0" + micromark-util-symbol "^1.0.0" + +micromark-util-encode@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-util-encode/-/micromark-util-encode-1.1.0.tgz#92e4f565fd4ccb19e0dcae1afab9a173bbeb19a5" + integrity sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw== + +micromark-util-html-tag-name@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.2.0.tgz#48fd7a25826f29d2f71479d3b4e83e94829b3588" + integrity sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q== + +micromark-util-normalize-identifier@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.1.0.tgz#7a73f824eb9f10d442b4d7f120fecb9b38ebf8b7" + integrity sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q== + dependencies: + micromark-util-symbol "^1.0.0" + +micromark-util-resolve-all@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-util-resolve-all/-/micromark-util-resolve-all-1.1.0.tgz#4652a591ee8c8fa06714c9b54cd6c8e693671188" + integrity sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA== + dependencies: + micromark-util-types "^1.0.0" + +micromark-util-sanitize-uri@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.2.0.tgz#613f738e4400c6eedbc53590c67b197e30d7f90d" + integrity sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A== + dependencies: + micromark-util-character "^1.0.0" + micromark-util-encode "^1.0.0" + micromark-util-symbol "^1.0.0" + +micromark-util-subtokenize@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-util-subtokenize/-/micromark-util-subtokenize-1.1.0.tgz#941c74f93a93eaf687b9054aeb94642b0e92edb1" + integrity sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A== + dependencies: + micromark-util-chunked "^1.0.0" + micromark-util-symbol "^1.0.0" + micromark-util-types "^1.0.0" + uvu "^0.5.0" + +micromark-util-symbol@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-util-symbol/-/micromark-util-symbol-1.1.0.tgz#813cd17837bdb912d069a12ebe3a44b6f7063142" + integrity sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag== + +micromark-util-types@^1.0.0, micromark-util-types@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/micromark-util-types/-/micromark-util-types-1.1.0.tgz#e6676a8cae0bb86a2171c498167971886cb7e283" + integrity sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg== + +micromark@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/micromark/-/micromark-3.2.0.tgz#1af9fef3f995ea1ea4ac9c7e2f19c48fd5c006e9" + integrity sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA== + dependencies: + "@types/debug" "^4.0.0" + debug "^4.0.0" + decode-named-character-reference "^1.0.0" + micromark-core-commonmark "^1.0.1" + micromark-factory-space "^1.0.0" + micromark-util-character "^1.0.0" + micromark-util-chunked "^1.0.0" + micromark-util-combine-extensions "^1.0.0" + micromark-util-decode-numeric-character-reference "^1.0.0" + micromark-util-encode "^1.0.0" + micromark-util-normalize-identifier "^1.0.0" + micromark-util-resolve-all "^1.0.0" + micromark-util-sanitize-uri "^1.0.0" + micromark-util-subtokenize "^1.0.0" + micromark-util-symbol "^1.0.0" + micromark-util-types "^1.0.1" + uvu "^0.5.0" + micromatch@^3.1.10: version "3.1.10" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" @@ -14278,7 +14591,7 @@ moment@^2.27.0: resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.4.tgz#3dbe052889fe7c1b2ed966fcb3a77328964ef108" integrity sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w== -mri@^1.2.0: +mri@^1.1.0, mri@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/mri/-/mri-1.2.0.tgz#6721480fec2a11a4889861115a48b6cbe7cc8f0b" integrity sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA== @@ -14434,17 +14747,17 @@ ngx-device-detector@5.0.1: dependencies: tslib "^2.0.0" -ngx-markdown@15.1.0: - version "15.1.0" - resolved "https://registry.yarnpkg.com/ngx-markdown/-/ngx-markdown-15.1.0.tgz#819e0b07027cf57a10a5cfe5bbac214e426a572b" - integrity sha512-BmbhIY9O4ldPxEymjrCUHgwWPphfY2nO36QoNU8UCzFThkbxcgsfWmyM3fBm81W1BbOPt6mxz6PVx6MaOinB9A== +ngx-markdown@17.1.1: + version "17.1.1" + resolved "https://registry.yarnpkg.com/ngx-markdown/-/ngx-markdown-17.1.1.tgz#6e9c34fe8d470621b4609d68e8a403efb72b4e66" + integrity sha512-BGNWGJ6tmfPx+ScZFq5qeGLgWJwsakjScZ2e+oUzm+97DAHpIHSl8gptNZvZgRhOiFdjLcKBcuY2Rz8WB6J6UQ== dependencies: tslib "^2.3.0" optionalDependencies: clipboard "^2.0.11" - emoji-toolkit "^7.0.0" + emoji-toolkit "^8.0.0" katex "^0.16.0" - mermaid "^9.1.2" + mermaid "^10.6.0" prismjs "^1.28.0" ngx-skeleton-loader@7.0.0: @@ -16584,6 +16897,13 @@ rxjs@7.5.6, rxjs@7.8.1, rxjs@^6.3.3, rxjs@^6.4.0, rxjs@^6.5.3, rxjs@^7.8.0, rxjs dependencies: tslib "^2.1.0" +sade@^1.7.3: + version "1.8.1" + resolved "https://registry.yarnpkg.com/sade/-/sade-1.8.1.tgz#0a78e81d658d394887be57d2a409bf703a3b2701" + integrity sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A== + dependencies: + mri "^1.1.0" + safe-array-concat@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.0.1.tgz#91686a63ce3adbea14d61b14c99572a8ff84754c" @@ -17569,7 +17889,7 @@ stylehacks@^6.0.0: browserslist "^4.21.4" postcss-selector-parser "^6.0.4" -stylis@^4.1.2: +stylis@^4.1.3: version "4.3.0" resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.3.0.tgz#abe305a669fc3d8777e10eefcfc73ad861c5588c" integrity sha512-E87pIogpwUsUwXw7dNyU4QDjdgVMy52m+XEOPEKUn161cCzWjjhPSQhByfd1CcNvrOLnXQ6OnnZDwnJrz/Z4YQ== @@ -18345,6 +18665,13 @@ unist-util-is@^4.0.0: resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-4.1.0.tgz#976e5f462a7a5de73d94b706bac1b90671b57797" integrity sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg== +unist-util-stringify-position@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz#03ad3348210c2d930772d64b489580c13a7db39d" + integrity sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg== + dependencies: + "@types/unist" "^2.0.0" + unist-util-visit-parents@^3.0.0: version "3.1.1" resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz#65a6ce698f78a6b0f56aa0e88f13801886cdaef6" @@ -18514,6 +18841,16 @@ uuid@^8.3.0, uuid@^8.3.2: resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== +uvu@^0.5.0: + version "0.5.6" + resolved "https://registry.yarnpkg.com/uvu/-/uvu-0.5.6.tgz#2754ca20bcb0bb59b64e9985e84d2e81058502df" + integrity sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA== + dependencies: + dequal "^2.0.0" + diff "^5.0.0" + kleur "^4.0.3" + sade "^1.7.3" + v8-compile-cache-lib@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf" From 4f9a5f034069c2a0ba6b85a2c16f1b245a1233fa Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Wed, 6 Dec 2023 18:35:03 +0100 Subject: [PATCH 10/11] Feature/set actions columns of tables to stick at end (#2726) * Set up stickyEnd in actions columns * Update changelog --- CHANGELOG.md | 1 + .../access-table/access-table.component.html | 2 +- .../accounts-table.component.html | 2 +- .../app/components/admin-jobs/admin-jobs.html | 2 +- .../admin-market-data/admin-market-data.html | 2 +- .../admin-platform.component.html | 2 +- .../admin-tag/admin-tag.component.html | 2 +- .../components/admin-users/admin-users.html | 2 +- apps/client/src/styles/table.scss | 43 +++---------------- .../account-balances.component.html | 2 +- .../activities-table.component.html | 2 +- 11 files changed, 17 insertions(+), 45 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ebfd8462..ff0111ba7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +- Set the actions columns of various tables to stick at the end - Increased the height of the tabs on mobile - Improved the language localization for German (`de`) - Improved the language localization for Türkçe (`tr`) diff --git a/apps/client/src/app/components/access-table/access-table.component.html b/apps/client/src/app/components/access-table/access-table.component.html index 589c67e1f..e9138717d 100644 --- a/apps/client/src/app/components/access-table/access-table.component.html +++ b/apps/client/src/app/components/access-table/access-table.component.html @@ -37,7 +37,7 @@ - + diff --git a/apps/client/src/app/components/accounts-table/accounts-table.component.html b/apps/client/src/app/components/accounts-table/accounts-table.component.html index b8c9ac4f7..97a87b716 100644 --- a/apps/client/src/app/components/accounts-table/accounts-table.component.html +++ b/apps/client/src/app/components/accounts-table/accounts-table.component.html @@ -241,7 +241,7 @@ > - +