diff --git a/CHANGELOG.md b/CHANGELOG.md index dce838331..236611852 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,10 +7,61 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +### Changed + +- Improved the language localization for German (`de`) +- Upgraded `ng-extract-i18n-merge` from version `2.7.0` to `2.8.3` + +## 2.22.0 - 2023-11-11 + +### Added + +- Added the platform icon to the account selectors in the cash balance transfer from one to another account +- Added the platform icon to the account selector of the create or edit activity dialog + +### Changed + +- Optimized the style of the carousel component on mobile for the testimonial section on the landing page +- Introduced action menus in the overview of the admin control panel +- Harmonized the name column in the historical market data table of the admin control panel +- Refactored the implementation of the data range functionality (`getRange()`) in the market data service + +## 2.21.0 - 2023-11-09 + +### Changed + +- Extended the system message + +### Fixed + +- Fixed the unit for the _Zen Mode_ in the overview tab of the home page +- Fixed an issue to get quotes in the _Financial Modeling Prep_ service + +## 2.20.0 - 2023-11-08 + +### Changed + +- Removed the loading indicator of the unit in the overview tab of the home page +- Improved the import of historical market data in the admin control panel +- Increased the timeout in the health check endpoint for data enhancers +- Increased the timeout in the health check endpoint for data providers +- Removed the account type from the `Account` database schema + +## 2.19.0 - 2023-11-06 + ### Added - Added a data migration to set `accountType` to `NULL` in the account database table +### Changed + +- Improved the language localization for the _Fear & Greed Index_ (market mood) +- Improved the language localization for German (`de`) + +### Fixed + +- Improved the handling of derived currencies (`GBp`, `ILA`, `ZAc`) + ## 2.18.0 - 2023-11-05 ### Added @@ -352,7 +403,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added -- Added health check endpoints for data enhancers +- Added a health check endpoint for data enhancers ### Changed @@ -528,7 +579,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Improved the usability of the login dialog -- Disabled the caching in the health check endpoints for data providers +- Disabled the caching in the health check endpoint for data providers - Improved the content of the Frequently Asked Questions (FAQ) page - Upgraded `prisma` from version `4.15.0` to `4.16.2` @@ -916,7 +967,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added a fallback to historical market data if a data provider does not provide live data - Added a general health check endpoint -- Added health check endpoints for data providers +- Added a health check endpoint for data providers ### Changed diff --git a/README.md b/README.md index 45f0414bf..01f8547b4 100644 --- a/README.md +++ b/README.md @@ -230,18 +230,18 @@ Deprecated: `GET http://localhost:3333/api/v1/auth/anonymous/ { - return { id }; - }) - } - }); + return this.adminService.patchAssetProfileData({ + ...assetProfileData, + dataSource, + symbol, + tags: { + connect: assetProfileData.tags?.map(({ id }) => { + return { id }; + }) + } + }); + } else { + await this.adminService.patchAssetProfileData({ + dataSource, + symbol, + tags: { + set: [] + } + }); + + return this.adminService.patchAssetProfileData({ + ...assetProfileData, + dataSource, + symbol, + tags: { + connect: assetProfileData.tags?.map(({ id }) => { + return { id }; + }) + } + }); + } } @Put('settings/:key') diff --git a/apps/api/src/app/admin/admin.module.ts b/apps/api/src/app/admin/admin.module.ts index 079af87fa..c018d8615 100644 --- a/apps/api/src/app/admin/admin.module.ts +++ b/apps/api/src/app/admin/admin.module.ts @@ -13,6 +13,7 @@ import { Module } from '@nestjs/common'; import { AdminController } from './admin.controller'; import { AdminService } from './admin.service'; import { QueueModule } from './queue/queue.module'; +import { SymbolProfileOverwriteModule } from '@ghostfolio/api/services/symbol-profile/symbol-profile-overwrite.module'; @Module({ imports: [ @@ -26,7 +27,8 @@ import { QueueModule } from './queue/queue.module'; PropertyModule, QueueModule, SubscriptionModule, - SymbolProfileModule + SymbolProfileModule, + SymbolProfileOverwriteModule ], controllers: [AdminController], providers: [AdminService], diff --git a/apps/api/src/app/admin/admin.service.ts b/apps/api/src/app/admin/admin.service.ts index 5cd14930b..58e5469a0 100644 --- a/apps/api/src/app/admin/admin.service.ts +++ b/apps/api/src/app/admin/admin.service.ts @@ -6,6 +6,7 @@ import { ExchangeRateDataService } from '@ghostfolio/api/services/exchange-rate- import { MarketDataService } from '@ghostfolio/api/services/market-data/market-data.service'; import { PrismaService } from '@ghostfolio/api/services/prisma/prisma.service'; import { PropertyService } from '@ghostfolio/api/services/property/property.service'; +import { SymbolProfileOverwriteService } from '@ghostfolio/api/services/symbol-profile/symbol-profile-overwrite.service'; import { SymbolProfileService } from '@ghostfolio/api/services/symbol-profile/symbol-profile.service'; import { DEFAULT_CURRENCY, @@ -29,7 +30,8 @@ import { Property, SymbolProfile, DataSource, - Tag + Tag, + SymbolProfileOverrides } from '@prisma/client'; import { differenceInDays } from 'date-fns'; import { groupBy } from 'lodash'; @@ -44,7 +46,8 @@ export class AdminService { private readonly prismaService: PrismaService, private readonly propertyService: PropertyService, private readonly subscriptionService: SubscriptionService, - private readonly symbolProfileService: SymbolProfileService + private readonly symbolProfileService: SymbolProfileService, + private readonly symbolProfileOverwriteService: SymbolProfileOverwriteService ) {} public async addAssetProfile({ @@ -331,17 +334,65 @@ export class AdminService { symbol, symbolMapping }: Prisma.SymbolProfileUpdateInput & UniqueAsset) { - await this.symbolProfileService.updateSymbolProfile({ - assetClass, - assetSubClass, - comment, - dataSource, - name, - tags, - scraperConfiguration, - symbol, - symbolMapping - }); + if (dataSource === 'MANUAL') { + await this.symbolProfileService.updateSymbolProfile({ + assetClass, + assetSubClass, + comment, + dataSource, + name, + tags, + scraperConfiguration, + symbol, + symbolMapping + }); + } else { + await this.symbolProfileService.updateSymbolProfile({ + comment, + dataSource, + name, + tags, + scraperConfiguration, + symbol, + symbolMapping + }); + + let symbolProfileId = + await this.symbolProfileOverwriteService.GetSymbolProfileId( + symbol, + dataSource + ); + if (symbolProfileId) { + await this.symbolProfileOverwriteService.updateSymbolProfileOverrides({ + assetClass, + assetSubClass, + symbolProfileId + }); + } else { + symbolProfileId = await this.symbolProfileService.getSymbolProfiles([ + { + dataSource, + symbol + } + ])[0]; + + await this.symbolProfileOverwriteService.add({ + SymbolProfile: { + connect: { + dataSource_symbol: { + dataSource, + symbol + } + } + } + }); + await this.symbolProfileOverwriteService.updateSymbolProfileOverrides({ + assetClass, + assetSubClass, + symbolProfileId + }); + } + } const [symbolProfile] = await this.symbolProfileService.getSymbolProfiles([ { diff --git a/apps/api/src/app/info/info.service.ts b/apps/api/src/app/info/info.service.ts index 4fc4aec4e..744e86c9c 100644 --- a/apps/api/src/app/info/info.service.ts +++ b/apps/api/src/app/info/info.service.ts @@ -15,7 +15,6 @@ import { PROPERTY_IS_READ_ONLY_MODE, PROPERTY_SLACK_COMMUNITY_USERS, PROPERTY_STRIPE_CONFIG, - PROPERTY_SYSTEM_MESSAGE, ghostfolioFearAndGreedIndexDataSource } from '@ghostfolio/common/config'; import { @@ -58,7 +57,6 @@ export class InfoService { const platforms = await this.platformService.getPlatforms({ orderBy: { name: 'asc' } }); - let systemMessage: string; const globalPermissions: string[] = []; @@ -104,10 +102,6 @@ export class InfoService { if (this.configurationService.get('ENABLE_FEATURE_SYSTEM_MESSAGE')) { globalPermissions.push(permissions.enableSystemMessage); - - systemMessage = (await this.propertyService.getByKey( - PROPERTY_SYSTEM_MESSAGE - )) as string; } const isUserSignupEnabled = @@ -135,7 +129,6 @@ export class InfoService { platforms, statistics, subscriptions, - systemMessage, tags, baseCurrency: DEFAULT_CURRENCY, currencies: this.exchangeRateDataService.getCurrencies() diff --git a/apps/api/src/app/portfolio/current-rate.service.mock.ts b/apps/api/src/app/portfolio/current-rate.service.mock.ts index a9dc03acf..6d64f5869 100644 --- a/apps/api/src/app/portfolio/current-rate.service.mock.ts +++ b/apps/api/src/app/portfolio/current-rate.service.mock.ts @@ -61,6 +61,7 @@ export const CurrentRateServiceMock = { for (const dataGatheringItem of dataGatheringItems) { values.push({ date, + dataSource: dataGatheringItem.dataSource, marketPriceInBaseCurrency: mockGetValue( dataGatheringItem.symbol, date @@ -74,6 +75,7 @@ export const CurrentRateServiceMock = { for (const dataGatheringItem of dataGatheringItems) { values.push({ date, + dataSource: dataGatheringItem.dataSource, marketPriceInBaseCurrency: mockGetValue( dataGatheringItem.symbol, date diff --git a/apps/api/src/app/portfolio/current-rate.service.spec.ts b/apps/api/src/app/portfolio/current-rate.service.spec.ts index 88790d2be..44d8bedb8 100644 --- a/apps/api/src/app/portfolio/current-rate.service.spec.ts +++ b/apps/api/src/app/portfolio/current-rate.service.spec.ts @@ -2,6 +2,7 @@ import { DataProviderService } from '@ghostfolio/api/services/data-provider/data import { ExchangeRateDataService } from '@ghostfolio/api/services/exchange-rate-data/exchange-rate-data.service'; import { MarketDataService } from '@ghostfolio/api/services/market-data/market-data.service'; import { PropertyService } from '@ghostfolio/api/services/property/property.service'; +import { UniqueAsset } from '@ghostfolio/common/interfaces'; import { DataSource, MarketData } from '@prisma/client'; import { CurrentRateService } from './current-rate.service'; @@ -25,30 +26,30 @@ jest.mock('@ghostfolio/api/services/market-data/market-data.service', () => { getRange: ({ dateRangeEnd, dateRangeStart, - symbols + uniqueAssets }: { dateRangeEnd: Date; dateRangeStart: Date; - symbols: string[]; + uniqueAssets: UniqueAsset[]; }) => { return Promise.resolve([ { createdAt: dateRangeStart, - dataSource: DataSource.YAHOO, + dataSource: uniqueAssets[0].dataSource, date: dateRangeStart, id: '8fa48fde-f397-4b0d-adbc-fb940e830e6d', marketPrice: 1841.823902, state: 'CLOSE', - symbol: symbols[0] + symbol: uniqueAssets[0].symbol }, { createdAt: dateRangeEnd, - dataSource: DataSource.YAHOO, + dataSource: uniqueAssets[0].dataSource, date: dateRangeEnd, id: '082d6893-df27-4c91-8a5d-092e84315b56', marketPrice: 1847.839966, state: 'CLOSE', - symbol: symbols[0] + symbol: uniqueAssets[0].symbol } ]); } @@ -134,6 +135,7 @@ describe('CurrentRateService', () => { errors: [], values: [ { + dataSource: 'YAHOO', date: undefined, marketPriceInBaseCurrency: 1841.823902, symbol: 'AMZN' diff --git a/apps/api/src/app/portfolio/current-rate.service.ts b/apps/api/src/app/portfolio/current-rate.service.ts index a4ee317bb..718ec6095 100644 --- a/apps/api/src/app/portfolio/current-rate.service.ts +++ b/apps/api/src/app/portfolio/current-rate.service.ts @@ -2,7 +2,11 @@ import { DataProviderService } from '@ghostfolio/api/services/data-provider/data import { ExchangeRateDataService } from '@ghostfolio/api/services/exchange-rate-data/exchange-rate-data.service'; import { MarketDataService } from '@ghostfolio/api/services/market-data/market-data.service'; import { resetHours } from '@ghostfolio/common/helper'; -import { DataProviderInfo, ResponseError } from '@ghostfolio/common/interfaces'; +import { + DataProviderInfo, + ResponseError, + UniqueAsset +} from '@ghostfolio/common/interfaces'; import { Injectable } from '@nestjs/common'; import { isBefore, isToday } from 'date-fns'; import { flatten, isEmpty, uniqBy } from 'lodash'; @@ -52,6 +56,7 @@ export class CurrentRateService { if (dataResultProvider?.[dataGatheringItem.symbol]?.marketPrice) { result.push({ + dataSource: dataGatheringItem.dataSource, date: today, marketPriceInBaseCurrency: this.exchangeRateDataService.toCurrency( @@ -75,27 +80,30 @@ export class CurrentRateService { ); } - const symbols = dataGatheringItems.map((dataGatheringItem) => { - return dataGatheringItem.symbol; - }); + const uniqueAssets: UniqueAsset[] = dataGatheringItems.map( + ({ dataSource, symbol }) => { + return { dataSource, symbol }; + } + ); promises.push( this.marketDataService .getRange({ dateQuery, - symbols + uniqueAssets }) .then((data) => { - return data.map((marketDataItem) => { + return data.map(({ dataSource, date, marketPrice, symbol }) => { return { - date: marketDataItem.date, + dataSource, + date, + symbol, marketPriceInBaseCurrency: this.exchangeRateDataService.toCurrency( - marketDataItem.marketPrice, - currencies[marketDataItem.symbol], + marketPrice, + currencies[symbol], userCurrency - ), - symbol: marketDataItem.symbol + ) }; }); }) @@ -112,7 +120,7 @@ export class CurrentRateService { }; if (!isEmpty(quoteErrors)) { - for (const { symbol } of quoteErrors) { + for (const { dataSource, symbol } of quoteErrors) { try { // If missing quote, fallback to the latest available historical market price let value: GetValueObject = response.values.find((currentValue) => { @@ -121,6 +129,7 @@ export class CurrentRateService { if (!value) { value = { + dataSource, symbol, date: today, marketPriceInBaseCurrency: 0 diff --git a/apps/api/src/app/portfolio/interfaces/get-value-object.interface.ts b/apps/api/src/app/portfolio/interfaces/get-value-object.interface.ts index e67aca619..661170470 100644 --- a/apps/api/src/app/portfolio/interfaces/get-value-object.interface.ts +++ b/apps/api/src/app/portfolio/interfaces/get-value-object.interface.ts @@ -1,5 +1,6 @@ -export interface GetValueObject { +import { UniqueAsset } from '@ghostfolio/common/interfaces'; + +export interface GetValueObject extends UniqueAsset { date: Date; marketPriceInBaseCurrency: number; - symbol: string; } diff --git a/apps/api/src/app/symbol/symbol.service.ts b/apps/api/src/app/symbol/symbol.service.ts index 5eacbb1b0..32285f422 100644 --- a/apps/api/src/app/symbol/symbol.service.ts +++ b/apps/api/src/app/symbol/symbol.service.ts @@ -40,7 +40,12 @@ export class SymbolService { const marketData = await this.marketDataService.getRange({ dateQuery: { gte: subDays(new Date(), days) }, - symbols: [dataGatheringItem.symbol] + uniqueAssets: [ + { + dataSource: dataGatheringItem.dataSource, + symbol: dataGatheringItem.symbol + } + ] }); historicalData = marketData.map(({ date, marketPrice: value }) => { diff --git a/apps/api/src/app/user/user.service.ts b/apps/api/src/app/user/user.service.ts index 91490528e..093587996 100644 --- a/apps/api/src/app/user/user.service.ts +++ b/apps/api/src/app/user/user.service.ts @@ -7,9 +7,14 @@ import { TagService } from '@ghostfolio/api/services/tag/tag.service'; import { DEFAULT_CURRENCY, PROPERTY_IS_READ_ONLY_MODE, + PROPERTY_SYSTEM_MESSAGE, locale } from '@ghostfolio/common/config'; -import { User as IUser, UserSettings } from '@ghostfolio/common/interfaces'; +import { + User as IUser, + SystemMessage, + UserSettings +} from '@ghostfolio/common/interfaces'; import { getPermissions, hasRole, @@ -48,6 +53,17 @@ export class UserService { orderBy: { alias: 'asc' }, where: { GranteeUser: { id } } }); + + let systemMessage: SystemMessage; + + const systemMessageProperty = (await this.propertyService.getByKey( + PROPERTY_SYSTEM_MESSAGE + )) as SystemMessage; + + if (systemMessageProperty?.targetGroups?.includes(subscription.type)) { + systemMessage = systemMessageProperty; + } + let tags = await this.tagService.getByUser(id); if ( @@ -61,6 +77,7 @@ export class UserService { id, permissions, subscription, + systemMessage, tags, access: access.map((accessItem) => { return { @@ -110,7 +127,9 @@ export class UserService { updatedAt } = await this.prismaService.user.findUnique({ include: { - Account: true, + Account: { + include: { Platform: true } + }, Analytics: true, Settings: true, Subscription: true @@ -233,8 +252,8 @@ export class UserService { currentPermissions.push(permissions.impersonateAllUsers); } - user.Account = sortBy(user.Account, (account) => { - return account.name; + user.Account = sortBy(user.Account, ({ name }) => { + return name.toLowerCase(); }); user.permissions = currentPermissions.sort(); diff --git a/apps/api/src/assets/sitemap.xml b/apps/api/src/assets/sitemap.xml index 5f7049311..015a6f67b 100644 --- a/apps/api/src/assets/sitemap.xml +++ b/apps/api/src/assets/sitemap.xml @@ -58,10 +58,18 @@ https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-8figures ${currentDate}T00:00:00+00:00 + + https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-allvue-systems + ${currentDate}T00:00:00+00:00 + https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-altoo ${currentDate}T00:00:00+00:00 + + https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-basil-finance + ${currentDate}T00:00:00+00:00 + https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-beanvest ${currentDate}T00:00:00+00:00 @@ -122,6 +130,10 @@ https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-kubera ${currentDate}T00:00:00+00:00 + + https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-magnifi + ${currentDate}T00:00:00+00:00 + https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-markets.sh ${currentDate}T00:00:00+00:00 @@ -130,6 +142,10 @@ https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-maybe-finance ${currentDate}T00:00:00+00:00 + + https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-monarch-money + ${currentDate}T00:00:00+00:00 + https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-monse ${currentDate}T00:00:00+00:00 @@ -202,6 +218,10 @@ https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-yeekatee ${currentDate}T00:00:00+00:00 + + https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-ynab + ${currentDate}T00:00:00+00:00 + https://ghostfol.io/de/ueber-uns ${currentDate}T00:00:00+00:00 @@ -348,10 +368,18 @@ https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-8figures ${currentDate}T00:00:00+00:00 + + https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-allvue-systems + ${currentDate}T00:00:00+00:00 + https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-altoo ${currentDate}T00:00:00+00:00 + + https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-basil-finance + ${currentDate}T00:00:00+00:00 + https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-beanvest ${currentDate}T00:00:00+00:00 @@ -412,6 +440,10 @@ https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-kubera ${currentDate}T00:00:00+00:00 + + https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-magnifi + ${currentDate}T00:00:00+00:00 + https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-markets.sh ${currentDate}T00:00:00+00:00 @@ -420,6 +452,10 @@ https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-maybe-finance ${currentDate}T00:00:00+00:00 + + https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-monarch-money + ${currentDate}T00:00:00+00:00 + https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-monse ${currentDate}T00:00:00+00:00 @@ -492,6 +528,10 @@ https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-yeekatee ${currentDate}T00:00:00+00:00 + + https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-ynab + ${currentDate}T00:00:00+00:00 + https://ghostfol.io/es ${currentDate}T00:00:00+00:00 @@ -662,10 +702,18 @@ https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-8figures ${currentDate}T00:00:00+00:00 + + https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-allvue-systems + ${currentDate}T00:00:00+00:00 + https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-altoo ${currentDate}T00:00:00+00:00 + + https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-basil-finance + ${currentDate}T00:00:00+00:00 + https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-beanvest ${currentDate}T00:00:00+00:00 @@ -726,6 +774,10 @@ https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-kubera ${currentDate}T00:00:00+00:00 + + https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-magnifi + ${currentDate}T00:00:00+00:00 + https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-markets.sh ${currentDate}T00:00:00+00:00 @@ -734,6 +786,10 @@ https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-maybe-finance ${currentDate}T00:00:00+00:00 + + https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-monarch-money + ${currentDate}T00:00:00+00:00 + https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-monse ${currentDate}T00:00:00+00:00 @@ -806,6 +862,10 @@ https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-yeekatee ${currentDate}T00:00:00+00:00 + + https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-ynab + ${currentDate}T00:00:00+00:00 + https://ghostfol.io/nl ${currentDate}T00:00:00+00:00 @@ -822,10 +882,18 @@ https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-8figures ${currentDate}T00:00:00+00:00 + + https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-allvue-systems + ${currentDate}T00:00:00+00:00 + https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-altoo ${currentDate}T00:00:00+00:00 + + https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-basil-finance + ${currentDate}T00:00:00+00:00 + https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-beanvest ${currentDate}T00:00:00+00:00 @@ -886,6 +954,10 @@ https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-kubera ${currentDate}T00:00:00+00:00 + + https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-magnifi + ${currentDate}T00:00:00+00:00 + https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-markets.sh ${currentDate}T00:00:00+00:00 @@ -894,6 +966,10 @@ https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-maybe-finance ${currentDate}T00:00:00+00:00 + + https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-monarch-money + ${currentDate}T00:00:00+00:00 + https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-monse ${currentDate}T00:00:00+00:00 @@ -966,6 +1042,10 @@ https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-yeekatee ${currentDate}T00:00:00+00:00 + + https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-ynab + ${currentDate}T00:00:00+00:00 + https://ghostfol.io/nl/functionaliteiten ${currentDate}T00:00:00+00:00 diff --git a/apps/api/src/services/data-provider/alpha-vantage/alpha-vantage.service.ts b/apps/api/src/services/data-provider/alpha-vantage/alpha-vantage.service.ts index fbbfffc67..2b03f519d 100644 --- a/apps/api/src/services/data-provider/alpha-vantage/alpha-vantage.service.ts +++ b/apps/api/src/services/data-provider/alpha-vantage/alpha-vantage.service.ts @@ -5,6 +5,7 @@ import { IDataProviderHistoricalResponse, IDataProviderResponse } from '@ghostfolio/api/services/interfaces/interfaces'; +import { DEFAULT_REQUEST_TIMEOUT } from '@ghostfolio/common/config'; import { DATE_FORMAT } from '@ghostfolio/common/helper'; import { Granularity } from '@ghostfolio/common/types'; import { Injectable } from '@nestjs/common'; @@ -106,8 +107,10 @@ export class AlphaVantageService implements DataProviderInterface { } public async getQuotes({ + requestTimeout = DEFAULT_REQUEST_TIMEOUT, symbols }: { + requestTimeout?: number; symbols: string[]; }): Promise<{ [symbol: string]: IDataProviderResponse }> { return {}; diff --git a/apps/api/src/services/data-provider/coingecko/coingecko.service.ts b/apps/api/src/services/data-provider/coingecko/coingecko.service.ts index 3e93d42bf..6ed67bf8b 100644 --- a/apps/api/src/services/data-provider/coingecko/coingecko.service.ts +++ b/apps/api/src/services/data-provider/coingecko/coingecko.service.ts @@ -135,8 +135,10 @@ export class CoinGeckoService implements DataProviderInterface { } public async getQuotes({ + requestTimeout = DEFAULT_REQUEST_TIMEOUT, symbols }: { + requestTimeout?: number; symbols: string[]; }): Promise<{ [symbol: string]: IDataProviderResponse }> { const response: { [symbol: string]: IDataProviderResponse } = {}; @@ -150,7 +152,7 @@ export class CoinGeckoService implements DataProviderInterface { setTimeout(() => { abortController.abort(); - }, DEFAULT_REQUEST_TIMEOUT); + }, requestTimeout); const quotes = await got( `${this.URL}/simple/price?ids=${symbols.join( diff --git a/apps/api/src/services/data-provider/data-enhancer/data-enhancer.service.ts b/apps/api/src/services/data-provider/data-enhancer/data-enhancer.service.ts index e5038c7c6..d9b509f42 100644 --- a/apps/api/src/services/data-provider/data-enhancer/data-enhancer.service.ts +++ b/apps/api/src/services/data-provider/data-enhancer/data-enhancer.service.ts @@ -2,6 +2,7 @@ import { DataEnhancerInterface } from '@ghostfolio/api/services/data-provider/in import { HttpException, Inject, Injectable } from '@nestjs/common'; import { Prisma } from '@prisma/client'; import { StatusCodes, getReasonPhrase } from 'http-status-codes'; +import ms from 'ms'; @Injectable() export class DataEnhancerService { @@ -24,6 +25,7 @@ export class DataEnhancerService { try { const assetProfile = await dataEnhancer.enhance({ + requestTimeout: ms('30 seconds'), response: { assetClass: 'EQUITY', assetSubClass: 'ETF' diff --git a/apps/api/src/services/data-provider/data-enhancer/openfigi/openfigi.service.ts b/apps/api/src/services/data-provider/data-enhancer/openfigi/openfigi.service.ts index 363cbb167..dda30ba1a 100644 --- a/apps/api/src/services/data-provider/data-enhancer/openfigi/openfigi.service.ts +++ b/apps/api/src/services/data-provider/data-enhancer/openfigi/openfigi.service.ts @@ -15,9 +15,11 @@ export class OpenFigiDataEnhancerService implements DataEnhancerInterface { ) {} public async enhance({ + requestTimeout = DEFAULT_REQUEST_TIMEOUT, response, symbol }: { + requestTimeout?: number; response: Partial; symbol: string; }): Promise> { @@ -45,7 +47,7 @@ export class OpenFigiDataEnhancerService implements DataEnhancerInterface { setTimeout(() => { abortController.abort(); - }, DEFAULT_REQUEST_TIMEOUT); + }, requestTimeout); const mappings = await got .post(`${OpenFigiDataEnhancerService.baseUrl}/v3/mapping`, { diff --git a/apps/api/src/services/data-provider/data-enhancer/trackinsight/trackinsight.service.ts b/apps/api/src/services/data-provider/data-enhancer/trackinsight/trackinsight.service.ts index f17bb74c9..6678721c7 100644 --- a/apps/api/src/services/data-provider/data-enhancer/trackinsight/trackinsight.service.ts +++ b/apps/api/src/services/data-provider/data-enhancer/trackinsight/trackinsight.service.ts @@ -21,9 +21,11 @@ export class TrackinsightDataEnhancerService implements DataEnhancerInterface { }; public async enhance({ + requestTimeout = DEFAULT_REQUEST_TIMEOUT, response, symbol }: { + requestTimeout?: number; response: Partial; symbol: string; }): Promise> { @@ -35,7 +37,7 @@ export class TrackinsightDataEnhancerService implements DataEnhancerInterface { setTimeout(() => { abortController.abort(); - }, DEFAULT_REQUEST_TIMEOUT); + }, requestTimeout); const profile = await got( `${TrackinsightDataEnhancerService.baseUrl}/funds/${symbol}.json`, diff --git a/apps/api/src/services/data-provider/data-enhancer/yahoo-finance/yahoo-finance.service.ts b/apps/api/src/services/data-provider/data-enhancer/yahoo-finance/yahoo-finance.service.ts index d46af66a7..67fc0a9c1 100644 --- a/apps/api/src/services/data-provider/data-enhancer/yahoo-finance/yahoo-finance.service.ts +++ b/apps/api/src/services/data-provider/data-enhancer/yahoo-finance/yahoo-finance.service.ts @@ -1,6 +1,10 @@ import { CryptocurrencyService } from '@ghostfolio/api/services/cryptocurrency/cryptocurrency.service'; import { DataEnhancerInterface } from '@ghostfolio/api/services/data-provider/interfaces/data-enhancer.interface'; -import { DEFAULT_CURRENCY, UNKNOWN_KEY } from '@ghostfolio/common/config'; +import { + DEFAULT_CURRENCY, + DEFAULT_REQUEST_TIMEOUT, + UNKNOWN_KEY +} from '@ghostfolio/common/config'; import { isCurrency } from '@ghostfolio/common/helper'; import { Injectable, Logger } from '@nestjs/common'; import { @@ -72,9 +76,11 @@ export class YahooFinanceDataEnhancerService implements DataEnhancerInterface { } public async enhance({ + requestTimeout = DEFAULT_REQUEST_TIMEOUT, response, symbol }: { + requestTimeout?: number; response: Partial; symbol: string; }): Promise> { diff --git a/apps/api/src/services/data-provider/data-provider.service.ts b/apps/api/src/services/data-provider/data-provider.service.ts index 7a998eeb3..ef5143475 100644 --- a/apps/api/src/services/data-provider/data-provider.service.ts +++ b/apps/api/src/services/data-provider/data-provider.service.ts @@ -17,6 +17,7 @@ import { Inject, Injectable, Logger } from '@nestjs/common'; import { DataSource, MarketData, SymbolProfile } from '@prisma/client'; import { format, isValid } from 'date-fns'; import { groupBy, isEmpty, isNumber } from 'lodash'; +import ms from 'ms'; @Injectable() export class DataProviderService { @@ -52,6 +53,7 @@ export class DataProviderService { symbol } ], + requestTimeout: ms('30 seconds'), useCache: false }); @@ -236,9 +238,11 @@ export class DataProviderService { public async getQuotes({ items, + requestTimeout, useCache = true }: { items: UniqueAsset[]; + requestTimeout?: number; useCache?: boolean; }): Promise<{ [symbol: string]: IDataProviderResponse; @@ -312,7 +316,7 @@ export class DataProviderService { ); const promise = Promise.resolve( - dataProvider.getQuotes({ symbols: symbolsChunk }) + dataProvider.getQuotes({ requestTimeout, symbols: symbolsChunk }) ); promises.push( diff --git a/apps/api/src/services/data-provider/eod-historical-data/eod-historical-data.service.ts b/apps/api/src/services/data-provider/eod-historical-data/eod-historical-data.service.ts index 37c37e389..a582a953d 100644 --- a/apps/api/src/services/data-provider/eod-historical-data/eod-historical-data.service.ts +++ b/apps/api/src/services/data-provider/eod-historical-data/eod-historical-data.service.ts @@ -132,8 +132,10 @@ export class EodHistoricalDataService implements DataProviderInterface { } public async getQuotes({ + requestTimeout = DEFAULT_REQUEST_TIMEOUT, symbols }: { + requestTimeout?: number; symbols: string[]; }): Promise<{ [symbol: string]: IDataProviderResponse }> { let response: { [symbol: string]: IDataProviderResponse } = {}; @@ -151,7 +153,7 @@ export class EodHistoricalDataService implements DataProviderInterface { setTimeout(() => { abortController.abort(); - }, DEFAULT_REQUEST_TIMEOUT); + }, requestTimeout); const realTimeResponse = await got( `${this.URL}/real-time/${eodHistoricalDataSymbols[0]}?api_token=${ diff --git a/apps/api/src/services/data-provider/financial-modeling-prep/financial-modeling-prep.service.ts b/apps/api/src/services/data-provider/financial-modeling-prep/financial-modeling-prep.service.ts index b08bc099e..8c27f01a6 100644 --- a/apps/api/src/services/data-provider/financial-modeling-prep/financial-modeling-prep.service.ts +++ b/apps/api/src/services/data-provider/financial-modeling-prep/financial-modeling-prep.service.ts @@ -114,8 +114,10 @@ export class FinancialModelingPrepService implements DataProviderInterface { } public async getQuotes({ + requestTimeout = DEFAULT_REQUEST_TIMEOUT, symbols }: { + requestTimeout?: number; symbols: string[]; }): Promise<{ [symbol: string]: IDataProviderResponse }> { const response: { [symbol: string]: IDataProviderResponse } = {}; @@ -129,9 +131,9 @@ export class FinancialModelingPrepService implements DataProviderInterface { setTimeout(() => { abortController.abort(); - }, DEFAULT_REQUEST_TIMEOUT); + }, requestTimeout); - const response = await got( + const quotes = await got( `${this.URL}/quote/${symbols.join(',')}?apikey=${this.apiKey}`, { // @ts-ignore @@ -139,7 +141,7 @@ export class FinancialModelingPrepService implements DataProviderInterface { } ).json(); - for (const { price, symbol } of response) { + for (const { price, symbol } of quotes) { response[symbol] = { currency: DEFAULT_CURRENCY, dataProviderInfo: this.getDataProviderInfo(), diff --git a/apps/api/src/services/data-provider/google-sheets/google-sheets.service.ts b/apps/api/src/services/data-provider/google-sheets/google-sheets.service.ts index a541fcd12..6dc8dc80b 100644 --- a/apps/api/src/services/data-provider/google-sheets/google-sheets.service.ts +++ b/apps/api/src/services/data-provider/google-sheets/google-sheets.service.ts @@ -7,6 +7,7 @@ import { } from '@ghostfolio/api/services/interfaces/interfaces'; import { PrismaService } from '@ghostfolio/api/services/prisma/prisma.service'; import { SymbolProfileService } from '@ghostfolio/api/services/symbol-profile/symbol-profile.service'; +import { DEFAULT_REQUEST_TIMEOUT } from '@ghostfolio/common/config'; import { DATE_FORMAT, parseDate } from '@ghostfolio/common/helper'; import { Granularity } from '@ghostfolio/common/types'; import { Injectable, Logger } from '@nestjs/common'; @@ -100,8 +101,10 @@ export class GoogleSheetsService implements DataProviderInterface { } public async getQuotes({ + requestTimeout = DEFAULT_REQUEST_TIMEOUT, symbols }: { + requestTimeout?: number; symbols: string[]; }): Promise<{ [symbol: string]: IDataProviderResponse }> { const response: { [symbol: string]: IDataProviderResponse } = {}; diff --git a/apps/api/src/services/data-provider/interfaces/data-enhancer.interface.ts b/apps/api/src/services/data-provider/interfaces/data-enhancer.interface.ts index 9c6db9196..73e0cc69d 100644 --- a/apps/api/src/services/data-provider/interfaces/data-enhancer.interface.ts +++ b/apps/api/src/services/data-provider/interfaces/data-enhancer.interface.ts @@ -2,9 +2,11 @@ import { SymbolProfile } from '@prisma/client'; export interface DataEnhancerInterface { enhance({ + requestTimeout, response, symbol }: { + requestTimeout?: number; response: Partial; symbol: string; }): Promise>; diff --git a/apps/api/src/services/data-provider/interfaces/data-provider.interface.ts b/apps/api/src/services/data-provider/interfaces/data-provider.interface.ts index f4daeb108..a27c8544c 100644 --- a/apps/api/src/services/data-provider/interfaces/data-provider.interface.ts +++ b/apps/api/src/services/data-provider/interfaces/data-provider.interface.ts @@ -37,8 +37,10 @@ export interface DataProviderInterface { getName(): DataSource; getQuotes({ + requestTimeout, symbols }: { + requestTimeout?: number; symbols: string[]; }): Promise<{ [symbol: string]: IDataProviderResponse }>; diff --git a/apps/api/src/services/data-provider/manual/manual.service.ts b/apps/api/src/services/data-provider/manual/manual.service.ts index bea4b60ce..1464a526d 100644 --- a/apps/api/src/services/data-provider/manual/manual.service.ts +++ b/apps/api/src/services/data-provider/manual/manual.service.ts @@ -134,8 +134,10 @@ export class ManualService implements DataProviderInterface { } public async getQuotes({ + requestTimeout = DEFAULT_REQUEST_TIMEOUT, symbols }: { + requestTimeout?: number; symbols: string[]; }): Promise<{ [symbol: string]: IDataProviderResponse }> { const response: { [symbol: string]: IDataProviderResponse } = {}; diff --git a/apps/api/src/services/data-provider/rapid-api/rapid-api.service.ts b/apps/api/src/services/data-provider/rapid-api/rapid-api.service.ts index ce188ffe0..5e833cbf1 100644 --- a/apps/api/src/services/data-provider/rapid-api/rapid-api.service.ts +++ b/apps/api/src/services/data-provider/rapid-api/rapid-api.service.ts @@ -88,8 +88,10 @@ export class RapidApiService implements DataProviderInterface { } public async getQuotes({ + requestTimeout = DEFAULT_REQUEST_TIMEOUT, symbols }: { + requestTimeout?: number; symbols: string[]; }): Promise<{ [symbol: string]: IDataProviderResponse }> { if (symbols.length <= 0) { diff --git a/apps/api/src/services/data-provider/yahoo-finance/yahoo-finance.service.ts b/apps/api/src/services/data-provider/yahoo-finance/yahoo-finance.service.ts index 2f69448f9..96bffa7ea 100644 --- a/apps/api/src/services/data-provider/yahoo-finance/yahoo-finance.service.ts +++ b/apps/api/src/services/data-provider/yahoo-finance/yahoo-finance.service.ts @@ -6,7 +6,10 @@ import { IDataProviderHistoricalResponse, IDataProviderResponse } from '@ghostfolio/api/services/interfaces/interfaces'; -import { DEFAULT_CURRENCY } from '@ghostfolio/common/config'; +import { + DEFAULT_CURRENCY, + DEFAULT_REQUEST_TIMEOUT +} from '@ghostfolio/common/config'; import { DATE_FORMAT } from '@ghostfolio/common/helper'; import { Granularity } from '@ghostfolio/common/types'; import { Injectable, Logger } from '@nestjs/common'; @@ -157,8 +160,10 @@ export class YahooFinanceService implements DataProviderInterface { } public async getQuotes({ + requestTimeout = DEFAULT_REQUEST_TIMEOUT, symbols }: { + requestTimeout?: number; symbols: string[]; }): Promise<{ [symbol: string]: IDataProviderResponse }> { const response: { [symbol: string]: IDataProviderResponse } = {}; diff --git a/apps/api/src/services/exchange-rate-data/exchange-rate-data.service.ts b/apps/api/src/services/exchange-rate-data/exchange-rate-data.service.ts index 376aa1a6a..cf61786c9 100644 --- a/apps/api/src/services/exchange-rate-data/exchange-rate-data.service.ts +++ b/apps/api/src/services/exchange-rate-data/exchange-rate-data.service.ts @@ -95,6 +95,30 @@ export class ExchangeRateDataService { const [currency1, currency2] = symbol.match(/.{1,3}/g); const [date] = Object.keys(result[symbol]); + // Add derived currencies + if (currency2 === 'GBP') { + resultExtended[`${currency1}GBp`] = { + [date]: { + marketPrice: + result[`${currency1}${currency2}`][date].marketPrice * 100 + } + }; + } else if (currency2 === 'ILS') { + resultExtended[`${currency1}ILA`] = { + [date]: { + marketPrice: + result[`${currency1}${currency2}`][date].marketPrice * 100 + } + }; + } else if (currency2 === 'ZAR') { + resultExtended[`${currency1}ZAc`] = { + [date]: { + marketPrice: + result[`${currency1}${currency2}`][date].marketPrice * 100 + } + }; + } + // Calculate the opposite direction resultExtended[`${currency2}${currency1}`] = { [date]: { diff --git a/apps/api/src/services/market-data/market-data.service.ts b/apps/api/src/services/market-data/market-data.service.ts index 5760096bf..52c833784 100644 --- a/apps/api/src/services/market-data/market-data.service.ts +++ b/apps/api/src/services/market-data/market-data.service.ts @@ -59,10 +59,10 @@ export class MarketDataService { public async getRange({ dateQuery, - symbols + uniqueAssets }: { dateQuery: DateQuery; - symbols: string[]; + uniqueAssets: UniqueAsset[]; }): Promise { return await this.prismaService.marketData.findMany({ orderBy: [ @@ -74,10 +74,17 @@ export class MarketDataService { } ], where: { - date: dateQuery, - symbol: { - in: symbols - } + OR: uniqueAssets.map(({ dataSource, symbol }) => { + return { + AND: [ + { + dataSource, + symbol, + date: dateQuery + } + ] + }; + }) } }); } diff --git a/apps/api/src/services/symbol-profile/symbol-profile-overwrite.module.ts b/apps/api/src/services/symbol-profile/symbol-profile-overwrite.module.ts new file mode 100644 index 000000000..3015b268c --- /dev/null +++ b/apps/api/src/services/symbol-profile/symbol-profile-overwrite.module.ts @@ -0,0 +1,11 @@ +import { PrismaModule } from '@ghostfolio/api/services/prisma/prisma.module'; +import { Module } from '@nestjs/common'; + +import { SymbolProfileOverwriteService } from './symbol-profile-overwrite.service'; + +@Module({ + imports: [PrismaModule], + providers: [SymbolProfileOverwriteService], + exports: [SymbolProfileOverwriteService] +}) +export class SymbolProfileOverwriteModule {} diff --git a/apps/api/src/services/symbol-profile/symbol-profile-overwrite.service.ts b/apps/api/src/services/symbol-profile/symbol-profile-overwrite.service.ts new file mode 100644 index 000000000..1b1326849 --- /dev/null +++ b/apps/api/src/services/symbol-profile/symbol-profile-overwrite.service.ts @@ -0,0 +1,68 @@ +import { PrismaService } from '@ghostfolio/api/services/prisma/prisma.service'; +import { Injectable } from '@nestjs/common'; +import { DataSource, Prisma, SymbolProfileOverrides } from '@prisma/client'; + +@Injectable() +export class SymbolProfileOverwriteService { + public constructor(private readonly prismaService: PrismaService) {} + + public async add( + assetProfileOverwrite: Prisma.SymbolProfileOverridesCreateInput + ): Promise { + return this.prismaService.symbolProfileOverrides.create({ + data: assetProfileOverwrite + }); + } + + public async delete(symbolProfileId: string) { + return this.prismaService.symbolProfileOverrides.delete({ + where: { symbolProfileId: symbolProfileId } + }); + } + + public updateSymbolProfileOverrides({ + assetClass, + assetSubClass, + name, + countries, + sectors, + url, + symbolProfileId + }: Prisma.SymbolProfileOverridesUpdateInput & { symbolProfileId: string }) { + return this.prismaService.symbolProfileOverrides.update({ + data: { + assetClass, + assetSubClass, + name, + countries, + sectors, + url + }, + where: { symbolProfileId: symbolProfileId } + }); + } + + public async GetSymbolProfileId( + Symbol: string, + datasource: DataSource + ): Promise { + let SymbolProfileId = await this.prismaService.symbolProfile + .findFirst({ + where: { + symbol: Symbol, + dataSource: datasource + } + }) + .then((s) => s.id); + + let symbolProfileIdSaved = await this.prismaService.symbolProfileOverrides + .findFirst({ + where: { + symbolProfileId: SymbolProfileId + } + }) + .then((s) => s?.symbolProfileId); + + return symbolProfileIdSaved; + } +} diff --git a/apps/client/src/app/app.component.html b/apps/client/src/app/app.component.html index e792598a7..c6ff195f1 100644 --- a/apps/client/src/app/app.component.html +++ b/apps/client/src/app/app.component.html @@ -1,6 +1,6 @@
@@ -19,11 +19,11 @@
- {{ info.systemMessage }} + {{ user.systemMessage.message }}
diff --git a/apps/client/src/app/app.component.ts b/apps/client/src/app/app.component.ts index 2317279b1..1cf4e4b4d 100644 --- a/apps/client/src/app/app.component.ts +++ b/apps/client/src/app/app.component.ts @@ -155,10 +155,7 @@ export class AppComponent implements OnDestroy, OnInit { ); this.hasInfoMessage = - hasPermission( - this.user?.permissions, - permissions.createUserAccount - ) || !!this.info.systemMessage; + this.canCreateAccount || !!this.user?.systemMessage; this.initializeTheme(this.user?.settings.colorScheme); @@ -166,12 +163,16 @@ export class AppComponent implements OnDestroy, OnInit { }); } - public onCreateAccount() { - this.tokenStorageService.signOut(); + public onClickSystemMessage() { + if (this.user.systemMessage.routerLink) { + this.router.navigate(this.user.systemMessage.routerLink); + } else { + alert(this.user.systemMessage.message); + } } - public onShowSystemMessage() { - alert(this.info.systemMessage); + public onCreateAccount() { + this.tokenStorageService.signOut(); } public onSignOut() { diff --git a/apps/client/src/app/components/admin-market-data/admin-market-data.component.ts b/apps/client/src/app/components/admin-market-data/admin-market-data.component.ts index bcf7679d0..25076ca0a 100644 --- a/apps/client/src/app/components/admin-market-data/admin-market-data.component.ts +++ b/apps/client/src/app/components/admin-market-data/admin-market-data.component.ts @@ -20,6 +20,7 @@ import { Filter, UniqueAsset, User } from '@ghostfolio/common/interfaces'; import { AdminMarketDataItem } from '@ghostfolio/common/interfaces/admin-market-data.interface'; import { translate } from '@ghostfolio/ui/i18n'; import { AssetSubClass, DataSource, Prisma } from '@prisma/client'; +import { isUUID } from 'class-validator'; import { DeviceDetectorService } from 'ngx-device-detector'; import { Subject } from 'rxjs'; import { distinctUntilChanged, switchMap, takeUntil } from 'rxjs/operators'; @@ -83,7 +84,7 @@ export class AdminMarketDataComponent public defaultDateFormat: string; public deviceType: string; public displayedColumns = [ - 'symbol', + 'nameWithSymbol', 'dataSource', 'assetClass', 'assetSubClass', @@ -97,6 +98,7 @@ export class AdminMarketDataComponent ]; public filters$ = new Subject(); public isLoading = false; + public isUUID = isUUID; public placeholder = ''; public pageSize = DEFAULT_PAGE_SIZE; public totalItems = 0; diff --git a/apps/client/src/app/components/admin-market-data/admin-market-data.html b/apps/client/src/app/components/admin-market-data/admin-market-data.html index e7e8733e0..4fabde56d 100644 --- a/apps/client/src/app/components/admin-market-data/admin-market-data.html +++ b/apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -28,6 +28,24 @@ + + + Name + + +
{{ element.name }}
+
+ {{ element.symbol | gfSymbol }} +
+ + +
+ Data Source diff --git a/apps/client/src/app/components/admin-market-data/admin-market-data.module.ts b/apps/client/src/app/components/admin-market-data/admin-market-data.module.ts index 060e8a6b0..bcac613a6 100644 --- a/apps/client/src/app/components/admin-market-data/admin-market-data.module.ts +++ b/apps/client/src/app/components/admin-market-data/admin-market-data.module.ts @@ -6,6 +6,7 @@ import { MatPaginatorModule } from '@angular/material/paginator'; import { MatSortModule } from '@angular/material/sort'; import { MatTableModule } from '@angular/material/table'; import { RouterModule } from '@angular/router'; +import { GfSymbolModule } from '@ghostfolio/client/pipes/symbol/symbol.module'; import { GfActivitiesFilterModule } from '@ghostfolio/ui/activities-filter/activities-filter.module'; import { NgxSkeletonLoaderModule } from 'ngx-skeleton-loader'; @@ -20,6 +21,7 @@ import { GfCreateAssetProfileDialogModule } from './create-asset-profile-dialog/ GfActivitiesFilterModule, GfAssetProfileDialogModule, GfCreateAssetProfileDialogModule, + GfSymbolModule, MatButtonModule, MatMenuModule, MatPaginatorModule, diff --git a/apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts b/apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts index 1c8131bca..470354080 100644 --- a/apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts +++ b/apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts @@ -10,6 +10,7 @@ import { } from '@angular/core'; import { FormBuilder, FormControl, Validators } from '@angular/forms'; import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog'; +import { MatSnackBar } from '@angular/material/snack-bar'; import { UpdateAssetProfileDto } from '@ghostfolio/api/app/admin/update-asset-profile.dto'; import { AdminService } from '@ghostfolio/client/services/admin.service'; import { DataService } from '@ghostfolio/client/services/data.service'; @@ -28,8 +29,8 @@ import { } from '@prisma/client'; import { format } from 'date-fns'; import { parse as csvToJson } from 'papaparse'; -import { Subject } from 'rxjs'; -import { takeUntil } from 'rxjs/operators'; +import { EMPTY, Subject } from 'rxjs'; +import { catchError, takeUntil } from 'rxjs/operators'; import { AssetProfileDialogParams } from './interfaces/interfaces'; import { MatAutocompleteSelectedEvent } from '@angular/material/autocomplete'; @@ -57,6 +58,9 @@ export class AssetProfileDialog implements OnDestroy, OnInit { assetClass: new FormControl(undefined), assetSubClass: new FormControl(undefined), comment: '', + historicalData: this.formBuilder.group({ + csvString: '' + }), name: ['', Validators.required], tags: new FormControl(undefined), scraperConfiguration: '', @@ -67,7 +71,6 @@ export class AssetProfileDialog implements OnDestroy, OnInit { public countries: { [code: string]: { name: string; value: number }; }; - public historicalDataAsCsvString: string; public isBenchmark = false; public marketDataDetails: MarketData[] = []; public sectors: { @@ -88,7 +91,8 @@ export class AssetProfileDialog implements OnDestroy, OnInit { @Inject(MAT_DIALOG_DATA) public data: AssetProfileDialogParams, private dataService: DataService, public dialogRef: MatDialogRef, - private formBuilder: FormBuilder + private formBuilder: FormBuilder, + private snackBar: MatSnackBar ) {} public ngOnInit(): void { @@ -98,9 +102,6 @@ export class AssetProfileDialog implements OnDestroy, OnInit { } public initialize() { - this.historicalDataAsCsvString = - AssetProfileDialog.HISTORICAL_DATA_TEMPLATE; - this.adminService .fetchTags() .pipe(takeUntil(this.unsubscribeSubject)) @@ -154,6 +155,9 @@ export class AssetProfileDialog implements OnDestroy, OnInit { assetSubClass: this.assetProfile.assetSubClass ?? null, comment: this.assetProfile?.comment ?? '', tags: this.assetProfile?.tags, + historicalData: { + csvString: AssetProfileDialog.HISTORICAL_DATA_TEMPLATE + }, name: this.assetProfile.name ?? this.assetProfile.symbol, scraperConfiguration: JSON.stringify( this.assetProfile?.scraperConfiguration ?? {} @@ -186,26 +190,46 @@ export class AssetProfileDialog implements OnDestroy, OnInit { } public onImportHistoricalData() { - const marketData = csvToJson(this.historicalDataAsCsvString, { - dynamicTyping: true, - header: true, - skipEmptyLines: true - }).data; - - this.adminService - .postMarketData({ - dataSource: this.data.dataSource, - marketData: { - marketData: marketData.map(({ date, marketPrice }) => { - return { marketPrice, date: parseDate(date).toISOString() }; - }) - }, - symbol: this.data.symbol - }) - .pipe(takeUntil(this.unsubscribeSubject)) - .subscribe(() => { - this.initialize(); - }); + try { + const marketData = csvToJson( + this.assetProfileForm.controls['historicalData'].controls['csvString'] + .value, + { + dynamicTyping: true, + header: true, + skipEmptyLines: true + } + ).data; + + this.adminService + .postMarketData({ + dataSource: this.data.dataSource, + marketData: { + marketData: marketData.map(({ date, marketPrice }) => { + return { marketPrice, date: parseDate(date).toISOString() }; + }) + }, + symbol: this.data.symbol + }) + .pipe( + catchError(({ error, message }) => { + this.snackBar.open(`${error}: ${message[0]}`, undefined, { + duration: 3000 + }); + return EMPTY; + }), + takeUntil(this.unsubscribeSubject) + ) + .subscribe(() => { + this.initialize(); + }); + } catch { + this.snackBar.open( + $localize`Oops! Could not parse historical data.`, + undefined, + { duration: 3000 } + ); + } } public onMarketDataChanged(withRefresh: boolean = false) { @@ -283,6 +307,7 @@ export class AssetProfileDialog implements OnDestroy, OnInit { return id !== aTag.id; }) ); + this.assetProfileForm.markAsDirty(); } public onAddTag(event: MatAutocompleteSelectedEvent) { @@ -293,6 +318,7 @@ export class AssetProfileDialog implements OnDestroy, OnInit { }) ]); this.tagInput.nativeElement.value = ''; + this.assetProfileForm.markAsDirty(); } public ngOnDestroy() { diff --git a/apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html b/apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html index 27571a360..675e5b3b1 100644 --- a/apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html +++ b/apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -52,7 +52,7 @@ (marketDataChanged)="onMarketDataChanged($event)" > -
+
Historical Data (CSV) @@ -60,11 +60,9 @@ @@ -75,6 +73,7 @@ color="accent" mat-flat-button type="button" + [disabled]="!assetProfileForm.controls['historicalData']?.controls['csvString'].touched || assetProfileForm.controls['historicalData']?.controls['csvString']?.value === ''" (click)="onImportHistoricalData()" > Import @@ -179,13 +178,13 @@
- + Name
- + Asset Class @@ -198,7 +197,7 @@
- + Asset Sub Class diff --git a/apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.module.ts b/apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.module.ts index fcf918527..b99722928 100644 --- a/apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.module.ts +++ b/apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.module.ts @@ -8,6 +8,7 @@ import { MatDialogModule } from '@angular/material/dialog'; import { MatInputModule } from '@angular/material/input'; import { MatMenuModule } from '@angular/material/menu'; import { MatSelectModule } from '@angular/material/select'; +import { MatSnackBarModule } from '@angular/material/snack-bar'; import { GfAdminMarketDataDetailModule } from '@ghostfolio/client/components/admin-market-data-detail/admin-market-data-detail.module'; import { GfPortfolioProportionChartModule } from '@ghostfolio/ui/portfolio-proportion-chart/portfolio-proportion-chart.module'; import { GfValueModule } from '@ghostfolio/ui/value'; @@ -32,6 +33,7 @@ import { MatChipsModule } from '@angular/material/chips'; MatInputModule, MatMenuModule, MatSelectModule, + MatSnackBarModule, ReactiveFormsModule, TextFieldModule ], diff --git a/apps/client/src/app/components/admin-overview/admin-overview.component.ts b/apps/client/src/app/components/admin-overview/admin-overview.component.ts index 6c4c72f70..0ab1cb27b 100644 --- a/apps/client/src/app/components/admin-overview/admin-overview.component.ts +++ b/apps/client/src/app/components/admin-overview/admin-overview.component.ts @@ -12,7 +12,12 @@ import { PROPERTY_SYSTEM_MESSAGE, ghostfolioPrefix } from '@ghostfolio/common/config'; -import { Coupon, InfoItem, User } from '@ghostfolio/common/interfaces'; +import { + Coupon, + InfoItem, + SystemMessage, + User +} from '@ghostfolio/common/interfaces'; import { hasPermission, permissions } from '@ghostfolio/common/permissions'; import { differenceInSeconds, @@ -39,6 +44,7 @@ export class AdminOverviewComponent implements OnDestroy, OnInit { public hasPermissionToToggleReadOnlyMode: boolean; public info: InfoItem; public permissions = permissions; + public systemMessage: SystemMessage; public transactionCount: number; public userCount: number; public user: User; @@ -149,7 +155,13 @@ export class AdminOverviewComponent implements OnDestroy, OnInit { } public onDeleteSystemMessage() { - this.putAdminSetting({ key: PROPERTY_SYSTEM_MESSAGE, value: undefined }); + const confirmation = confirm( + $localize`Do you really want to delete this system message?` + ); + + if (confirmation === true) { + this.putAdminSetting({ key: PROPERTY_SYSTEM_MESSAGE, value: undefined }); + } } public onFlushCache() { @@ -184,12 +196,21 @@ export class AdminOverviewComponent implements OnDestroy, OnInit { } public onSetSystemMessage() { - const systemMessage = prompt($localize`Please set your system message:`); + const systemMessage = prompt( + $localize`Please set your system message:`, + JSON.stringify( + this.systemMessage ?? + { + message: '⚒️ Scheduled maintenance in progress...', + targetGroups: ['Basic', 'Premium'] + } + ) + ); if (systemMessage) { this.putAdminSetting({ key: PROPERTY_SYSTEM_MESSAGE, - value: systemMessage + value: JSON.parse(systemMessage) }); } } @@ -208,6 +229,9 @@ export class AdminOverviewComponent implements OnDestroy, OnInit { this.coupons = (settings[PROPERTY_COUPONS] as Coupon[]) ?? []; this.customCurrencies = settings[PROPERTY_CURRENCIES] as string[]; this.exchangeRates = exchangeRates; + this.systemMessage = settings[ + PROPERTY_SYSTEM_MESSAGE + ] as SystemMessage; this.transactionCount = transactionCount; this.userCount = userCount; this.version = version; diff --git a/apps/client/src/app/components/admin-overview/admin-overview.html b/apps/client/src/app/components/admin-overview/admin-overview.html index e82f787f9..c0ce87c88 100644 --- a/apps/client/src/app/components/admin-overview/admin-overview.html +++ b/apps/client/src/app/components/admin-overview/admin-overview.html @@ -38,7 +38,7 @@
- -
+ {{ exchangeRate.label1 }} = + {{ exchangeRate.label2 }} - + + + + - - - + [routerLink]="['/admin', 'market-data']" + > + + + Edit + + + +
@@ -115,8 +140,8 @@
System Message
-
- {{ info.systemMessage }} +
+
{{ systemMessage | json }}
+ + + diff --git a/apps/client/src/app/components/admin-overview/admin-overview.module.ts b/apps/client/src/app/components/admin-overview/admin-overview.module.ts index 554118bb3..d0762e79f 100644 --- a/apps/client/src/app/components/admin-overview/admin-overview.module.ts +++ b/apps/client/src/app/components/admin-overview/admin-overview.module.ts @@ -3,6 +3,7 @@ import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { FormsModule, ReactiveFormsModule } from '@angular/forms'; import { MatButtonModule } from '@angular/material/button'; import { MatCardModule } from '@angular/material/card'; +import { MatMenuModule } from '@angular/material/menu'; import { MatSelectModule } from '@angular/material/select'; import { MatSlideToggleModule } from '@angular/material/slide-toggle'; import { RouterModule } from '@angular/router'; @@ -20,6 +21,7 @@ import { AdminOverviewComponent } from './admin-overview.component'; GfValueModule, MatButtonModule, MatCardModule, + MatMenuModule, MatSelectModule, MatSlideToggleModule, ReactiveFormsModule, diff --git a/apps/client/src/app/components/fear-and-greed-index/fear-and-greed-index.component.ts b/apps/client/src/app/components/fear-and-greed-index/fear-and-greed-index.component.ts index a42c80a37..d9a61036d 100644 --- a/apps/client/src/app/components/fear-and-greed-index/fear-and-greed-index.component.ts +++ b/apps/client/src/app/components/fear-and-greed-index/fear-and-greed-index.component.ts @@ -6,6 +6,7 @@ import { OnInit } from '@angular/core'; import { resolveFearAndGreedIndex } from '@ghostfolio/common/helper'; +import { translate } from '@ghostfolio/ui/i18n'; @Component({ selector: 'gf-fear-and-greed-index', @@ -24,9 +25,9 @@ export class FearAndGreedIndexComponent implements OnChanges, OnInit { public ngOnInit() {} public ngOnChanges() { - const { emoji, text } = resolveFearAndGreedIndex(this.fearAndGreedIndex); + const { emoji, key } = resolveFearAndGreedIndex(this.fearAndGreedIndex); this.fearAndGreedIndexEmoji = emoji; - this.fearAndGreedIndexText = text; + this.fearAndGreedIndexText = translate(key); } } diff --git a/apps/client/src/app/components/home-overview/home-overview.component.ts b/apps/client/src/app/components/home-overview/home-overview.component.ts index 2e3f1269f..74bdec311 100644 --- a/apps/client/src/app/components/home-overview/home-overview.component.ts +++ b/apps/client/src/app/components/home-overview/home-overview.component.ts @@ -33,6 +33,7 @@ export class HomeOverviewComponent implements OnDestroy, OnInit { public isLoadingPerformance = true; public performance: PortfolioPerformance; public showDetails = false; + public unit: string; public user: User; private unsubscribeSubject = new Subject(); @@ -76,6 +77,8 @@ export class HomeOverviewComponent implements OnDestroy, OnInit { !this.hasImpersonationId && !this.user.settings.isRestrictedView && this.user.settings.viewMode !== 'ZEN'; + + this.unit = this.showDetails ? this.user.settings.baseCurrency : '%'; } public onChangeDateRange(dateRange: DateRange) { diff --git a/apps/client/src/app/components/home-overview/home-overview.html b/apps/client/src/app/components/home-overview/home-overview.html index c11734155..4cec06b89 100644 --- a/apps/client/src/app/components/home-overview/home-overview.html +++ b/apps/client/src/app/components/home-overview/home-overview.html @@ -86,7 +86,6 @@
- -
- {{ unit }} -
+ {{ unit }}
diff --git a/apps/client/src/app/components/portfolio-performance/portfolio-performance.component.ts b/apps/client/src/app/components/portfolio-performance/portfolio-performance.component.ts index 586d16ebf..29ccf3b71 100644 --- a/apps/client/src/app/components/portfolio-performance/portfolio-performance.component.ts +++ b/apps/client/src/app/components/portfolio-performance/portfolio-performance.component.ts @@ -25,7 +25,6 @@ import { isNumber } from 'lodash'; styleUrls: ['./portfolio-performance.component.scss'] }) export class PortfolioPerformanceComponent implements OnChanges, OnInit { - @Input() baseCurrency: string; @Input() deviceType: string; @Input() errors: ResponseError['errors']; @Input() isAllTimeHigh: boolean; @@ -34,11 +33,10 @@ export class PortfolioPerformanceComponent implements OnChanges, OnInit { @Input() locale: string; @Input() performance: PortfolioPerformance; @Input() showDetails: boolean; + @Input() unit: string; @ViewChild('value') value: ElementRef; - public unit: string; - public constructor() {} public ngOnInit() {} @@ -50,8 +48,6 @@ export class PortfolioPerformanceComponent implements OnChanges, OnInit { } } else { if (isNumber(this.performance?.currentValue)) { - this.unit = this.baseCurrency; - new CountUp('value', this.performance?.currentValue, { decimal: getNumberFormatDecimal(this.locale), decimalPlaces: @@ -63,8 +59,6 @@ export class PortfolioPerformanceComponent implements OnChanges, OnInit { separator: getNumberFormatGroup(this.locale) }).start(); } else if (this.performance?.currentValue === null) { - this.unit = '%'; - new CountUp( 'value', this.performance?.currentNetPerformancePercent * 100, diff --git a/apps/client/src/app/components/symbol-icon/symbol-icon.component.scss b/apps/client/src/app/components/symbol-icon/symbol-icon.component.scss index 3f3067d74..23bc7a487 100644 --- a/apps/client/src/app/components/symbol-icon/symbol-icon.component.scss +++ b/apps/client/src/app/components/symbol-icon/symbol-icon.component.scss @@ -1,5 +1,6 @@ :host { - display: block; + align-items: center; + display: flex; img { border-radius: 0.2rem; diff --git a/apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html b/apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html index 9cce7b87a..b18ba9984 100644 --- a/apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html +++ b/apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html @@ -10,9 +10,17 @@ From - {{ account.name }} + +
+ {{ account.name }} +
+
@@ -20,9 +28,17 @@ To - {{ account.name }} + +
+ {{ account.name }} +
+
diff --git a/apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.module.ts b/apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.module.ts index 5a56b5810..ad559e28c 100644 --- a/apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.module.ts +++ b/apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.module.ts @@ -6,6 +6,7 @@ import { MatDialogModule } from '@angular/material/dialog'; import { MatFormFieldModule } from '@angular/material/form-field'; import { MatInputModule } from '@angular/material/input'; import { MatSelectModule } from '@angular/material/select'; +import { GfSymbolIconModule } from '@ghostfolio/client/components/symbol-icon/symbol-icon.module'; import { TransferBalanceDialog } from './transfer-balance-dialog.component'; @@ -13,6 +14,7 @@ import { TransferBalanceDialog } from './transfer-balance-dialog.component'; declarations: [TransferBalanceDialog], imports: [ CommonModule, + GfSymbolIconModule, MatButtonModule, MatDialogModule, MatFormFieldModule, diff --git a/apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023/hacktoberfest-2023-debriefing-page.html b/apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023/hacktoberfest-2023-debriefing-page.html index 2cd847d1d..3c9b0c506 100644 --- a/apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023/hacktoberfest-2023-debriefing-page.html +++ b/apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023/hacktoberfest-2023-debriefing-page.html @@ -28,7 +28,7 @@ year.

- In this debrief, we’ll take a closer look at our journey during + In this debriefing, we’ll take a closer look at our journey during Hacktoberfest, exploring the facts and figures, key takeaways, and the impact on Ghostfolio.

diff --git a/apps/client/src/app/pages/landing/landing-page.html b/apps/client/src/app/pages/landing/landing-page.html index 96d5c4f7a..d3ec85f5f 100644 --- a/apps/client/src/app/pages/landing/landing-page.html +++ b/apps/client/src/app/pages/landing/landing-page.html @@ -327,7 +327,7 @@
-
+
- {{ account.name }} +
+ {{ account.name }} +
+
diff --git a/apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.module.ts b/apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.module.ts index 6ab603504..316011d42 100644 --- a/apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.module.ts +++ b/apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.module.ts @@ -10,6 +10,7 @@ import { MatDialogModule } from '@angular/material/dialog'; import { MatFormFieldModule } from '@angular/material/form-field'; import { MatInputModule } from '@angular/material/input'; import { MatSelectModule } from '@angular/material/select'; +import { GfSymbolIconModule } from '@ghostfolio/client/components/symbol-icon/symbol-icon.module'; import { GfSymbolAutocompleteModule } from '@ghostfolio/ui/symbol-autocomplete/symbol-autocomplete.module'; import { GfValueModule } from '@ghostfolio/ui/value'; @@ -21,6 +22,7 @@ import { CreateOrUpdateActivityDialog } from './create-or-update-activity-dialog CommonModule, FormsModule, GfSymbolAutocompleteModule, + GfSymbolIconModule, GfValueModule, MatAutocompleteModule, MatButtonModule, diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products.ts index 09569d8c1..0cd32adc3 100644 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products.ts +++ b/apps/client/src/app/pages/resources/personal-finance-tools/products.ts @@ -1,6 +1,8 @@ import { Product } from '@ghostfolio/common/interfaces'; +import { AllvueSystemsPageComponent } from './products/allvue-systems-page.component'; import { AltooPageComponent } from './products/altoo-page.component'; +import { BasilFinancePageComponent } from './products/basil-finance-page.component'; import { BeanvestPageComponent } from './products/beanvest-page.component'; import { CapitallyPageComponent } from './products/capitally-page.component'; import { CapMonPageComponent } from './products/capmon-page.component'; @@ -17,8 +19,10 @@ import { GoSpatzPageComponent } from './products/gospatz-page.component'; import { IntuitMintPageComponent } from './products/intuit-mint-page.component'; import { JustEtfPageComponent } from './products/justetf-page.component'; import { KuberaPageComponent } from './products/kubera-page.component'; +import { MagnifiPageComponent } from './products/magnifi-page.component'; import { MarketsShPageComponent } from './products/markets.sh-page.component'; import { MaybeFinancePageComponent } from './products/maybe-finance-page.component'; +import { MonarchMoneyPageComponent } from './products/monarch-money-page.component'; import { MonsePageComponent } from './products/monse-page.component'; import { ParqetPageComponent } from './products/parqet-page.component'; import { PlannixPageComponent } from './products/plannix-page.component'; @@ -37,6 +41,7 @@ import { UtlunaPageComponent } from './products/utluna-page.component'; import { VyzerPageComponent } from './products/vyzer-page.component'; import { WealthicaPageComponent } from './products/wealthica-page.component'; import { YeekateePageComponent } from './products/yeekatee-page.component'; +import { YnabPageComponent } from './products/ynab-page.component'; export const products: Product[] = [ { @@ -62,6 +67,16 @@ export const products: Product[] = [ slogan: 'Open Source Wealth Management', useAnonymously: true }, + { + component: AllvueSystemsPageComponent, + founded: 2019, + hasFreePlan: false, + hasSelfHostingAbility: false, + key: 'allvue-systems', + name: 'Allvue Systems', + origin: $localize`United States`, + slogan: 'Investment Software Suite' + }, { component: AltooPageComponent, founded: 2017, @@ -71,6 +86,15 @@ export const products: Product[] = [ origin: $localize`Switzerland`, slogan: 'Simplicity for Complex Wealth' }, + { + component: BasilFinancePageComponent, + founded: 2022, + hasFreePlan: true, + hasSelfHostingAbility: false, + key: 'basil-finance', + name: 'Basil Finance', + slogan: 'The ultimate solution for tracking and managing your investments' + }, { component: BeanvestPageComponent, founded: 2020, @@ -239,6 +263,17 @@ export const products: Product[] = [ pricingPerYear: '$150', slogan: 'The Time Machine for your Net Worth' }, + { + component: MagnifiPageComponent, + founded: 2018, + hasFreePlan: false, + hasSelfHostingAbility: false, + key: 'magnifi', + name: 'Magnifi', + origin: $localize`United States`, + pricingPerYear: '$132', + slogan: 'AI Investing Assistant' + }, { component: MarketsShPageComponent, founded: 2022, @@ -265,6 +300,17 @@ export const products: Product[] = [ region: $localize`United States`, slogan: 'Your financial future, in your control' }, + { + component: MonarchMoneyPageComponent, + founded: 2019, + hasFreePlan: false, + hasSelfHostingAbility: false, + key: 'monarch-money', + name: 'Monarch Money', + origin: $localize`United States`, + pricingPerYear: '$99.99', + slogan: 'The modern way to manage your money' + }, { component: MonsePageComponent, hasFreePlan: false, @@ -452,5 +498,16 @@ export const products: Product[] = [ origin: $localize`Switzerland`, region: $localize`Switzerland`, slogan: 'Connect. Share. Invest.' + }, + { + component: YnabPageComponent, + founded: 2004, + hasFreePlan: false, + hasSelfHostingAbility: false, + key: 'ynab', + name: 'YNAB (You Need a Budget)', + origin: $localize`United States`, + pricingPerYear: '$99', + slogan: 'Change Your Relationship With Money' } ]; diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts new file mode 100644 index 000000000..a8acb3742 --- /dev/null +++ b/apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts @@ -0,0 +1,31 @@ +import { CommonModule } from '@angular/common'; +import { Component } from '@angular/core'; +import { MatButtonModule } from '@angular/material/button'; +import { RouterModule } from '@angular/router'; + +import { products } from '../products'; + +@Component({ + host: { class: 'page' }, + imports: [CommonModule, MatButtonModule, RouterModule], + selector: 'gf-allvue-systems-page', + standalone: true, + styleUrls: ['../product-page-template.scss'], + templateUrl: '../product-page-template.html' +}) +export class AllvueSystemsPageComponent { + public product1 = products.find(({ key }) => { + return key === 'ghostfolio'; + }); + + public product2 = products.find(({ key }) => { + return key === 'allvue-systems'; + }); + + public routerLinkAbout = ['/' + $localize`about`]; + public routerLinkFeatures = ['/' + $localize`features`]; + public routerLinkResourcesPersonalFinanceTools = [ + '/' + $localize`resources`, + 'personal-finance-tools' + ]; +} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts new file mode 100644 index 000000000..c6ec41c55 --- /dev/null +++ b/apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts @@ -0,0 +1,31 @@ +import { CommonModule } from '@angular/common'; +import { Component } from '@angular/core'; +import { MatButtonModule } from '@angular/material/button'; +import { RouterModule } from '@angular/router'; + +import { products } from '../products'; + +@Component({ + host: { class: 'page' }, + imports: [CommonModule, MatButtonModule, RouterModule], + selector: 'gf-basil-finance-page', + standalone: true, + styleUrls: ['../product-page-template.scss'], + templateUrl: '../product-page-template.html' +}) +export class BasilFinancePageComponent { + public product1 = products.find(({ key }) => { + return key === 'ghostfolio'; + }); + + public product2 = products.find(({ key }) => { + return key === 'basil-finance'; + }); + + public routerLinkAbout = ['/' + $localize`about`]; + public routerLinkFeatures = ['/' + $localize`features`]; + public routerLinkResourcesPersonalFinanceTools = [ + '/' + $localize`resources`, + 'personal-finance-tools' + ]; +} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts new file mode 100644 index 000000000..63cde2c14 --- /dev/null +++ b/apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts @@ -0,0 +1,31 @@ +import { CommonModule } from '@angular/common'; +import { Component } from '@angular/core'; +import { MatButtonModule } from '@angular/material/button'; +import { RouterModule } from '@angular/router'; + +import { products } from '../products'; + +@Component({ + host: { class: 'page' }, + imports: [CommonModule, MatButtonModule, RouterModule], + selector: 'gf-magnifi-page', + standalone: true, + styleUrls: ['../product-page-template.scss'], + templateUrl: '../product-page-template.html' +}) +export class MagnifiPageComponent { + public product1 = products.find(({ key }) => { + return key === 'ghostfolio'; + }); + + public product2 = products.find(({ key }) => { + return key === 'magnifi'; + }); + + public routerLinkAbout = ['/' + $localize`about`]; + public routerLinkFeatures = ['/' + $localize`features`]; + public routerLinkResourcesPersonalFinanceTools = [ + '/' + $localize`resources`, + 'personal-finance-tools' + ]; +} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts new file mode 100644 index 000000000..4b21de801 --- /dev/null +++ b/apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts @@ -0,0 +1,31 @@ +import { CommonModule } from '@angular/common'; +import { Component } from '@angular/core'; +import { MatButtonModule } from '@angular/material/button'; +import { RouterModule } from '@angular/router'; + +import { products } from '../products'; + +@Component({ + host: { class: 'page' }, + imports: [CommonModule, MatButtonModule, RouterModule], + selector: 'gf-monarch-money-page', + standalone: true, + styleUrls: ['../product-page-template.scss'], + templateUrl: '../product-page-template.html' +}) +export class MonarchMoneyPageComponent { + public product1 = products.find(({ key }) => { + return key === 'ghostfolio'; + }); + + public product2 = products.find(({ key }) => { + return key === 'monarch-money'; + }); + + public routerLinkAbout = ['/' + $localize`about`]; + public routerLinkFeatures = ['/' + $localize`features`]; + public routerLinkResourcesPersonalFinanceTools = [ + '/' + $localize`resources`, + 'personal-finance-tools' + ]; +} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts new file mode 100644 index 000000000..d63f70e25 --- /dev/null +++ b/apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts @@ -0,0 +1,31 @@ +import { CommonModule } from '@angular/common'; +import { Component } from '@angular/core'; +import { MatButtonModule } from '@angular/material/button'; +import { RouterModule } from '@angular/router'; + +import { products } from '../products'; + +@Component({ + host: { class: 'page' }, + imports: [CommonModule, MatButtonModule, RouterModule], + selector: 'gf-ynab-page', + standalone: true, + styleUrls: ['../product-page-template.scss'], + templateUrl: '../product-page-template.html' +}) +export class YnabPageComponent { + public product1 = products.find(({ key }) => { + return key === 'ghostfolio'; + }); + + public product2 = products.find(({ key }) => { + return key === 'ynab'; + }); + + public routerLinkAbout = ['/' + $localize`about`]; + public routerLinkFeatures = ['/' + $localize`features`]; + public routerLinkResourcesPersonalFinanceTools = [ + '/' + $localize`resources`, + 'personal-finance-tools' + ]; +} diff --git a/apps/client/src/locales/messages.de.xlf b/apps/client/src/locales/messages.de.xlf index 2275fec58..9e7d73e9b 100644 --- a/apps/client/src/locales/messages.de.xlf +++ b/apps/client/src/locales/messages.de.xlf @@ -22,7 +22,7 @@ Das Ausfallrisiko beim Börsenhandel kann erheblich sein. Es ist nicht ratsam, Geld zu investieren, welches du kurzfristig benötigst. apps/client/src/app/app.component.html - 174,175 + 174 @@ -54,7 +54,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 156 + 164 @@ -98,7 +98,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 111 + 110 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -124,9 +124,13 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html 34 + + apps/client/src/app/components/admin-market-data/admin-market-data.html + 38 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 183 + 182 apps/client/src/app/components/admin-platform/admin-platform.component.html @@ -150,11 +154,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 103 + 114 libs/ui/src/lib/activities-table/activities-table.component.html - 171 + 179 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -170,7 +174,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 151 + 159 @@ -186,43 +190,43 @@ apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 31 + 47 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 157 + 168 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 158 + 169 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 160 + 171 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 213 + 224 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 214 + 225 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 215 + 226 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 216 + 227 libs/ui/src/lib/activities-table/activities-table.component.html - 313 + 321 libs/ui/src/lib/activities-table/activities-table.component.html - 348 + 356 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -234,19 +238,27 @@ Bearbeiten apps/client/src/app/components/accounts-table/accounts-table.component.html - 258 + 259 + + + apps/client/src/app/components/admin-market-data/admin-market-data.html + 170 + + + apps/client/src/app/components/admin-overview/admin-overview.html + 86 apps/client/src/app/components/admin-platform/admin-platform.component.html - 90 + 91 apps/client/src/app/components/admin-tag/admin-tag.component.html - 70 + 71 libs/ui/src/lib/activities-table/activities-table.component.html - 490 + 507 @@ -254,23 +266,31 @@ Löschen apps/client/src/app/components/accounts-table/accounts-table.component.html - 266 + 269 apps/client/src/app/components/admin-market-data/admin-market-data.html - 151 + 180 + + + apps/client/src/app/components/admin-overview/admin-overview.html + 99 + + + apps/client/src/app/components/admin-overview/admin-overview.html + 201 apps/client/src/app/components/admin-platform/admin-platform.component.html - 94 + 97 apps/client/src/app/components/admin-tag/admin-tag.component.html - 74 + 77 libs/ui/src/lib/activities-table/activities-table.component.html - 506 + 529 @@ -302,7 +322,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 87 + 86 apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html @@ -318,11 +338,11 @@ apps/client/src/app/components/admin-market-data/admin-market-data.html - 33 + 51 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 119 + 130 @@ -370,7 +390,7 @@ Historische Marktdaten apps/client/src/app/components/admin-jobs/admin-jobs.html - 37,39 + 37 @@ -414,11 +434,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 125 + 136 libs/ui/src/lib/activities-table/activities-table.component.html - 144 + 152 @@ -442,7 +462,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 261 + 260 apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html @@ -466,11 +486,11 @@ apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 43 + 59 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 351 + 362 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -486,7 +506,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 268 + 267 apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html @@ -510,7 +530,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 358 + 369 @@ -518,11 +538,11 @@ Erste Aktivität apps/client/src/app/components/admin-market-data/admin-market-data.html - 60 + 78 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 102 + 101 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -546,7 +566,7 @@ Historische Daten apps/client/src/app/components/admin-market-data/admin-market-data.html - 78 + 96 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -558,7 +578,7 @@ Bitte Währung hinzufügen: apps/client/src/app/components/admin-overview/admin-overview.component.ts - 113 + 119 @@ -566,7 +586,7 @@ Möchtest du diesen Gutscheincode wirklich löschen? apps/client/src/app/components/admin-overview/admin-overview.component.ts - 127 + 133 @@ -574,7 +594,7 @@ Möchtest du diese Währung wirklich löschen? apps/client/src/app/components/admin-overview/admin-overview.component.ts - 140 + 146 @@ -582,7 +602,7 @@ Möchtest du den Cache wirklich leeren? apps/client/src/app/components/admin-overview/admin-overview.component.ts - 157 + 169 @@ -590,7 +610,7 @@ Bitte gebe deine Systemmeldung ein: apps/client/src/app/components/admin-overview/admin-overview.component.ts - 187 + 200 @@ -614,7 +634,7 @@ Letzte Daten einholen apps/client/src/app/components/admin-market-data/admin-market-data.html - 126 + 144 @@ -622,7 +642,7 @@ Alle Daten einholen apps/client/src/app/components/admin-market-data/admin-market-data.html - 129 + 147 @@ -630,7 +650,7 @@ Profildaten herunterladen apps/client/src/app/components/admin-market-data/admin-market-data.html - 132 + 150 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -650,7 +670,7 @@ Währung hinzufügen apps/client/src/app/components/admin-overview/admin-overview.html - 76 + 113 @@ -658,7 +678,7 @@ Systemmeldung apps/client/src/app/components/admin-overview/admin-overview.html - 104 + 141 @@ -666,7 +686,7 @@ Systemmeldung setzen apps/client/src/app/components/admin-overview/admin-overview.html - 126 + 164 @@ -674,7 +694,7 @@ Lese-Modus apps/client/src/app/components/admin-overview/admin-overview.html - 93 + 130 @@ -682,7 +702,7 @@ Gutscheincodes apps/client/src/app/components/admin-overview/admin-overview.html - 134 + 172 @@ -690,7 +710,7 @@ Hinzufügen apps/client/src/app/components/admin-overview/admin-overview.html - 178 + 233 @@ -698,7 +718,7 @@ Verwaltung apps/client/src/app/components/admin-overview/admin-overview.html - 185 + 240 @@ -706,7 +726,7 @@ Cache leeren apps/client/src/app/components/admin-overview/admin-overview.html - 189 + 244 @@ -746,7 +766,7 @@ Letzte Abfrage apps/client/src/app/components/admin-users/admin-users.html - 169,171 + 169 @@ -984,6 +1004,46 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 183 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + About @@ -1260,7 +1320,7 @@ apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 12,15 + 12 @@ -1268,7 +1328,7 @@ {VAR_PLURAL, plural, =1 {Transaktion} other {Transaktionen}} apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 13,14 + 13 @@ -1340,7 +1400,7 @@ Performance pro Jahr apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 262,264 + 262 @@ -1360,11 +1420,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 155 + 166 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 211 + 222 @@ -1380,7 +1440,7 @@ Sektoren apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 159 + 158 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -1396,7 +1456,7 @@ Länder apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 169 + 168 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -1416,7 +1476,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 309 + 320 @@ -1638,6 +1698,10 @@ apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.html 181 + + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023/hacktoberfest-2023-debriefing-page.html + 270 + apps/client/src/app/pages/blog/blog-page.html 5 @@ -1736,16 +1800,12 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 379 + 387 Membership Mitgliedschaft - - apps/client/src/app/components/user-account-membership/user-account-membership.html - 2 - libs/ui/src/lib/membership-card/membership-card.component.html 18 @@ -1756,7 +1816,7 @@ Upgrade apps/client/src/app/components/user-account-membership/user-account-membership.html - 19 + 18 @@ -1764,7 +1824,7 @@ pro Jahr apps/client/src/app/components/user-account-membership/user-account-membership.html - 34 + 33 apps/client/src/app/pages/pricing/pricing-page.html @@ -1776,7 +1836,7 @@ Premium ausprobieren apps/client/src/app/components/user-account-membership/user-account-membership.html - 43 + 42 @@ -1784,7 +1844,7 @@ Gutschein einlösen apps/client/src/app/components/user-account-membership/user-account-membership.html - 56 + 55 @@ -1912,7 +1972,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 92 + 91 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -1920,11 +1980,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 109 + 120 libs/ui/src/lib/activities-table/activities-table.component.html - 201 + 209 @@ -2284,7 +2344,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 91 + 102 @@ -2296,11 +2356,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 142 + 153 libs/ui/src/lib/activities-table/activities-table.component.html - 222 + 230 @@ -2308,15 +2368,15 @@ Stückpreis apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 162 + 173 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 217 + 228 libs/ui/src/lib/activities-table/activities-table.component.html - 251 + 259 @@ -2324,15 +2384,15 @@ Gebühr apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 231 + 242 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 256 + 267 libs/ui/src/lib/activities-table/activities-table.component.html - 280 + 288 @@ -2340,7 +2400,7 @@ Kommentar apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 248 + 247 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -2348,7 +2408,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 265 + 276 @@ -2356,15 +2416,15 @@ Anlageklasse apps/client/src/app/components/admin-market-data/admin-market-data.html - 42 + 60 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 120 + 119 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 189 + 188 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -2372,7 +2432,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 280 + 291 @@ -2444,7 +2504,7 @@ Ghostfolio verschafft Ihnen den Überblick über Ihr Vermögen. apps/client/src/app/pages/public/public-page.html - 147,149 + 147 @@ -2484,7 +2544,7 @@ Ich stimme zu, meinen Security Token an einem sicheren Ort hinterlegt zu haben. Sollte ich diesen verlieren, kann ich mein Konto nicht wiederherstellen. apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html - 31,34 + 31 @@ -2532,7 +2592,7 @@ Geplant libs/ui/src/lib/activities-table/activities-table.component.html - 181 + 189 @@ -2548,11 +2608,11 @@ Aktivitäten exportieren libs/ui/src/lib/activities-table/activities-table.component.html - 44 + 47 libs/ui/src/lib/activities-table/activities-table.component.html - 463 + 476 @@ -2560,11 +2620,11 @@ Geplante Aktivitäten als ICS exportieren libs/ui/src/lib/activities-table/activities-table.component.html - 54 + 59 libs/ui/src/lib/activities-table/activities-table.component.html - 473 + 488 @@ -2572,7 +2632,7 @@ Kopieren libs/ui/src/lib/activities-table/activities-table.component.html - 494 + 513 @@ -2580,7 +2640,7 @@ Geplante Aktivität als ICS exportieren libs/ui/src/lib/activities-table/activities-table.component.html - 502 + 523 @@ -2720,15 +2780,15 @@ Anlageunterklasse apps/client/src/app/components/admin-market-data/admin-market-data.html - 51 + 69 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 129 + 128 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 202 + 201 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -2736,7 +2796,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 296 + 307 @@ -2744,7 +2804,7 @@ Sektor apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 144 + 143 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -2756,7 +2816,7 @@ Land apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 153 + 152 apps/client/src/app/components/admin-users/admin-users.html @@ -2860,7 +2920,7 @@ Anzahl Länder apps/client/src/app/components/admin-market-data/admin-market-data.html - 96 + 114 @@ -2868,7 +2928,7 @@ Anzahl Sektoren apps/client/src/app/components/admin-market-data/admin-market-data.html - 87 + 105 @@ -2878,6 +2938,10 @@ apps/client/src/app/components/home-market/home-market.component.ts 24 + + libs/ui/src/lib/i18n.ts + 65 + Greed @@ -2886,13 +2950,17 @@ apps/client/src/app/components/home-market/home-market.component.ts 25 + + libs/ui/src/lib/i18n.ts + 66 + Filter by... Filtern nach... apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 279 + 281 @@ -2936,7 +3004,7 @@ Hallo, hat ein Portfolio mit dir geteilt! apps/client/src/app/pages/public/public-page.html - 4,7 + 4 @@ -3312,7 +3380,7 @@ Anzahl Aktivitäten apps/client/src/app/components/admin-market-data/admin-market-data.html - 69 + 87 @@ -3328,7 +3396,7 @@ Symbol Zuordnung apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 226 + 225 @@ -3364,7 +3432,7 @@ Benutzer Registrierung apps/client/src/app/components/admin-overview/admin-overview.html - 82 + 119 @@ -3380,7 +3448,7 @@ Importieren apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 80 + 79 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html @@ -3532,7 +3600,7 @@ Ausblenden von sensiblen Informationen wie absoluter Performance und Stückzahl apps/client/src/app/components/user-account-settings/user-account-settings.html - 8,11 + 8 @@ -3540,7 +3608,7 @@ Unbeschwertes Erlebnis für turbulente Zeiten apps/client/src/app/components/user-account-settings/user-account-settings.html - 138,140 + 138 @@ -3548,7 +3616,7 @@ Vorschau auf kommende Funktionalität apps/client/src/app/components/user-account-settings/user-account-settings.html - 173,175 + 173 @@ -3556,7 +3624,7 @@ Bist du ein ambitionierter Investor, der den kompletten Überblick benötigt? apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 15,17 + 15 @@ -3648,7 +3716,7 @@ Für technisch versierte Anleger, die Ghostfolio auf der eigenen Infrastruktur betreiben möchten. apps/client/src/app/pages/pricing/pricing-page.html - 36,39 + 36 @@ -3724,7 +3792,7 @@ Für Einsteiger, die gerade mit dem Börsenhandel beginnen. apps/client/src/app/pages/pricing/pricing-page.html - 150,152 + 150 @@ -3744,7 +3812,7 @@ Für ambitionierte Anleger, die den vollständigen Überblick über ihr Anlagevermögen benötigen. apps/client/src/app/pages/pricing/pricing-page.html - 225,228 + 225 @@ -3760,7 +3828,7 @@ Jetzt loslegen apps/client/src/app/pages/pricing/pricing-page.html - 363,365 + 363 @@ -3884,7 +3952,7 @@ 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 - 247 + 258 @@ -3928,7 +3996,7 @@ Erneuern apps/client/src/app/components/user-account-membership/user-account-membership.html - 22 + 21 @@ -3944,7 +4012,7 @@ Unser offizielles Ghostfolio Premium Cloud-Angebot ist der einfachste Weg für den Einstieg. Aufgrund der Zeitersparnis ist dies die beste Option für die meisten Nutzer. Die Einnahmen werden zur Deckung der Betriebskosten und zur Finanzierung der Weiterentwicklung verwendet. apps/client/src/app/pages/pricing/pricing-page.html - 6,11 + 6 @@ -3952,7 +4020,7 @@ Benutzer verwenden apps/client/src/app/components/admin-users/admin-users.html - 207 + 208 @@ -3960,7 +4028,7 @@ Benutzer löschen apps/client/src/app/components/admin-users/admin-users.html - 215 + 218 @@ -3984,7 +4052,7 @@ Alle Aktivitäten löschen libs/ui/src/lib/activities-table/activities-table.component.html - 62 + 69 @@ -4036,7 +4104,7 @@ Cash-Bestand aktualisieren apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 83 + 94 @@ -4052,7 +4120,7 @@ Wechsle noch heute zu Ghostfolio Premium und erhalte Zugang zu exklusiven Funktionen, die das Investieren erleichtern: apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 18,21 + 18 @@ -4060,7 +4128,7 @@ Nutze die Werkzeuge, um deine Finanzen effektiv zu verwalten und deine persönliche Anlagestrategie zu verfeinern. apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 48,51 + 48 @@ -4068,7 +4136,7 @@ Plattform hinzufügen apps/client/src/app/components/admin-platform/admin-platform.component.html - 11,13 + 11 @@ -4156,7 +4224,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 444 + 453 @@ -4164,11 +4232,11 @@ Dividenden importieren libs/ui/src/lib/activities-table/activities-table.component.html - 34 + 35 libs/ui/src/lib/activities-table/activities-table.component.html - 453 + 464 @@ -4240,7 +4308,7 @@ Wenn du heute in den Ruhestand gehen würdest, könnest du pro Jahr oder pro Monatentnehmen, bezogen auf dein Gesamtanlagevermögen von und einer Entnahmerate von 4%. apps/client/src/app/pages/portfolio/fire/fire-page.html - 57,90 + 57 @@ -4324,7 +4392,7 @@ Import und Export apps/client/src/app/pages/features/features-page.html - 115,117 + 115 @@ -4396,7 +4464,7 @@ Scraper Konfiguration apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 237 + 236 @@ -4420,7 +4488,7 @@ Entdecke Open Source Alternativen für Personal Finance Tools apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 4,6 + 4 @@ -4554,6 +4622,46 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 67 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + Origin @@ -4686,6 +4794,46 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 72 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + Region @@ -4818,137 +4966,217 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 77 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + Available in Verfügbar in apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 @@ -5082,6 +5310,46 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 104 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 111 @@ -5212,43 +5480,43 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -5338,6 +5606,102 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 125 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 136 @@ -5466,6 +5830,38 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 136 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 150 @@ -5594,6 +5990,78 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 150 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 157 @@ -5852,43 +6320,43 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -5978,73 +6446,133 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 176 - - - ❌ No - ❌ Nein apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 176 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 176 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 176 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 176 + + + + ❌ No + ❌ Nein + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -6110,6 +6638,70 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 106 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 129 @@ -6238,6 +6830,82 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 129 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 140 @@ -6496,43 +7164,43 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -6624,67 +7292,83 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 159 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 159 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 159 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -6752,107 +7436,107 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -6878,3565 +7562,4477 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 178 - - - ❌ No - ❌ Nein apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 - - - Self-Hosting - Self-Hosting apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 178 + + + ❌ No + ❌ Nein apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 - - - Use anonymously - Anonyme Nutzung apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 + + + Self-Hosting + Self-Hosting apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 - - - Free Plan - Kostenlose Nutzung apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 + + + Use anonymously + Anonyme Nutzung apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 - - - Notes - Hinweise apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 - - - Effortlessly track, analyze, and visualize your wealth with Ghostfolio. - 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,223 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 145 + + + Free Plan + Kostenlose Nutzung apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 - - - Personal Finance Tools - Tools für persönliche Finanzen apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 + + + Notes + Hinweise apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 - - - Guides - Ratgeber - apps/client/src/app/pages/resources/resources-page.html - 5 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Glossary - Lexikon - apps/client/src/app/pages/resources/resources-page.html - 75 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Stocks, ETFs, bonds, cryptocurrencies, commodities - Aktien, ETFs, Anleihen, Kryptowährungen, Rohstoffe - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 21 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 51 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Mortgages, personal loans, credit cards - Hypotheken, Darlehen, Kreditkarten - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 45 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Luxury items, real estate, private companies - Luxusartikel, Immobilien, private Unternehmen - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 57 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Buy - Kauf - libs/ui/src/lib/i18n.ts - 30 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Valuable - Wertsache - libs/ui/src/lib/i18n.ts - 34 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - ETFs without Countries - ETFs ohne Länder - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 70 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - ETFs without Sectors - ETFs ohne Sektoren - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 75 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Assets - Anlagevermögen - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Preset - Filtervorlage - libs/ui/src/lib/i18n.ts - 21 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - By Market - Nach Markt - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 177 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Asia-Pacific - Asien-Pazifik - libs/ui/src/lib/i18n.ts - 5 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Japan - Japan - libs/ui/src/lib/i18n.ts - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Welcome to Ghostfolio - Herzlich willkommen bei Ghostfolio - apps/client/src/app/components/home-overview/home-overview.html - 9 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Setup your accounts - Konten einrichten - apps/client/src/app/components/home-overview/home-overview.html - 17 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Get a comprehensive financial overview by adding your bank and brokerage accounts. - Verschaffe dir einen umfassenden Überblick, indem du deine Bank- und Wertpapierkonten hinzufügst. - apps/client/src/app/components/home-overview/home-overview.html - 19,20 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Capture your activities - Aktivitäten erfassen - apps/client/src/app/components/home-overview/home-overview.html - 26 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Record your investment activities to keep your portfolio up to date. - Erfasse deine Investitionsaktivitäten, um dein Portfolio auf dem neuesten Stand zu halten. - apps/client/src/app/components/home-overview/home-overview.html - 28,29 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Monitor and analyze your portfolio - Portfolio überwachen und analysieren - apps/client/src/app/components/home-overview/home-overview.html - 35 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Track your progress in real-time with comprehensive analysis and insights. - Verfolge die Entwicklung in Echtzeit mit umfassenden Analysen und Einblicken. - apps/client/src/app/components/home-overview/home-overview.html - 37,38 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - No data available - Keine Daten verfügbar + + Effortlessly track, analyze, and visualize your wealth with Ghostfolio. + Mit Ghostfolio kannst du dein Vermögen einfach überwachen, analysieren und visualisieren. - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 254 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 - apps/client/src/app/pages/public/public-page.html - 123 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 - - - Ready to take control of your personal finances? - Bist du bereit, die Kontrolle über deine Finanzen zu übernehmen? - apps/client/src/app/components/home-overview/home-overview.html - 10 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 - + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + + Personal Finance Tools + Tools für persönliche Finanzen + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + + Guides + Ratgeber + + apps/client/src/app/pages/resources/resources-page.html + 5 + + + + Glossary + Lexikon + + apps/client/src/app/pages/resources/resources-page.html + 75 + + + + Stocks, ETFs, bonds, cryptocurrencies, commodities + Aktien, ETFs, Anleihen, Kryptowährungen, Rohstoffe + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 21 + + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 51 + + + + Mortgages, personal loans, credit cards + Hypotheken, Darlehen, Kreditkarten + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 45 + + + + Luxury items, real estate, private companies + Luxusartikel, Immobilien, private Unternehmen + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 57 + + + + Buy + Kauf + + libs/ui/src/lib/i18n.ts + 30 + + + + Valuable + Wertsache + + libs/ui/src/lib/i18n.ts + 34 + + + + ETFs without Countries + ETFs ohne Länder + + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 71 + + + + ETFs without Sectors + ETFs ohne Sektoren + + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 76 + + + + Assets + Anlagevermögen + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 190 + + + + Preset + Filtervorlage + + libs/ui/src/lib/i18n.ts + 21 + + + + By Market + Nach Markt + + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 177 + + + + Asia-Pacific + Asien-Pazifik + + libs/ui/src/lib/i18n.ts + 5 + + + + Japan + Japan + + libs/ui/src/lib/i18n.ts + 16 + + + + Welcome to Ghostfolio + Herzlich willkommen bei Ghostfolio + + apps/client/src/app/components/home-overview/home-overview.html + 9 + + + + Setup your accounts + Konten einrichten + + apps/client/src/app/components/home-overview/home-overview.html + 17 + + + + Get a comprehensive financial overview by adding your bank and brokerage accounts. + Verschaffe dir einen umfassenden Überblick, indem du deine Bank- und Wertpapierkonten hinzufügst. + + apps/client/src/app/components/home-overview/home-overview.html + 19 + + + + Capture your activities + Aktivitäten erfassen + + apps/client/src/app/components/home-overview/home-overview.html + 26 + + + + Record your investment activities to keep your portfolio up to date. + Erfasse deine Investitionsaktivitäten, um dein Portfolio auf dem neuesten Stand zu halten. + + apps/client/src/app/components/home-overview/home-overview.html + 28 + + + + Monitor and analyze your portfolio + Portfolio überwachen und analysieren + + apps/client/src/app/components/home-overview/home-overview.html + 35 + + + + Track your progress in real-time with comprehensive analysis and insights. + Verfolge die Entwicklung in Echtzeit mit umfassenden Analysen und Einblicken. + + apps/client/src/app/components/home-overview/home-overview.html + 37 + + + + No data available + Keine Daten verfügbar + + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 254 + + + apps/client/src/app/pages/public/public-page.html + 123 + + + + Ready to take control of your personal finances? + Bist du bereit, die Kontrolle über deine Finanzen zu übernehmen? + + apps/client/src/app/components/home-overview/home-overview.html + 10 + + Setup accounts Konten einrichten - apps/client/src/app/components/home-overview/home-overview.html - 50 + apps/client/src/app/components/home-overview/home-overview.html + 50 + + + + Biometric Authentication + Biometrische Authentifizierung + + apps/client/src/app/components/user-account-settings/user-account-settings.html + 154 + + + + At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. + Bei Ghostfolio gehört Transparenz zum zentralen Inhalt unserer Grundwerte. Wir publizieren den Quellcode als Open-Source-Software (OSS) unter der AGPL-3.0-Lizenz und veröffentlichen aggregierte Kennzahlen über den Betriebsstatus der Plattform. + + apps/client/src/app/pages/open/open-page.html + 6 + + + + Active Users + Aktive Nutzer + + apps/client/src/app/pages/open/open-page.html + 40 + + + apps/client/src/app/pages/open/open-page.html + 62 + + + + New Users + Neue Nutzer + + apps/client/src/app/pages/open/open-page.html + 51 + + + + Users in Slack community + Nutzer in der Slack Community + + apps/client/src/app/pages/open/open-page.html + 75 + + + + Contributors on GitHub + Contributors auf GitHub + + apps/client/src/app/pages/open/open-page.html + 89 + + + + Stars on GitHub + Sterne auf GitHub + + apps/client/src/app/pages/landing/landing-page.html + 93 + + + apps/client/src/app/pages/open/open-page.html + 103 + + + + Pulls on Docker Hub + Downloads auf Docker Hub + + apps/client/src/app/pages/landing/landing-page.html + 111 + + + apps/client/src/app/pages/open/open-page.html + 117 + + + + Uptime + Verfügbarkeit + + apps/client/src/app/pages/open/open-page.html + 132 + + + + Export Data + Daten exportieren + + apps/client/src/app/components/user-account-settings/user-account-settings.html + 195 + + + + Currencies + Währungen + + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 66 + + + + Our + Unsere + + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 6 + + + + Visit + Besuche + + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 28 + + + + Discover other exciting Open Source Software projects + Entdecke weitere interessante Open Source Software Projekte + + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 9 + + + + Frequently Asked Questions (FAQ) + Häufig gestellte Fragen (FAQ) + + apps/client/src/app/pages/faq/faq-page.html + 4 + + + + Check out the numerous features of Ghostfolio to manage your wealth + Entdecke die zahlreichen Funktionen von Ghostfolio zur Vermögensverwaltung + + apps/client/src/app/pages/features/features-page.html + 6 + + + + Discover the latest Ghostfolio updates and insights on personal finance + Entdecke die neuesten Ghostfolio Updates und Beiträge zu persönlichen Finanzen + + apps/client/src/app/pages/blog/blog-page.html + 7 + + + + If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. + Wenn du Ghostfolio lieber auf deiner eigenen Infrastruktur betreiben möchtest, findest du den Quellcode und weitere Informationen auf GitHub. + + apps/client/src/app/pages/pricing/pricing-page.html + 24 + + + + Manage your wealth like a boss + Verwalte dein Vermögen wie ein Profi + + apps/client/src/app/pages/landing/landing-page.html + 11 + + + + Ghostfolio is a privacy-first, open source dashboard for your personal finances. Break down your asset allocation, know your net worth and make solid, data-driven investment decisions. + Ghostfolio ist ein Open Source Dashboard für deine persönlichen Finanzen mit Fokus auf Datenschutz. Analysiere deine Vermögensverteilung, ermittle dein Nettovermögen und treffe fundierte, datengestützte Investitionsentscheidungen. + + apps/client/src/app/pages/landing/landing-page.html + 15 + + + + Get Started + Jetzt loslegen + + apps/client/src/app/pages/landing/landing-page.html + 47 + + + apps/client/src/app/pages/landing/landing-page.html + 431 + + + + or + oder + + apps/client/src/app/pages/landing/landing-page.html + 52 + + + + Monthly Active Users + Monatlich aktive Nutzer + + apps/client/src/app/pages/landing/landing-page.html + 75 + + + + As seen in + Bekannt aus + + apps/client/src/app/pages/landing/landing-page.html + 119 + + + + Protect your assets. Refine your personal investment strategy. + Schützen Sie Ihr Vermögen. Optimieren Sie Ihre persönliche Anlagestrategie. + + apps/client/src/app/pages/landing/landing-page.html + 221 + + + + Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. + Ghostfolio ermöglicht es geschäftigen Leuten, den Überblick über Aktien, ETFs oder Kryptowährungen zu behalten, ohne überwacht zu werden. + + apps/client/src/app/pages/landing/landing-page.html + 225 + + + + 360° View + 360° Ansicht + + apps/client/src/app/pages/landing/landing-page.html + 236 + + + + Web3 Ready + Web3 ready + + apps/client/src/app/pages/landing/landing-page.html + 247 + + + + Use Ghostfolio anonymously and own your financial data. + Nutze Ghostfolio ganz anonym und behalte deine Finanzdaten. + + apps/client/src/app/pages/landing/landing-page.html + 249 + + + + Open Source + Open Source + + apps/client/src/app/pages/landing/landing-page.html + 257 + + + + Benefit from continuous improvements through a strong community. + Profitiere von kontinuierlichen Verbesserungen durch eine aktive Community. + + apps/client/src/app/pages/landing/landing-page.html + 259 + + + + Why Ghostfolio? + Warum Ghostfolio? + + apps/client/src/app/pages/landing/landing-page.html + 268 + + + + Ghostfolio is for you if you are... + Ghostfolio ist für dich geeignet, wenn du... + + apps/client/src/app/pages/landing/landing-page.html + 269 + + + + trading stocks, ETFs or cryptocurrencies on multiple platforms + Aktien, ETFs oder Kryptowährungen auf unterschiedlichen Plattformen handelst + + apps/client/src/app/pages/landing/landing-page.html + 276 + + + + pursuing a buy & hold strategy + eine Buy & Hold Strategie verfolgst + + apps/client/src/app/pages/landing/landing-page.html + 282 + + + + interested in getting insights of your portfolio composition + dich für die Zusammensetzung deines Portfolios interessierst + + apps/client/src/app/pages/landing/landing-page.html + 287 + + + + valuing privacy and data ownership + Privatsphäre und Datenhoheit wertschätzt + + apps/client/src/app/pages/landing/landing-page.html + 292 + + + + into minimalism + zum Frugalismus oder Minimalismus neigst + + apps/client/src/app/pages/landing/landing-page.html + 295 + + + + caring about diversifying your financial resources + dich um die Diversifizierung deiner finanziellen Mittel kümmerst + + apps/client/src/app/pages/landing/landing-page.html + 299 + + + + interested in financial independence + Interesse an finanzieller Freiheit hast + + apps/client/src/app/pages/landing/landing-page.html + 303 + + + + saying no to spreadsheets in + Nein sagst zu Excel-Tabellen im Jahr + + apps/client/src/app/pages/landing/landing-page.html + 307 + + + + still reading this list + diese Liste bis zum Ende liest + + apps/client/src/app/pages/landing/landing-page.html + 310 + + + + Learn more about Ghostfolio + Erfahre mehr über Ghostfolio + + apps/client/src/app/pages/landing/landing-page.html + 315 + + + + What our users are saying + Was unsere Nutzer sagen + + apps/client/src/app/pages/landing/landing-page.html + 323 + + + + Members from around the globe are using Ghostfolio Premium + Nutzer aus aller Welt verwenden Ghostfolio Premium + + apps/client/src/app/pages/landing/landing-page.html + 358 + + + + How does Ghostfolio work? + Wie funktioniert Ghostfolio ? + + apps/client/src/app/pages/landing/landing-page.html + 373 + + + + Sign up anonymously* + Registriere dich anonym* + + apps/client/src/app/pages/landing/landing-page.html + 382 + + + + * no e-mail address nor credit card required + * Keine E-Mail-Adresse oder Kreditkarte erforderlich + + apps/client/src/app/pages/landing/landing-page.html + 384 + + + + Add any of your historical transactions + Füge historische Transaktionen hinzu + + apps/client/src/app/pages/landing/landing-page.html + 395 + + + + Get valuable insights of your portfolio composition + Erhalte nützliche Erkenntnisse über die Zusammensetzung deines Portfolios + + apps/client/src/app/pages/landing/landing-page.html + 407 + + + + Are you ready? + Bist du bereit? + + apps/client/src/app/pages/landing/landing-page.html + 419 + + + + Join now or check out the example account + Melde dich jetzt an oder probiere die Live Demo aus + + apps/client/src/app/pages/landing/landing-page.html + 420 + + + + Live Demo + Live Demo + + apps/client/src/app/pages/landing/landing-page.html + 55 + + + apps/client/src/app/pages/landing/landing-page.html + 436 + + + + Get the full picture of your personal finances across multiple platforms. + Verschaffe dir einen vollständigen Überblick deiner persönlichen Finanzen über mehrere Plattformen hinweg. + + apps/client/src/app/pages/landing/landing-page.html + 238 + + + + Get started in only 3 steps + Beginne mit nur 3 Schritten + + apps/client/src/app/pages/landing/landing-page.html + 376 + + + + faq + haeufig-gestellte-fragen + + apps/client/src/app/app-routing.module.ts + 9 + + + apps/client/src/app/app.component.ts + 54 + + + apps/client/src/app/pages/about/overview/about-overview-page.component.ts + 19 + + + + features + features + + apps/client/src/app/app-routing.module.ts + 10 + + + apps/client/src/app/app.component.ts + 55 + + + apps/client/src/app/components/header/header.component.ts + 72 + + + apps/client/src/app/components/header/header.component.ts + 77 + + + apps/client/src/app/pages/about/overview/about-overview-page.component.ts + 20 + + + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 14 + + + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 15 + + + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023/hacktoberfest-2023-debriefing-page.component.ts + 14 + + + apps/client/src/app/pages/faq/faq-page.component.ts + 13 + + + apps/client/src/app/pages/pricing/pricing-page.component.ts + 34 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts + 26 - - - Biometric Authentication - Biometrische Authentifizierung - apps/client/src/app/components/user-account-settings/user-account-settings.html - 154 + apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts + 26 - - - At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. - Bei Ghostfolio gehört Transparenz zum zentralen Inhalt unserer Grundwerte. Wir publizieren den Quellcode als Open-Source-Software (OSS) unter der AGPL-3.0-Lizenz und veröffentlichen aggregierte Kennzahlen über den Betriebsstatus der Plattform. - apps/client/src/app/pages/open/open-page.html - 6,22 + apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts + 26 - - - Active Users - Aktive Nutzer - apps/client/src/app/pages/open/open-page.html - 40 + apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts + 26 - apps/client/src/app/pages/open/open-page.html - 62 + apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts + 26 - - - New Users - Neue Nutzer - apps/client/src/app/pages/open/open-page.html - 51 + apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts + 26 - - - Users in Slack community - Nutzer in der Slack Community - apps/client/src/app/pages/open/open-page.html - 75 + apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts + 26 - - - Contributors on GitHub - Contributors auf GitHub - apps/client/src/app/pages/open/open-page.html - 89 + apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts + 26 - - - Stars on GitHub - Sterne auf GitHub - apps/client/src/app/pages/landing/landing-page.html - 93 + apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts + 26 - apps/client/src/app/pages/open/open-page.html - 103 + apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts + 26 - - - Pulls on Docker Hub - Downloads auf Docker Hub - apps/client/src/app/pages/landing/landing-page.html - 111 + apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts + 26 - apps/client/src/app/pages/open/open-page.html - 117 + apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts + 26 - - - Uptime - Verfügbarkeit - apps/client/src/app/pages/open/open-page.html - 132 + apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts + 26 - - - Export Data - Daten exportieren - apps/client/src/app/components/user-account-settings/user-account-settings.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts + 26 - - - Currencies - Währungen - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 65 + apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts + 26 - - - Our - Unsere - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 6 + apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts + 26 - - - Visit - Besuche - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 28 + apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts + 26 - - - Discover other exciting Open Source Software projects - Entdecke weitere interessante Open Source Software Projekte - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 9 + apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts + 26 - - - Frequently Asked Questions (FAQ) - Häufig gestellte Fragen (FAQ) - apps/client/src/app/pages/faq/faq-page.html - 4,6 + apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts + 26 - - - Check out the numerous features of Ghostfolio to manage your wealth - Entdecke die zahlreichen Funktionen von Ghostfolio zur Vermögensverwaltung - apps/client/src/app/pages/features/features-page.html - 6,8 + apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts + 26 - - - Discover the latest Ghostfolio updates and insights on personal finance - Entdecke die neuesten Ghostfolio Updates und Beiträge zu persönlichen Finanzen - apps/client/src/app/pages/blog/blog-page.html - 7,8 + apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts + 26 - - - If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. - Wenn du Ghostfolio lieber auf deiner eigenen Infrastruktur betreiben möchtest, findest du den Quellcode und weitere Informationen auf GitHub. - apps/client/src/app/pages/pricing/pricing-page.html - 24,28 + apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts + 26 - - - Manage your wealth like a boss - Verwalte dein Vermögen wie ein Profi - apps/client/src/app/pages/landing/landing-page.html - 11,13 + apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts + 26 - - - Ghostfolio is a privacy-first, open source dashboard for your personal finances. Break down your asset allocation, know your net worth and make solid, data-driven investment decisions. - Ghostfolio ist ein Open Source Dashboard für deine persönlichen Finanzen mit Fokus auf Datenschutz. Analysiere deine Vermögensverteilung, ermittle dein Nettovermögen und treffe fundierte, datengestützte Investitionsentscheidungen. - apps/client/src/app/pages/landing/landing-page.html - 15,19 + apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts + 26 - - - Get Started - Jetzt loslegen - apps/client/src/app/pages/landing/landing-page.html - 47,49 + apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts + 26 - apps/client/src/app/pages/landing/landing-page.html - 431,433 + apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts + 26 - - - or - oder - apps/client/src/app/pages/landing/landing-page.html - 52,54 + apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts + 26 - - - Monthly Active Users - Monatlich aktive Nutzer - apps/client/src/app/pages/landing/landing-page.html - 75 + apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts + 26 - - - As seen in - Bekannt aus - apps/client/src/app/pages/landing/landing-page.html - 119 + apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts + 26 - - - Protect your assets. Refine your personal investment strategy. - Schützen Sie Ihr Vermögen. Optimieren Sie Ihre persönliche Anlagestrategie. - apps/client/src/app/pages/landing/landing-page.html - 221,224 + apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts + 26 - - Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. - Ghostfolio ermöglicht es geschäftigen Leuten, den Überblick über Aktien, ETFs oder Kryptowährungen zu behalten, ohne überwacht zu werden. + + about + ueber-uns + + apps/client/src/app/app-routing.module.ts + 8 + + + apps/client/src/app/app.component.ts + 47 + + + apps/client/src/app/app.component.ts + 48 + + + apps/client/src/app/app.component.ts + 49 + + + apps/client/src/app/app.component.ts + 51 + + + apps/client/src/app/components/header/header.component.ts + 71 + + + apps/client/src/app/components/header/header.component.ts + 76 + + + apps/client/src/app/pages/about/about-page.component.ts + 44 + + + apps/client/src/app/pages/about/about-page.component.ts + 49 + + + apps/client/src/app/pages/about/about-page.component.ts + 54 + + + apps/client/src/app/pages/about/about-page.component.ts + 62 + + + apps/client/src/app/pages/about/about-page.component.ts + 73 + - apps/client/src/app/pages/landing/landing-page.html - 225,228 + apps/client/src/app/pages/blog/2023/08/ghostfolio-joins-oss-friends/ghostfolio-joins-oss-friends-page.component.ts + 13 - - - 360° View - 360° Ansicht - apps/client/src/app/pages/landing/landing-page.html - 236 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 13 - - - Web3 Ready - Web3 ready - apps/client/src/app/pages/landing/landing-page.html - 247 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 14 - - - Use Ghostfolio anonymously and own your financial data. - Nutze Ghostfolio ganz anonym und behalte deine Finanzdaten. - apps/client/src/app/pages/landing/landing-page.html - 249,251 + apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.component.ts + 13 - - - Open Source - Open Source - apps/client/src/app/pages/landing/landing-page.html - 257 + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023/hacktoberfest-2023-debriefing-page.component.ts + 13 - - - Benefit from continuous improvements through a strong community. - Profitiere von kontinuierlichen Verbesserungen durch eine aktive Community. - apps/client/src/app/pages/landing/landing-page.html - 259,261 + apps/client/src/app/pages/landing/landing-page.component.ts + 25 - - - Why Ghostfolio? - Warum Ghostfolio? - apps/client/src/app/pages/landing/landing-page.html - 268 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 22 - - - Ghostfolio is for you if you are... - Ghostfolio ist für dich geeignet, wenn du... - apps/client/src/app/pages/landing/landing-page.html - 269,271 + apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts + 25 - - - trading stocks, ETFs or cryptocurrencies on multiple platforms - Aktien, ETFs oder Kryptowährungen auf unterschiedlichen Plattformen handelst - apps/client/src/app/pages/landing/landing-page.html - 276,277 + apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts + 25 - - - pursuing a buy & hold strategy - eine Buy & Hold Strategie verfolgst - apps/client/src/app/pages/landing/landing-page.html - 282 + apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts + 25 - - - interested in getting insights of your portfolio composition - dich für die Zusammensetzung deines Portfolios interessierst - apps/client/src/app/pages/landing/landing-page.html - 287 + apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts + 25 - - - valuing privacy and data ownership - Privatsphäre und Datenhoheit wertschätzt - apps/client/src/app/pages/landing/landing-page.html - 292 + apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts + 25 - - - into minimalism - zum Frugalismus oder Minimalismus neigst - apps/client/src/app/pages/landing/landing-page.html - 295 + apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts + 25 - - - caring about diversifying your financial resources - dich um die Diversifizierung deiner finanziellen Mittel kümmerst - apps/client/src/app/pages/landing/landing-page.html - 299 + apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts + 25 - - - interested in financial independence - Interesse an finanzieller Freiheit hast - apps/client/src/app/pages/landing/landing-page.html - 303 + apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts + 25 - - - saying no to spreadsheets in - Nein sagst zu Excel-Tabellen im Jahr - apps/client/src/app/pages/landing/landing-page.html - 307 + apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts + 25 - - - still reading this list - diese Liste bis zum Ende liest - apps/client/src/app/pages/landing/landing-page.html - 310 + apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts + 25 - - - Learn more about Ghostfolio - Erfahre mehr über Ghostfolio - apps/client/src/app/pages/landing/landing-page.html - 315 + apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts + 25 - - - What our users are saying - Was unsere Nutzer sagen - apps/client/src/app/pages/landing/landing-page.html - 323,325 + apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts + 25 - - - Members from around the globe are using Ghostfolio Premium - Nutzer aus aller Welt verwenden Ghostfolio Premium - apps/client/src/app/pages/landing/landing-page.html - 358,360 + apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts + 25 - - - How does Ghostfolio work? - Wie funktioniert Ghostfolio ? - apps/client/src/app/pages/landing/landing-page.html - 373,375 + apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts + 25 - - - Sign up anonymously* - Registriere dich anonym* - apps/client/src/app/pages/landing/landing-page.html - 382 + apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts + 25 - - - * no e-mail address nor credit card required - * Keine E-Mail-Adresse oder Kreditkarte erforderlich - apps/client/src/app/pages/landing/landing-page.html - 384 + apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts + 25 - - - Add any of your historical transactions - Füge historische Transaktionen hinzu - apps/client/src/app/pages/landing/landing-page.html - 395,397 + apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts + 25 - - - Get valuable insights of your portfolio composition - Erhalte nützliche Erkenntnisse über die Zusammensetzung deines Portfolios - apps/client/src/app/pages/landing/landing-page.html - 407,409 + apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts + 25 - - - Are you ready? - Bist du bereit? - apps/client/src/app/pages/landing/landing-page.html - 419 + apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts + 25 - - - Join now or check out the example account - Melde dich jetzt an oder probiere die Live Demo aus - apps/client/src/app/pages/landing/landing-page.html - 420,423 + apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts + 25 - - - Live Demo - Live Demo - apps/client/src/app/pages/landing/landing-page.html - 55 + apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts + 25 - apps/client/src/app/pages/landing/landing-page.html - 436 + apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts + 25 - - - Get the full picture of your personal finances across multiple platforms. - Verschaffe dir einen vollständigen Überblick deiner persönlichen Finanzen über mehrere Plattformen hinweg. - apps/client/src/app/pages/landing/landing-page.html - 238,241 + apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts + 25 - - - Get started in only 3 steps - Beginne mit nur 3 Schritten - apps/client/src/app/pages/landing/landing-page.html - 376 + apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts + 25 - - - faq - haeufig-gestellte-fragen - apps/client/src/app/app-routing.module.ts - 9 + apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts + 25 - apps/client/src/app/app.component.ts - 54 + apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts + 25 - apps/client/src/app/pages/about/overview/about-overview-page.component.ts - 19 + apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts + 25 - - - features - features - apps/client/src/app/app-routing.module.ts - 10 + apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts + 25 - apps/client/src/app/app.component.ts - 55 + apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts + 25 - apps/client/src/app/components/header/header.component.ts - 72 + apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts + 25 - apps/client/src/app/components/header/header.component.ts - 77 + apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts + 25 - apps/client/src/app/pages/about/overview/about-overview-page.component.ts - 20 + apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts + 25 - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts + 25 - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts + 25 - apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts + 25 - apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts + 25 - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 15 + apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts + 25 - apps/client/src/app/pages/faq/faq-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts + 25 - apps/client/src/app/pages/pricing/pricing-page.component.ts - 34 + apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts + 25 - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts + 25 - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts + 25 - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts + 25 + + + privacy-policy + datenschutzbestimmungen - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 26 + apps/client/src/app/app-routing.module.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 26 + apps/client/src/app/app.component.ts + 52 - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 26 + apps/client/src/app/pages/about/about-page.component.ts + 62 + + + license + lizenz - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 26 + apps/client/src/app/app-routing.module.ts + 11 - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 26 + apps/client/src/app/app.component.ts + 49 - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 26 + apps/client/src/app/pages/about/about-page.component.ts + 54 + + + markets + maerkte - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 26 + apps/client/src/app/app-routing.module.ts + 12 - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 26 + apps/client/src/app/app.component.ts + 56 - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 73 - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 78 - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 26 + apps/client/src/app/pages/faq/faq-page.component.ts + 14 + + + pricing + preise - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 26 + apps/client/src/app/app-routing.module.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 26 + apps/client/src/app/app.component.ts + 57 - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 74 - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 79 - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 26 + apps/client/src/app/components/home-summary/home-summary.component.ts + 124 - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 26 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 26 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 37 - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 26 + apps/client/src/app/core/http-response.interceptor.ts + 80 - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 26 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 26 + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 26 + apps/client/src/app/pages/faq/faq-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 26 + libs/ui/src/lib/membership-card/membership-card.component.ts + 13 - - about - ueber-uns + + register + registrierung apps/client/src/app/app-routing.module.ts - 8 + 15 apps/client/src/app/app.component.ts - 47 + 58 - apps/client/src/app/app.component.ts - 48 + apps/client/src/app/components/header/header.component.ts + 80 - apps/client/src/app/app.component.ts - 49 + apps/client/src/app/core/auth.guard.ts + 53 - apps/client/src/app/app.component.ts - 51 + apps/client/src/app/pages/faq/faq-page.component.ts + 16 - apps/client/src/app/components/header/header.component.ts - 71 + apps/client/src/app/pages/features/features-page.component.ts + 17 - apps/client/src/app/components/header/header.component.ts - 76 + apps/client/src/app/pages/landing/landing-page.component.ts + 26 - apps/client/src/app/pages/about/about-page.component.ts - 44 + apps/client/src/app/pages/pricing/pricing-page.component.ts + 35 + + + resources + ressourcen - apps/client/src/app/pages/about/about-page.component.ts - 49 + apps/client/src/app/app-routing.module.ts + 16 - apps/client/src/app/pages/about/about-page.component.ts - 54 + apps/client/src/app/app.component.ts + 59 - apps/client/src/app/pages/about/about-page.component.ts - 62 + apps/client/src/app/components/header/header.component.ts + 75 - apps/client/src/app/pages/about/about-page.component.ts - 73 + apps/client/src/app/components/header/header.component.ts + 81 - apps/client/src/app/pages/blog/2023/08/ghostfolio-joins-oss-friends/ghostfolio-joins-oss-friends-page.component.ts - 13 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 14 - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 14 + + + apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts 13 - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts 14 - apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.component.ts - 13 + apps/client/src/app/pages/features/features-page.component.ts + 18 - apps/client/src/app/pages/landing/landing-page.component.ts - 25 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 18 + apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 25 + 28 - - - privacy-policy - datenschutzbestimmungen - apps/client/src/app/app-routing.module.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts + 28 - apps/client/src/app/app.component.ts - 52 + apps/client/src/app/pages/resources/resources-page.component.ts + 17 + + + This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. + Diese Übersichtsseite zeigt eine Auswahl an Tools zur Verwaltung der persönliche Finanzen im Vergleich zur Open Source Alternative Ghostfolio. Wenn du Wert auf Transparenz, Datenschutz und die gemeinschaftliche Zusammenarbeit der Open Source Community legst, bietet dir Ghostfolio eine ausgezeichnete Möglichkeit, die Kontrolle über dein Finanzmanagement zu übernehmen. - apps/client/src/app/pages/about/about-page.component.ts - 62 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 8 - - license - lizenz + + Explore the links below to compare a variety of personal finance tools with Ghostfolio. + Über die Links unten kannst du eine Reihe an Tools mit Ghostfolio vergleichen. - apps/client/src/app/app-routing.module.ts - 11 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 16 + + + Open Source Alternative to + Open Source Alternative zu - apps/client/src/app/app.component.ts - 49 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 35 + + + Open Source Alternative to + Open Source Alternative zu - apps/client/src/app/pages/about/about-page.component.ts - 54 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 25 - - markets - maerkte + + The Open Source Alternative to + Die Open Source Alternative zu - apps/client/src/app/app-routing.module.ts - 12 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/app.component.ts - 56 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/header/header.component.ts - 73 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/header/header.component.ts - 78 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/faq/faq-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - - - pricing - preise - apps/client/src/app/app-routing.module.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/app.component.ts - 57 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/header/header.component.ts - 74 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/header/header.component.ts - 79 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/home-summary/home-summary.component.ts - 124 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 37 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/core/http-response.interceptor.ts - 80 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts - 15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/faq/faq-page.component.ts - 15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - libs/ui/src/lib/membership-card/membership-card.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - - - register - registrierung - apps/client/src/app/app-routing.module.ts - 15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/app.component.ts - 58 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/header/header.component.ts - 80 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/core/auth.guard.ts - 53 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/faq/faq-page.component.ts - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/features/features-page.component.ts - 17 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/landing/landing-page.component.ts - 26 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/pricing/pricing-page.component.ts - 35 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - - - resources - ressourcen - apps/client/src/app/app-routing.module.ts - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/app.component.ts - 59 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. + Suchst du nach einer Open Source Alternative zu ? Ghostfolio ist ein leistungsstarkes Portfolio Management Tool, das Privatpersonen eine umfassende Plattform bietet, um ihre Investitionen zu verfolgen, zu analysieren und zu optimieren. Egal, ob du ein erfahrener Investor bist oder gerade erst anfängst, Ghostfolio bietet eine intuitive Benutzeroberfläche und eine Vielzahl an Funktionen, die dir dabei helfen, fundierte Entscheidungen zu treffen und die Kontrolle über deine finanzielle Zukunft zu übernehmen. - apps/client/src/app/components/header/header.component.ts - 75 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/components/header/header.component.ts - 81 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 13 - apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/features/features-page.component.ts - 18 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/resources-page.component.ts - 17 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - - - This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. - Diese Übersichtsseite zeigt eine Auswahl an Tools zur Verwaltung der persönliche Finanzen im Vergleich zur Open Source Alternative Ghostfolio. Wenn du Wert auf Transparenz, Datenschutz und die gemeinschaftliche Zusammenarbeit der Open Source Community legst, bietet dir Ghostfolio eine ausgezeichnete Möglichkeit, die Kontrolle über dein Finanzmanagement zu übernehmen. - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 8,15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - - Explore the links below to compare a variety of personal finance tools with Ghostfolio. - Über die Links unten kannst du eine Reihe an Tools mit Ghostfolio vergleichen. + + Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. + Ghostfolio ist eine Open Source Software (OSS), die eine kostengünstige Alternative zu darstellt und sich besonders für Personen mit knappem Budget eignet, wie z.B. für diejenigen, die finanzielle Unabhängigkeit und einen frühen Ruhestand anstreben (FIRE). Ghostfolio nutzt die gemeinsamen Aktivitäten einer Community von Entwicklern und Finanzenthusiasten, um seine Funktionalität, Sicherheit und Benutzerfreundlichkeit kontinuierlich zu verbessern. - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 16,19 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26 - - - Open Source Alternative to - Open Source Alternative zu - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 35,37 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26 - - - Open Source Alternative to - Open Source Alternative zu - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 25 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26 - - - The Open Source Alternative to - Die Open Source Alternative zu apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 - - - Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. - Suchst du nach einer Open Source Alternative zu ? Ghostfolio ist ein leistungsstarkes Portfolio Management Tool, das Privatpersonen eine umfassende Plattform bietet, um ihre Investitionen zu verfolgen, zu analysieren und zu optimieren. Egal, ob du ein erfahrener Investor bist oder gerade erst anfängst, Ghostfolio bietet eine intuitive Benutzeroberfläche und eine Vielzahl an Funktionen, die dir dabei helfen, fundierte Entscheidungen zu treffen und die Kontrolle über deine finanzielle Zukunft zu übernehmen. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 + + + Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. + Wir möchten uns in der untenstehenden Ghostfolio vs Vergleichstabelle ein detailliertes Bild davon machen, wie Ghostfolio im Vergleich zu positioniert ist. Wir werden dabei verschiedene Aspekte wie Funktionen, Datenschutz, Preise und weiteres untersuchen, damit du eine gut informierte Entscheidung für deine persönlichen Anforderungen treffen kannst. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 - - - Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. - Ghostfolio ist eine Open Source Software (OSS), die eine kostengünstige Alternative zu darstellt und sich besonders für Personen mit knappem Budget eignet, wie z.B. für diejenigen, die finanzielle Unabhängigkeit und einen frühen Ruhestand anstreben (FIRE). Ghostfolio nutzt die gemeinsamen Aktivitäten einer Community von Entwicklern und Finanzenthusiasten, um seine Funktionalität, Sicherheit und Benutzerfreundlichkeit kontinuierlich zu verbessern. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 + + + Starting from / year + Ab / Jahr apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 - - - Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. - Wir möchten uns in der untenstehenden Ghostfolio vs Vergleichstabelle ein detailliertes Bild davon machen, wie Ghostfolio im Vergleich zu positioniert ist. Wir werden dabei verschiedene Aspekte wie Funktionen, Datenschutz, Preise und weiteres untersuchen, damit du eine gut informierte Entscheidung für deine persönlichen Anforderungen treffen kannst. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 + + + Starting from / year + Ab / Jahr apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 - - - Starting from / year - Ab / Jahr apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 - - - Starting from / year - Ab / Jahr apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 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 + + + 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 - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 - - - 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/product-page-template.html + 203 - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 203 - - - 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 - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 + + + 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 - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 - - - 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 - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 + + + Get Started + Jetzt loslegen apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 - - - Get Started - Jetzt loslegen apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 @@ -10444,23 +12040,23 @@ Schweiz apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 54 + 64 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 66 + 86 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 375 + 465 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 398 + 498 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 399 + 499 @@ -10468,15 +12064,15 @@ Weltweit apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 56 + 66 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 217 + 287 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 318 + 408 @@ -10484,35 +12080,67 @@ Vereinigte Staaten von Amerika apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 106 + 77 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 140 + 135 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 150 + 168 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 203 + 178 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 228 + 188 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 230 + 240 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 294 + 262 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 305 + 273 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 298 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 300 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 310 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 375 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 385 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 395 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 476 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 509 @@ -10520,7 +12148,7 @@ Belgien apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 118 + 147 @@ -10528,31 +12156,31 @@ Deutschland apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 95 + 124 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 129 + 158 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 172 + 220 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 182 + 230 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 192 + 251 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 215 + 285 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 250 + 331 @@ -10560,7 +12188,7 @@ Österreich apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 160 + 208 @@ -10568,7 +12196,7 @@ Italien apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 261 + 342 @@ -10576,7 +12204,7 @@ Niederlande apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 271 + 352 @@ -10584,7 +12212,7 @@ Thailand apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 283 + 364 @@ -10592,7 +12220,7 @@ Neuseeland apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 316 + 406 @@ -10600,11 +12228,11 @@ Tschechische Republik apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 327 + 417 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 364 + 454 @@ -10680,7 +12308,7 @@ 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 - 187,188 + 198 @@ -10712,7 +12340,7 @@ Tag hinzufügen apps/client/src/app/components/admin-tag/admin-tag.component.html - 11,13 + 11 @@ -10744,15 +12372,15 @@ Frankreich apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 76 + 105 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 338 + 428 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 354 + 444 @@ -10760,7 +12388,7 @@ 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,101 + 100 @@ -10796,7 +12424,7 @@ Benchmark apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 220 + 219 @@ -10828,7 +12456,7 @@ Nach apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 21 + 29 @@ -10836,7 +12464,7 @@ Transferieren apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 50 + 66 @@ -10844,7 +12472,7 @@ Finnland apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 346 + 436 @@ -10896,7 +12524,7 @@ Anlageprofil apps/client/src/app/components/admin-jobs/admin-jobs.html - 31,33 + 31 @@ -10904,7 +12532,7 @@ Möchtest du dieses Anlageprofil wirklich löschen? apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 182 + 184 @@ -10928,7 +12556,7 @@ Mit dem Finanz-Dashboard Ghostfolio können Sie Ihr Vermögen in Form von Aktien, ETFs oder Kryptowährungen verteilt über mehrere Finanzinstitute überwachen. apps/client/src/app/pages/i18n/i18n-page.html - 4,7 + 4 @@ -10944,7 +12572,7 @@ Benutzer apps/client/src/app/components/admin-users/admin-users.html - 29,31 + 29 @@ -10952,131 +12580,171 @@ Ghostfolio vs Vergleichstabelle apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 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,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 @@ -11084,7 +12752,7 @@ Kanada apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 388 + 488 @@ -11100,7 +12768,7 @@ 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 - 8,11 + 8 @@ -11116,7 +12784,55 @@ Polen apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 86 + 115 + + + + South Africa + Südafrika + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 197 + + + + Extreme Fear + Extreme Angst + + libs/ui/src/lib/i18n.ts + 63 + + + + Extreme Greed + Extreme Gier + + libs/ui/src/lib/i18n.ts + 64 + + + + Neutral + Neutral + + 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/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts + 205 + + + + 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 diff --git a/apps/client/src/locales/messages.es.xlf b/apps/client/src/locales/messages.es.xlf index d06096e93..9f11036e8 100644 --- a/apps/client/src/locales/messages.es.xlf +++ b/apps/client/src/locales/messages.es.xlf @@ -23,7 +23,7 @@ El riesgo de pérdida en trading puede ser importante. No es aconsejable invertir dinero que puedas necesitar a corto plazo. apps/client/src/app/app.component.html - 174,175 + 174 @@ -55,7 +55,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 156 + 164 @@ -99,7 +99,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 111 + 110 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -125,9 +125,13 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html 34 + + apps/client/src/app/components/admin-market-data/admin-market-data.html + 38 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 183 + 182 apps/client/src/app/components/admin-platform/admin-platform.component.html @@ -151,11 +155,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 103 + 114 libs/ui/src/lib/activities-table/activities-table.component.html - 171 + 179 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -171,7 +175,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 151 + 159 @@ -187,43 +191,43 @@ apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 31 + 47 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 157 + 168 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 158 + 169 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 160 + 171 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 213 + 224 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 214 + 225 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 215 + 226 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 216 + 227 libs/ui/src/lib/activities-table/activities-table.component.html - 313 + 321 libs/ui/src/lib/activities-table/activities-table.component.html - 348 + 356 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -235,19 +239,27 @@ Edita apps/client/src/app/components/accounts-table/accounts-table.component.html - 258 + 259 + + + apps/client/src/app/components/admin-market-data/admin-market-data.html + 170 + + + apps/client/src/app/components/admin-overview/admin-overview.html + 86 apps/client/src/app/components/admin-platform/admin-platform.component.html - 90 + 91 apps/client/src/app/components/admin-tag/admin-tag.component.html - 70 + 71 libs/ui/src/lib/activities-table/activities-table.component.html - 490 + 507 @@ -255,23 +267,31 @@ Elimina apps/client/src/app/components/accounts-table/accounts-table.component.html - 266 + 269 apps/client/src/app/components/admin-market-data/admin-market-data.html - 151 + 180 + + + apps/client/src/app/components/admin-overview/admin-overview.html + 99 + + + apps/client/src/app/components/admin-overview/admin-overview.html + 201 apps/client/src/app/components/admin-platform/admin-platform.component.html - 94 + 97 apps/client/src/app/components/admin-tag/admin-tag.component.html - 74 + 77 libs/ui/src/lib/activities-table/activities-table.component.html - 506 + 529 @@ -303,7 +323,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 87 + 86 apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html @@ -319,11 +339,11 @@ apps/client/src/app/components/admin-market-data/admin-market-data.html - 33 + 51 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 119 + 130 @@ -371,7 +391,7 @@ Datos históricos del mercado apps/client/src/app/components/admin-jobs/admin-jobs.html - 37,39 + 37 @@ -415,11 +435,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 125 + 136 libs/ui/src/lib/activities-table/activities-table.component.html - 144 + 152 @@ -443,7 +463,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 261 + 260 apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html @@ -467,11 +487,11 @@ apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 43 + 59 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 351 + 362 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -487,7 +507,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 268 + 267 apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html @@ -511,7 +531,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 358 + 369 @@ -519,11 +539,11 @@ Primera actividad apps/client/src/app/components/admin-market-data/admin-market-data.html - 60 + 78 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 102 + 101 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -547,7 +567,7 @@ Datos históricos apps/client/src/app/components/admin-market-data/admin-market-data.html - 78 + 96 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -559,7 +579,7 @@ Por favor, añade una divisa: apps/client/src/app/components/admin-overview/admin-overview.component.ts - 113 + 119 @@ -567,7 +587,7 @@ ¿Estás seguro de eliminar este cupón? apps/client/src/app/components/admin-overview/admin-overview.component.ts - 127 + 133 @@ -575,7 +595,7 @@ ¿Estás seguro de eliminar esta divisa? apps/client/src/app/components/admin-overview/admin-overview.component.ts - 140 + 146 @@ -583,7 +603,7 @@ ¿Estás seguro de limpiar la caché? apps/client/src/app/components/admin-overview/admin-overview.component.ts - 157 + 169 @@ -591,7 +611,7 @@ Por favor, establece tu mensaje del sistema: apps/client/src/app/components/admin-overview/admin-overview.component.ts - 187 + 200 @@ -615,7 +635,7 @@ Recoger datos recientes apps/client/src/app/components/admin-market-data/admin-market-data.html - 126 + 144 @@ -623,7 +643,7 @@ Recoger todos los datos apps/client/src/app/components/admin-market-data/admin-market-data.html - 129 + 147 @@ -631,7 +651,7 @@ Recoger los datos del perfil apps/client/src/app/components/admin-market-data/admin-market-data.html - 132 + 150 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -651,7 +671,7 @@ Añadir divisa apps/client/src/app/components/admin-overview/admin-overview.html - 76 + 113 @@ -659,7 +679,7 @@ Mensaje del sistema apps/client/src/app/components/admin-overview/admin-overview.html - 104 + 141 @@ -667,7 +687,7 @@ Establecer mensaje apps/client/src/app/components/admin-overview/admin-overview.html - 126 + 164 @@ -675,7 +695,7 @@ Modo de solo lectura apps/client/src/app/components/admin-overview/admin-overview.html - 93 + 130 @@ -683,7 +703,7 @@ Cupones apps/client/src/app/components/admin-overview/admin-overview.html - 134 + 172 @@ -691,7 +711,7 @@ Añadir apps/client/src/app/components/admin-overview/admin-overview.html - 178 + 233 @@ -699,7 +719,7 @@ Tareas domésticas apps/client/src/app/components/admin-overview/admin-overview.html - 185 + 240 @@ -707,7 +727,7 @@ Limpiar caché apps/client/src/app/components/admin-overview/admin-overview.html - 189 + 244 @@ -747,7 +767,7 @@ Última petición apps/client/src/app/components/admin-users/admin-users.html - 169,171 + 169 @@ -985,6 +1005,46 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 183 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + About @@ -1258,7 +1318,7 @@ Comisiones por apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 12,15 + 12 @@ -1266,7 +1326,7 @@ {VAR_PLURAL, plural, =1 {transacción} other {transacciones}} apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 13,14 + 13 @@ -1338,7 +1398,7 @@ Rendimiento anualizado apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 262,264 + 262 @@ -1358,11 +1418,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 155 + 166 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 211 + 222 @@ -1378,7 +1438,7 @@ Sectores apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 159 + 158 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -1394,7 +1454,7 @@ Países apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 169 + 168 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -1414,7 +1474,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 309 + 320 @@ -1636,6 +1696,10 @@ apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.html 181 + + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023/hacktoberfest-2023-debriefing-page.html + 270 + apps/client/src/app/pages/blog/blog-page.html 5 @@ -1734,16 +1798,12 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 379 + 387 Membership Suscripción - - apps/client/src/app/components/user-account-membership/user-account-membership.html - 2 - libs/ui/src/lib/membership-card/membership-card.component.html 18 @@ -1754,7 +1814,7 @@ Mejorar apps/client/src/app/components/user-account-membership/user-account-membership.html - 19 + 18 @@ -1762,7 +1822,7 @@ por año apps/client/src/app/components/user-account-membership/user-account-membership.html - 34 + 33 apps/client/src/app/pages/pricing/pricing-page.html @@ -1774,7 +1834,7 @@ Prueba Premium apps/client/src/app/components/user-account-membership/user-account-membership.html - 43 + 42 @@ -1782,7 +1842,7 @@ Canjea el cupón apps/client/src/app/components/user-account-membership/user-account-membership.html - 56 + 55 @@ -1910,7 +1970,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 92 + 91 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -1918,11 +1978,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 109 + 120 libs/ui/src/lib/activities-table/activities-table.component.html - 201 + 209 @@ -2282,7 +2342,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 91 + 102 @@ -2294,11 +2354,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 142 + 153 libs/ui/src/lib/activities-table/activities-table.component.html - 222 + 230 @@ -2306,15 +2366,15 @@ Precio unitario apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 162 + 173 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 217 + 228 libs/ui/src/lib/activities-table/activities-table.component.html - 251 + 259 @@ -2322,15 +2382,15 @@ Comisión apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 231 + 242 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 256 + 267 libs/ui/src/lib/activities-table/activities-table.component.html - 280 + 288 @@ -2338,7 +2398,7 @@ Nota apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 248 + 247 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -2346,7 +2406,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 265 + 276 @@ -2354,15 +2414,15 @@ Tipo de activo apps/client/src/app/components/admin-market-data/admin-market-data.html - 42 + 60 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 120 + 119 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 189 + 188 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -2370,7 +2430,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 280 + 291 @@ -2442,7 +2502,7 @@ Ghostfolio te permite hacer un seguimiento de tu riqueza. apps/client/src/app/pages/public/public-page.html - 147,149 + 147 @@ -2482,7 +2542,7 @@ Confirmo haber guardado mi Token de seguridad mostrado arriba en un lugar seguro. Si lo pierdo, no podré recuperar mi cuenta. apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html - 31,34 + 31 @@ -2530,7 +2590,7 @@ Borrador libs/ui/src/lib/activities-table/activities-table.component.html - 181 + 189 @@ -2546,11 +2606,11 @@ Exportar operaciones libs/ui/src/lib/activities-table/activities-table.component.html - 44 + 47 libs/ui/src/lib/activities-table/activities-table.component.html - 463 + 476 @@ -2558,11 +2618,11 @@ Exportar borrador como ICS libs/ui/src/lib/activities-table/activities-table.component.html - 54 + 59 libs/ui/src/lib/activities-table/activities-table.component.html - 473 + 488 @@ -2570,7 +2630,7 @@ Clonar libs/ui/src/lib/activities-table/activities-table.component.html - 494 + 513 @@ -2578,7 +2638,7 @@ Exportar borrador como ICS libs/ui/src/lib/activities-table/activities-table.component.html - 502 + 523 @@ -2706,15 +2766,15 @@ Subtipo de activo apps/client/src/app/components/admin-market-data/admin-market-data.html - 51 + 69 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 129 + 128 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 202 + 201 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -2722,7 +2782,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 296 + 307 @@ -2770,7 +2830,7 @@ Sector apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 144 + 143 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -2782,7 +2842,7 @@ País apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 153 + 152 apps/client/src/app/components/admin-users/admin-users.html @@ -2858,7 +2918,7 @@ Número de sectores apps/client/src/app/components/admin-market-data/admin-market-data.html - 87 + 105 @@ -2866,7 +2926,7 @@ Número de países apps/client/src/app/components/admin-market-data/admin-market-data.html - 96 + 114 @@ -2876,6 +2936,10 @@ apps/client/src/app/components/home-market/home-market.component.ts 24 + + libs/ui/src/lib/i18n.ts + 65 + Greed @@ -2884,6 +2948,10 @@ apps/client/src/app/components/home-market/home-market.component.ts 25 + + libs/ui/src/lib/i18n.ts + 66 + Filter by account or tag... @@ -2906,7 +2974,7 @@ Filtrar por... apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 279 + 281 @@ -2922,7 +2990,7 @@ Hola, ha compartido una Cartera contigo! apps/client/src/app/pages/public/public-page.html - 4,7 + 4 @@ -3310,7 +3378,7 @@ Recuento de actividades apps/client/src/app/components/admin-market-data/admin-market-data.html - 69 + 87 @@ -3326,7 +3394,7 @@ Mapeo de símbolos apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 226 + 225 @@ -3362,7 +3430,7 @@ User Signup apps/client/src/app/components/admin-overview/admin-overview.html - 82 + 119 @@ -3378,7 +3446,7 @@ Import apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 80 + 79 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html @@ -3530,7 +3598,7 @@ Protection for sensitive information like absolute performances and quantity values apps/client/src/app/components/user-account-settings/user-account-settings.html - 8,11 + 8 @@ -3538,7 +3606,7 @@ Distraction-free experience for turbulent times apps/client/src/app/components/user-account-settings/user-account-settings.html - 138,140 + 138 @@ -3546,7 +3614,7 @@ Sneak peek at upcoming functionality apps/client/src/app/components/user-account-settings/user-account-settings.html - 173,175 + 173 @@ -3554,7 +3622,7 @@ Are you an ambitious investor who needs the full picture? apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 15,17 + 15 @@ -3646,7 +3714,7 @@ For tech-savvy investors who prefer to run Ghostfolio on their own infrastructure. apps/client/src/app/pages/pricing/pricing-page.html - 36,39 + 36 @@ -3722,7 +3790,7 @@ For new investors who are just getting started with trading. apps/client/src/app/pages/pricing/pricing-page.html - 150,152 + 150 @@ -3742,7 +3810,7 @@ For ambitious investors who need the full picture of their financial assets. apps/client/src/app/pages/pricing/pricing-page.html - 225,228 + 225 @@ -3758,7 +3826,7 @@ Get Started apps/client/src/app/pages/pricing/pricing-page.html - 363,365 + 363 @@ -3882,7 +3950,7 @@ 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 - 247 + 258 @@ -3926,7 +3994,7 @@ Renew apps/client/src/app/components/user-account-membership/user-account-membership.html - 22 + 21 @@ -3942,7 +4010,7 @@ Our official Ghostfolio Premium cloud offering is the easiest way to get started. Due to the time it saves, this will be the best option for most people. Revenue is used to cover the costs of the hosting infrastructure and to fund ongoing development. apps/client/src/app/pages/pricing/pricing-page.html - 6,11 + 6 @@ -3950,7 +4018,7 @@ Impersonate User apps/client/src/app/components/admin-users/admin-users.html - 207 + 208 @@ -3958,7 +4026,7 @@ Delete User apps/client/src/app/components/admin-users/admin-users.html - 215 + 218 @@ -3982,7 +4050,7 @@ Delete all Activities libs/ui/src/lib/activities-table/activities-table.component.html - 62 + 69 @@ -4034,7 +4102,7 @@ Update Cash Balance apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 83 + 94 @@ -4050,7 +4118,7 @@ Upgrade to Ghostfolio Premium today and gain access to exclusive features to enhance your investment experience: apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 18,21 + 18 @@ -4058,7 +4126,7 @@ Get the tools to effectively manage your finances and refine your personal investment strategy. apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 48,51 + 48 @@ -4066,7 +4134,7 @@ Add Platform apps/client/src/app/components/admin-platform/admin-platform.component.html - 11,13 + 11 @@ -4154,7 +4222,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 444 + 453 @@ -4162,11 +4230,11 @@ Import Dividends libs/ui/src/lib/activities-table/activities-table.component.html - 34 + 35 libs/ui/src/lib/activities-table/activities-table.component.html - 453 + 464 @@ -4238,7 +4306,7 @@ Si te jubilas hoy, podrías retirar por año o por mes, calculado sobre el total de activos de y una tasa de disposición del 4%. apps/client/src/app/pages/portfolio/fire/fire-page.html - 57,90 + 57 @@ -4322,7 +4390,7 @@ Import and Export apps/client/src/app/pages/features/features-page.html - 115,117 + 115 @@ -4394,7 +4462,7 @@ Scraper Configuration apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 237 + 236 @@ -4418,7 +4486,7 @@ Discover Open Source Alternatives for Personal Finance Tools apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 4,6 + 4 @@ -4552,6 +4620,46 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 67 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + Origin @@ -4684,6 +4792,46 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 72 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + Region @@ -4816,137 +4964,217 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 77 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + Available in Available in apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 @@ -5080,6 +5308,46 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 104 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 111 @@ -5210,43 +5478,43 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -5336,6 +5604,102 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 125 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 136 @@ -5464,6 +5828,38 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 136 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 150 @@ -5592,6 +5988,78 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 150 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 157 @@ -5850,43 +6318,43 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -5976,73 +6444,133 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 176 - - - ❌ No - ❌ No apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 176 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 176 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 176 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 176 + + + + ❌ No + ❌ No + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -6108,6 +6636,70 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 106 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 129 @@ -6236,6 +6828,82 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 129 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 140 @@ -6494,43 +7162,43 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -6622,67 +7290,83 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 159 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 159 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 159 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -6750,107 +7434,107 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -6876,3565 +7560,4477 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 178 - - - ❌ No - ❌ No apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 - - - Self-Hosting - Self-Hosting apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 178 + + + ❌ No + ❌ No apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 - - - Use anonymously - Use anonymously apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 + + + Self-Hosting + Self-Hosting apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 - - - Free Plan - Free Plan apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 + + + Use anonymously + Use anonymously apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 - - - Notes - Notes apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 - - - 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 - 220,223 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 145 + + + Free Plan + Free Plan apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 - - - Personal Finance Tools - Personal Finance Tools apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 + + + Notes + Notes apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 - - - Guides - Guides - apps/client/src/app/pages/resources/resources-page.html - 5 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Glossary - Glossary - apps/client/src/app/pages/resources/resources-page.html - 75 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Stocks, ETFs, bonds, cryptocurrencies, commodities - Stocks, ETFs, bonds, cryptocurrencies, commodities - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 21 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 51 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Mortgages, personal loans, credit cards - Mortgages, personal loans, credit cards - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 45 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Luxury items, real estate, private companies - Luxury items, real estate, private companies - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 57 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Buy - Buy - libs/ui/src/lib/i18n.ts - 30 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Valuable - Valuable - libs/ui/src/lib/i18n.ts - 34 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - ETFs without Countries - ETFs without Countries - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 70 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - ETFs without Sectors - ETFs without Sectors - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 75 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Assets - Assets - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Preset - Preset - libs/ui/src/lib/i18n.ts - 21 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - By Market - By Market - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 177 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Asia-Pacific - Asia-Pacific - libs/ui/src/lib/i18n.ts - 5 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Japan - Japan - libs/ui/src/lib/i18n.ts - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Welcome to Ghostfolio - Welcome to Ghostfolio - apps/client/src/app/components/home-overview/home-overview.html - 9 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Setup your accounts - Setup your accounts - apps/client/src/app/components/home-overview/home-overview.html - 17 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Get a comprehensive financial overview by adding your bank and brokerage accounts. - Get a comprehensive financial overview by adding your bank and brokerage accounts. - apps/client/src/app/components/home-overview/home-overview.html - 19,20 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Capture your activities - Capture your activities - apps/client/src/app/components/home-overview/home-overview.html - 26 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Record your investment activities to keep your portfolio up to date. - Record your investment activities to keep your portfolio up to date. - apps/client/src/app/components/home-overview/home-overview.html - 28,29 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Monitor and analyze your portfolio - Monitor and analyze your portfolio - apps/client/src/app/components/home-overview/home-overview.html - 35 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Track your progress in real-time with comprehensive analysis and insights. - Track your progress in real-time with comprehensive analysis and insights. - apps/client/src/app/components/home-overview/home-overview.html - 37,38 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - No data available - No data available + + Effortlessly track, analyze, and visualize your wealth with Ghostfolio. + Effortlessly track, analyze, and visualize your wealth with Ghostfolio. - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 254 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 - apps/client/src/app/pages/public/public-page.html - 123 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 - - - Ready to take control of your personal finances? - Ready to take control of your personal finances? - apps/client/src/app/components/home-overview/home-overview.html - 10 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 - + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + + Personal Finance Tools + Personal Finance Tools + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + + Guides + Guides + + apps/client/src/app/pages/resources/resources-page.html + 5 + + + + Glossary + Glossary + + apps/client/src/app/pages/resources/resources-page.html + 75 + + + + Stocks, ETFs, bonds, cryptocurrencies, commodities + Stocks, ETFs, bonds, cryptocurrencies, commodities + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 21 + + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 51 + + + + Mortgages, personal loans, credit cards + Mortgages, personal loans, credit cards + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 45 + + + + Luxury items, real estate, private companies + Luxury items, real estate, private companies + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 57 + + + + Buy + Buy + + libs/ui/src/lib/i18n.ts + 30 + + + + Valuable + Valuable + + libs/ui/src/lib/i18n.ts + 34 + + + + ETFs without Countries + ETFs without Countries + + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 71 + + + + ETFs without Sectors + ETFs without Sectors + + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 76 + + + + Assets + Assets + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 190 + + + + Preset + Preset + + libs/ui/src/lib/i18n.ts + 21 + + + + By Market + By Market + + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 177 + + + + Asia-Pacific + Asia-Pacific + + libs/ui/src/lib/i18n.ts + 5 + + + + Japan + Japan + + libs/ui/src/lib/i18n.ts + 16 + + + + Welcome to Ghostfolio + Welcome to Ghostfolio + + apps/client/src/app/components/home-overview/home-overview.html + 9 + + + + Setup your accounts + Setup your accounts + + apps/client/src/app/components/home-overview/home-overview.html + 17 + + + + Get a comprehensive financial overview by adding your bank and brokerage accounts. + Get a comprehensive financial overview by adding your bank and brokerage accounts. + + apps/client/src/app/components/home-overview/home-overview.html + 19 + + + + Capture your activities + Capture your activities + + apps/client/src/app/components/home-overview/home-overview.html + 26 + + + + Record your investment activities to keep your portfolio up to date. + Record your investment activities to keep your portfolio up to date. + + apps/client/src/app/components/home-overview/home-overview.html + 28 + + + + Monitor and analyze your portfolio + Monitor and analyze your portfolio + + apps/client/src/app/components/home-overview/home-overview.html + 35 + + + + Track your progress in real-time with comprehensive analysis and insights. + Track your progress in real-time with comprehensive analysis and insights. + + apps/client/src/app/components/home-overview/home-overview.html + 37 + + + + No data available + No data available + + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 254 + + + apps/client/src/app/pages/public/public-page.html + 123 + + + + Ready to take control of your personal finances? + Ready to take control of your personal finances? + + apps/client/src/app/components/home-overview/home-overview.html + 10 + + Setup accounts Setup accounts - apps/client/src/app/components/home-overview/home-overview.html - 50 + apps/client/src/app/components/home-overview/home-overview.html + 50 + + + + Biometric Authentication + Biometric Authentication + + apps/client/src/app/components/user-account-settings/user-account-settings.html + 154 + + + + At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. + At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. + + apps/client/src/app/pages/open/open-page.html + 6 + + + + Active Users + Active Users + + apps/client/src/app/pages/open/open-page.html + 40 + + + apps/client/src/app/pages/open/open-page.html + 62 + + + + New Users + New Users + + apps/client/src/app/pages/open/open-page.html + 51 + + + + Users in Slack community + Users in Slack community + + apps/client/src/app/pages/open/open-page.html + 75 + + + + Contributors on GitHub + Contributors on GitHub + + apps/client/src/app/pages/open/open-page.html + 89 + + + + Stars on GitHub + Stars on GitHub + + apps/client/src/app/pages/landing/landing-page.html + 93 + + + apps/client/src/app/pages/open/open-page.html + 103 + + + + Pulls on Docker Hub + Pulls on Docker Hub + + apps/client/src/app/pages/landing/landing-page.html + 111 + + + apps/client/src/app/pages/open/open-page.html + 117 + + + + Uptime + Uptime + + apps/client/src/app/pages/open/open-page.html + 132 + + + + Export Data + Export Data + + apps/client/src/app/components/user-account-settings/user-account-settings.html + 195 + + + + Currencies + Currencies + + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 66 + + + + Our + Our + + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 6 + + + + Visit + Visit + + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 28 + + + + Discover other exciting Open Source Software projects + Discover other exciting Open Source Software projects + + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 9 + + + + Frequently Asked Questions (FAQ) + Frequently Asked Questions (FAQ) + + apps/client/src/app/pages/faq/faq-page.html + 4 + + + + Check out the numerous features of Ghostfolio to manage your wealth + Check out the numerous features of Ghostfolio to manage your wealth + + apps/client/src/app/pages/features/features-page.html + 6 + + + + Discover the latest Ghostfolio updates and insights on personal finance + Discover the latest Ghostfolio updates and insights on personal finance + + apps/client/src/app/pages/blog/blog-page.html + 7 + + + + If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. + If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. + + apps/client/src/app/pages/pricing/pricing-page.html + 24 + + + + Manage your wealth like a boss + Manage your wealth like a boss + + apps/client/src/app/pages/landing/landing-page.html + 11 + + + + Ghostfolio is a privacy-first, open source dashboard for your personal finances. Break down your asset allocation, know your net worth and make solid, data-driven investment decisions. + Ghostfolio is a privacy-first, open source dashboard for your personal finances. Break down your asset allocation, know your net worth and make solid, data-driven investment decisions. + + apps/client/src/app/pages/landing/landing-page.html + 15 + + + + Get Started + Get Started + + apps/client/src/app/pages/landing/landing-page.html + 47 + + + apps/client/src/app/pages/landing/landing-page.html + 431 + + + + or + or + + apps/client/src/app/pages/landing/landing-page.html + 52 + + + + Monthly Active Users + Monthly Active Users + + apps/client/src/app/pages/landing/landing-page.html + 75 + + + + As seen in + As seen in + + apps/client/src/app/pages/landing/landing-page.html + 119 + + + + Protect your assets. Refine your personal investment strategy. + Protect your assets. Refine your personal investment strategy. + + apps/client/src/app/pages/landing/landing-page.html + 221 + + + + Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. + Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. + + apps/client/src/app/pages/landing/landing-page.html + 225 + + + + 360° View + 360° View + + apps/client/src/app/pages/landing/landing-page.html + 236 + + + + Web3 Ready + Web3 Ready + + apps/client/src/app/pages/landing/landing-page.html + 247 + + + + Use Ghostfolio anonymously and own your financial data. + Use Ghostfolio anonymously and own your financial data. + + apps/client/src/app/pages/landing/landing-page.html + 249 + + + + Open Source + Open Source + + apps/client/src/app/pages/landing/landing-page.html + 257 + + + + Benefit from continuous improvements through a strong community. + Benefit from continuous improvements through a strong community. + + apps/client/src/app/pages/landing/landing-page.html + 259 + + + + Why Ghostfolio? + Why Ghostfolio? + + apps/client/src/app/pages/landing/landing-page.html + 268 + + + + Ghostfolio is for you if you are... + Ghostfolio is for you if you are... + + apps/client/src/app/pages/landing/landing-page.html + 269 + + + + trading stocks, ETFs or cryptocurrencies on multiple platforms + trading stocks, ETFs or cryptocurrencies on multiple platforms + + apps/client/src/app/pages/landing/landing-page.html + 276 + + + + pursuing a buy & hold strategy + pursuing a buy & hold strategy + + apps/client/src/app/pages/landing/landing-page.html + 282 + + + + interested in getting insights of your portfolio composition + interested in getting insights of your portfolio composition + + apps/client/src/app/pages/landing/landing-page.html + 287 + + + + valuing privacy and data ownership + valuing privacy and data ownership + + apps/client/src/app/pages/landing/landing-page.html + 292 + + + + into minimalism + into minimalism + + apps/client/src/app/pages/landing/landing-page.html + 295 + + + + caring about diversifying your financial resources + caring about diversifying your financial resources + + apps/client/src/app/pages/landing/landing-page.html + 299 + + + + interested in financial independence + interested in financial independence + + apps/client/src/app/pages/landing/landing-page.html + 303 + + + + saying no to spreadsheets in + saying no to spreadsheets in + + apps/client/src/app/pages/landing/landing-page.html + 307 + + + + still reading this list + still reading this list + + apps/client/src/app/pages/landing/landing-page.html + 310 + + + + Learn more about Ghostfolio + Learn more about Ghostfolio + + apps/client/src/app/pages/landing/landing-page.html + 315 + + + + What our users are saying + What our users are saying + + apps/client/src/app/pages/landing/landing-page.html + 323 + + + + Members from around the globe are using Ghostfolio Premium + Members from around the globe are using Ghostfolio Premium + + apps/client/src/app/pages/landing/landing-page.html + 358 + + + + How does Ghostfolio work? + How does Ghostfolio work? + + apps/client/src/app/pages/landing/landing-page.html + 373 + + + + Sign up anonymously* + Sign up anonymously* + + apps/client/src/app/pages/landing/landing-page.html + 382 + + + + * no e-mail address nor credit card required + * no e-mail address nor credit card required + + apps/client/src/app/pages/landing/landing-page.html + 384 + + + + Add any of your historical transactions + Add any of your historical transactions + + apps/client/src/app/pages/landing/landing-page.html + 395 + + + + Get valuable insights of your portfolio composition + Get valuable insights of your portfolio composition + + apps/client/src/app/pages/landing/landing-page.html + 407 + + + + Are you ready? + Are you ready? + + apps/client/src/app/pages/landing/landing-page.html + 419 + + + + Join now or check out the example account + Join now or check out the example account + + apps/client/src/app/pages/landing/landing-page.html + 420 + + + + Live Demo + Live Demo + + apps/client/src/app/pages/landing/landing-page.html + 55 + + + apps/client/src/app/pages/landing/landing-page.html + 436 + + + + Get the full picture of your personal finances across multiple platforms. + Get the full picture of your personal finances across multiple platforms. + + apps/client/src/app/pages/landing/landing-page.html + 238 + + + + Get started in only 3 steps + Get started in only 3 steps + + apps/client/src/app/pages/landing/landing-page.html + 376 + + + + faq + preguntas-mas-frecuentes + + apps/client/src/app/app-routing.module.ts + 9 + + + apps/client/src/app/app.component.ts + 54 + + + apps/client/src/app/pages/about/overview/about-overview-page.component.ts + 19 + + + + features + funcionalidades + + apps/client/src/app/app-routing.module.ts + 10 + + + apps/client/src/app/app.component.ts + 55 + + + apps/client/src/app/components/header/header.component.ts + 72 + + + apps/client/src/app/components/header/header.component.ts + 77 + + + apps/client/src/app/pages/about/overview/about-overview-page.component.ts + 20 + + + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 14 + + + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 15 + + + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023/hacktoberfest-2023-debriefing-page.component.ts + 14 + + + apps/client/src/app/pages/faq/faq-page.component.ts + 13 + + + apps/client/src/app/pages/pricing/pricing-page.component.ts + 34 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts + 26 - - - Biometric Authentication - Biometric Authentication - apps/client/src/app/components/user-account-settings/user-account-settings.html - 154 + apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts + 26 - - - At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. - At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. - apps/client/src/app/pages/open/open-page.html - 6,22 + apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts + 26 - - - Active Users - Active Users - apps/client/src/app/pages/open/open-page.html - 40 + apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts + 26 - apps/client/src/app/pages/open/open-page.html - 62 + apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts + 26 - - - New Users - New Users - apps/client/src/app/pages/open/open-page.html - 51 + apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts + 26 - - - Users in Slack community - Users in Slack community - apps/client/src/app/pages/open/open-page.html - 75 + apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts + 26 - - - Contributors on GitHub - Contributors on GitHub - apps/client/src/app/pages/open/open-page.html - 89 + apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts + 26 - - - Stars on GitHub - Stars on GitHub - apps/client/src/app/pages/landing/landing-page.html - 93 + apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts + 26 - apps/client/src/app/pages/open/open-page.html - 103 + apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts + 26 - - - Pulls on Docker Hub - Pulls on Docker Hub - apps/client/src/app/pages/landing/landing-page.html - 111 + apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts + 26 - apps/client/src/app/pages/open/open-page.html - 117 + apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts + 26 - - - Uptime - Uptime - apps/client/src/app/pages/open/open-page.html - 132 + apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts + 26 - - - Export Data - Export Data - apps/client/src/app/components/user-account-settings/user-account-settings.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts + 26 - - - Currencies - Currencies - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 65 + apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts + 26 - - - Our - Our - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 6 + apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts + 26 - - - Visit - Visit - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 28 + apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts + 26 - - - Discover other exciting Open Source Software projects - Discover other exciting Open Source Software projects - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 9 + apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts + 26 - - - Frequently Asked Questions (FAQ) - Frequently Asked Questions (FAQ) - apps/client/src/app/pages/faq/faq-page.html - 4,6 + apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts + 26 - - - Check out the numerous features of Ghostfolio to manage your wealth - Check out the numerous features of Ghostfolio to manage your wealth - apps/client/src/app/pages/features/features-page.html - 6,8 + apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts + 26 - - - Discover the latest Ghostfolio updates and insights on personal finance - Discover the latest Ghostfolio updates and insights on personal finance - apps/client/src/app/pages/blog/blog-page.html - 7,8 + apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts + 26 - - - If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. - If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. - apps/client/src/app/pages/pricing/pricing-page.html - 24,28 + apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts + 26 - - - Manage your wealth like a boss - Manage your wealth like a boss - apps/client/src/app/pages/landing/landing-page.html - 11,13 + apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts + 26 - - - Ghostfolio is a privacy-first, open source dashboard for your personal finances. Break down your asset allocation, know your net worth and make solid, data-driven investment decisions. - Ghostfolio is a privacy-first, open source dashboard for your personal finances. Break down your asset allocation, know your net worth and make solid, data-driven investment decisions. - apps/client/src/app/pages/landing/landing-page.html - 15,19 + apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts + 26 - - - Get Started - Get Started - apps/client/src/app/pages/landing/landing-page.html - 47,49 + apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts + 26 - apps/client/src/app/pages/landing/landing-page.html - 431,433 + apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts + 26 - - - or - or - apps/client/src/app/pages/landing/landing-page.html - 52,54 + apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts + 26 - - - Monthly Active Users - Monthly Active Users - apps/client/src/app/pages/landing/landing-page.html - 75 + apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts + 26 - - - As seen in - As seen in - apps/client/src/app/pages/landing/landing-page.html - 119 + apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts + 26 - - - Protect your assets. Refine your personal investment strategy. - Protect your assets. Refine your personal investment strategy. - apps/client/src/app/pages/landing/landing-page.html - 221,224 + apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts + 26 - - Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. - Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. + + about + sobre + + apps/client/src/app/app-routing.module.ts + 8 + + + apps/client/src/app/app.component.ts + 47 + + + apps/client/src/app/app.component.ts + 48 + + + apps/client/src/app/app.component.ts + 49 + + + apps/client/src/app/app.component.ts + 51 + + + apps/client/src/app/components/header/header.component.ts + 71 + + + apps/client/src/app/components/header/header.component.ts + 76 + + + apps/client/src/app/pages/about/about-page.component.ts + 44 + + + apps/client/src/app/pages/about/about-page.component.ts + 49 + + + apps/client/src/app/pages/about/about-page.component.ts + 54 + + + apps/client/src/app/pages/about/about-page.component.ts + 62 + + + apps/client/src/app/pages/about/about-page.component.ts + 73 + - apps/client/src/app/pages/landing/landing-page.html - 225,228 + apps/client/src/app/pages/blog/2023/08/ghostfolio-joins-oss-friends/ghostfolio-joins-oss-friends-page.component.ts + 13 - - - 360° View - 360° View - apps/client/src/app/pages/landing/landing-page.html - 236 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 13 - - - Web3 Ready - Web3 Ready - apps/client/src/app/pages/landing/landing-page.html - 247 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 14 - - - Use Ghostfolio anonymously and own your financial data. - Use Ghostfolio anonymously and own your financial data. - apps/client/src/app/pages/landing/landing-page.html - 249,251 + apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.component.ts + 13 - - - Open Source - Open Source - apps/client/src/app/pages/landing/landing-page.html - 257 + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023/hacktoberfest-2023-debriefing-page.component.ts + 13 - - - Benefit from continuous improvements through a strong community. - Benefit from continuous improvements through a strong community. - apps/client/src/app/pages/landing/landing-page.html - 259,261 + apps/client/src/app/pages/landing/landing-page.component.ts + 25 - - - Why Ghostfolio? - Why Ghostfolio? - apps/client/src/app/pages/landing/landing-page.html - 268 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 22 - - - Ghostfolio is for you if you are... - Ghostfolio is for you if you are... - apps/client/src/app/pages/landing/landing-page.html - 269,271 + apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts + 25 - - - trading stocks, ETFs or cryptocurrencies on multiple platforms - trading stocks, ETFs or cryptocurrencies on multiple platforms - apps/client/src/app/pages/landing/landing-page.html - 276,277 + apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts + 25 - - - pursuing a buy & hold strategy - pursuing a buy & hold strategy - apps/client/src/app/pages/landing/landing-page.html - 282 + apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts + 25 - - - interested in getting insights of your portfolio composition - interested in getting insights of your portfolio composition - apps/client/src/app/pages/landing/landing-page.html - 287 + apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts + 25 - - - valuing privacy and data ownership - valuing privacy and data ownership - apps/client/src/app/pages/landing/landing-page.html - 292 + apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts + 25 - - - into minimalism - into minimalism - apps/client/src/app/pages/landing/landing-page.html - 295 + apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts + 25 - - - caring about diversifying your financial resources - caring about diversifying your financial resources - apps/client/src/app/pages/landing/landing-page.html - 299 + apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts + 25 - - - interested in financial independence - interested in financial independence - apps/client/src/app/pages/landing/landing-page.html - 303 + apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts + 25 - - - saying no to spreadsheets in - saying no to spreadsheets in - apps/client/src/app/pages/landing/landing-page.html - 307 + apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts + 25 - - - still reading this list - still reading this list - apps/client/src/app/pages/landing/landing-page.html - 310 + apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts + 25 - - - Learn more about Ghostfolio - Learn more about Ghostfolio - apps/client/src/app/pages/landing/landing-page.html - 315 + apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts + 25 - - - What our users are saying - What our users are saying - apps/client/src/app/pages/landing/landing-page.html - 323,325 + apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts + 25 - - - Members from around the globe are using Ghostfolio Premium - Members from around the globe are using Ghostfolio Premium - apps/client/src/app/pages/landing/landing-page.html - 358,360 + apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts + 25 - - - How does Ghostfolio work? - How does Ghostfolio work? - apps/client/src/app/pages/landing/landing-page.html - 373,375 + apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts + 25 - - - Sign up anonymously* - Sign up anonymously* - apps/client/src/app/pages/landing/landing-page.html - 382 + apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts + 25 - - - * no e-mail address nor credit card required - * no e-mail address nor credit card required - apps/client/src/app/pages/landing/landing-page.html - 384 + apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts + 25 - - - Add any of your historical transactions - Add any of your historical transactions - apps/client/src/app/pages/landing/landing-page.html - 395,397 + apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts + 25 - - - Get valuable insights of your portfolio composition - Get valuable insights of your portfolio composition - apps/client/src/app/pages/landing/landing-page.html - 407,409 + apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts + 25 - - - Are you ready? - Are you ready? - apps/client/src/app/pages/landing/landing-page.html - 419 + apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts + 25 - - - Join now or check out the example account - Join now or check out the example account - apps/client/src/app/pages/landing/landing-page.html - 420,423 + apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts + 25 - - - Live Demo - Live Demo - apps/client/src/app/pages/landing/landing-page.html - 55 + apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts + 25 - apps/client/src/app/pages/landing/landing-page.html - 436 + apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts + 25 - - - Get the full picture of your personal finances across multiple platforms. - Get the full picture of your personal finances across multiple platforms. - apps/client/src/app/pages/landing/landing-page.html - 238,241 + apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts + 25 - - - Get started in only 3 steps - Get started in only 3 steps - apps/client/src/app/pages/landing/landing-page.html - 376 + apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts + 25 - - - faq - preguntas-mas-frecuentes - apps/client/src/app/app-routing.module.ts - 9 + apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts + 25 - apps/client/src/app/app.component.ts - 54 + apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts + 25 - apps/client/src/app/pages/about/overview/about-overview-page.component.ts - 19 + apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts + 25 - - - features - funcionalidades - apps/client/src/app/app-routing.module.ts - 10 + apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts + 25 - apps/client/src/app/app.component.ts - 55 + apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts + 25 - apps/client/src/app/components/header/header.component.ts - 72 + apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts + 25 - apps/client/src/app/components/header/header.component.ts - 77 + apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts + 25 - apps/client/src/app/pages/about/overview/about-overview-page.component.ts - 20 + apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts + 25 - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts + 25 - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts + 25 - apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts + 25 - apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts + 25 - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 15 + apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts + 25 - apps/client/src/app/pages/faq/faq-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts + 25 - apps/client/src/app/pages/pricing/pricing-page.component.ts - 34 + apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts + 25 - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts + 25 - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts + 25 - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts + 25 + + + privacy-policy + politica-de-privacidad - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 26 + apps/client/src/app/app-routing.module.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 26 + apps/client/src/app/app.component.ts + 52 - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 26 + apps/client/src/app/pages/about/about-page.component.ts + 62 + + + license + licencia - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 26 + apps/client/src/app/app-routing.module.ts + 11 - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 26 + apps/client/src/app/app.component.ts + 49 - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 26 + apps/client/src/app/pages/about/about-page.component.ts + 54 + + + markets + mercados - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 26 + apps/client/src/app/app-routing.module.ts + 12 - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 26 + apps/client/src/app/app.component.ts + 56 - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 73 - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 78 - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 26 + apps/client/src/app/pages/faq/faq-page.component.ts + 14 + + + pricing + precios - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 26 + apps/client/src/app/app-routing.module.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 26 + apps/client/src/app/app.component.ts + 57 - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 74 - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 79 - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 26 + apps/client/src/app/components/home-summary/home-summary.component.ts + 124 - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 26 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 26 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 37 - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 26 + apps/client/src/app/core/http-response.interceptor.ts + 80 - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 26 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 26 + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 26 + apps/client/src/app/pages/faq/faq-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 26 + libs/ui/src/lib/membership-card/membership-card.component.ts + 13 - - about - sobre + + register + registro apps/client/src/app/app-routing.module.ts - 8 + 15 apps/client/src/app/app.component.ts - 47 + 58 - apps/client/src/app/app.component.ts - 48 + apps/client/src/app/components/header/header.component.ts + 80 - apps/client/src/app/app.component.ts - 49 + apps/client/src/app/core/auth.guard.ts + 53 - apps/client/src/app/app.component.ts - 51 + apps/client/src/app/pages/faq/faq-page.component.ts + 16 - apps/client/src/app/components/header/header.component.ts - 71 + apps/client/src/app/pages/features/features-page.component.ts + 17 - apps/client/src/app/components/header/header.component.ts - 76 + apps/client/src/app/pages/landing/landing-page.component.ts + 26 - apps/client/src/app/pages/about/about-page.component.ts - 44 + apps/client/src/app/pages/pricing/pricing-page.component.ts + 35 + + + resources + recursos - apps/client/src/app/pages/about/about-page.component.ts - 49 + apps/client/src/app/app-routing.module.ts + 16 - apps/client/src/app/pages/about/about-page.component.ts - 54 + apps/client/src/app/app.component.ts + 59 - apps/client/src/app/pages/about/about-page.component.ts - 62 + apps/client/src/app/components/header/header.component.ts + 75 - apps/client/src/app/pages/about/about-page.component.ts - 73 + apps/client/src/app/components/header/header.component.ts + 81 - apps/client/src/app/pages/blog/2023/08/ghostfolio-joins-oss-friends/ghostfolio-joins-oss-friends-page.component.ts - 13 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 14 - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 14 + + + apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts 13 - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts 14 - apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.component.ts - 13 + apps/client/src/app/pages/features/features-page.component.ts + 18 - apps/client/src/app/pages/landing/landing-page.component.ts - 25 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 18 + apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 25 + 28 - - - privacy-policy - politica-de-privacidad - apps/client/src/app/app-routing.module.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts + 28 - apps/client/src/app/app.component.ts - 52 + apps/client/src/app/pages/resources/resources-page.component.ts + 17 + + + This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. + This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. - apps/client/src/app/pages/about/about-page.component.ts - 62 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 8 - - license - licencia + + Explore the links below to compare a variety of personal finance tools with Ghostfolio. + Explore the links below to compare a variety of personal finance tools with Ghostfolio. - apps/client/src/app/app-routing.module.ts - 11 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 16 + + + Open Source Alternative to + Open Source Alternative to - apps/client/src/app/app.component.ts - 49 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 35 + + + Open Source Alternative to + Open Source Alternative to - apps/client/src/app/pages/about/about-page.component.ts - 54 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 25 - - markets - mercados + + The Open Source Alternative to + The Open Source Alternative to - apps/client/src/app/app-routing.module.ts - 12 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/app.component.ts - 56 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/header/header.component.ts - 73 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/header/header.component.ts - 78 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/faq/faq-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - - - pricing - precios - apps/client/src/app/app-routing.module.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/app.component.ts - 57 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/header/header.component.ts - 74 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/header/header.component.ts - 79 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/home-summary/home-summary.component.ts - 124 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 37 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/core/http-response.interceptor.ts - 80 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts - 15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/faq/faq-page.component.ts - 15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - libs/ui/src/lib/membership-card/membership-card.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - - - register - registro - apps/client/src/app/app-routing.module.ts - 15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/app.component.ts - 58 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/header/header.component.ts - 80 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/core/auth.guard.ts - 53 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/faq/faq-page.component.ts - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/features/features-page.component.ts - 17 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/landing/landing-page.component.ts - 26 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/pricing/pricing-page.component.ts - 35 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - - - resources - recursos - apps/client/src/app/app-routing.module.ts - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/app.component.ts - 59 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. + Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. - apps/client/src/app/components/header/header.component.ts - 75 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/components/header/header.component.ts - 81 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 13 - apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/features/features-page.component.ts - 18 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/resources-page.component.ts - 17 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - - - This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. - This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 8,15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - - Explore the links below to compare a variety of personal finance tools with Ghostfolio. - Explore the links below to compare a variety of personal finance tools with Ghostfolio. + + Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. + Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 16,19 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26 - - - Open Source Alternative to - Open Source Alternative to - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 35,37 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26 - - - Open Source Alternative to - Open Source Alternative to - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 25 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26 - - - The Open Source Alternative to - The Open Source Alternative to apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 - - - Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. - Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 + + + Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. + Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 - - - Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. - Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 + + + Starting from / year + Starting from / year apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 - - - Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. - Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 + + + Starting from / year + Starting from / year apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 - - - Starting from / year - Starting from / year apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 - - - Starting from / year - Starting from / year apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 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 + + + 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,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 - - - 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/product-page-template.html + 203 - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 203 - - - 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 - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 + + + 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 - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 - - - 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 - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 + + + Get Started + Get Started apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 - - - Get Started - Get Started apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 @@ -10442,23 +12038,23 @@ Switzerland apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 54 + 64 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 66 + 86 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 375 + 465 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 398 + 498 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 399 + 499 @@ -10466,15 +12062,15 @@ Global apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 56 + 66 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 217 + 287 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 318 + 408 @@ -10482,35 +12078,67 @@ United States apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 106 + 77 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 140 + 135 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 150 + 168 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 203 + 178 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 228 + 188 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 230 + 240 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 294 + 262 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 305 + 273 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 298 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 300 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 310 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 375 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 385 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 395 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 476 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 509 @@ -10518,7 +12146,7 @@ Belgium apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 118 + 147 @@ -10526,31 +12154,31 @@ Germany apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 95 + 124 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 129 + 158 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 172 + 220 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 182 + 230 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 192 + 251 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 215 + 285 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 250 + 331 @@ -10558,7 +12186,7 @@ Austria apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 160 + 208 @@ -10566,7 +12194,7 @@ Italy apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 261 + 342 @@ -10574,7 +12202,7 @@ Netherlands apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 271 + 352 @@ -10582,7 +12210,7 @@ Thailand apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 283 + 364 @@ -10590,7 +12218,7 @@ New Zealand apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 316 + 406 @@ -10598,11 +12226,11 @@ Czech Republic apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 327 + 417 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 364 + 454 @@ -10678,7 +12306,7 @@ 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 - 187,188 + 198 @@ -10710,7 +12338,7 @@ Add Tag apps/client/src/app/components/admin-tag/admin-tag.component.html - 11,13 + 11 @@ -10742,15 +12370,15 @@ France apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 76 + 105 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 338 + 428 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 354 + 444 @@ -10758,7 +12386,7 @@ 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,101 + 100 @@ -10794,7 +12422,7 @@ Benchmark apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 220 + 219 @@ -10826,7 +12454,7 @@ To apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 21 + 29 @@ -10834,7 +12462,7 @@ Transfer apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 50 + 66 @@ -10842,7 +12470,7 @@ Finland apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 346 + 436 @@ -10894,7 +12522,7 @@ Asset Profile apps/client/src/app/components/admin-jobs/admin-jobs.html - 31,33 + 31 @@ -10902,7 +12530,7 @@ Do you really want to delete this asset profile? apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 182 + 184 @@ -10926,7 +12554,7 @@ 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,7 + 4 @@ -10942,7 +12570,7 @@ User apps/client/src/app/components/admin-users/admin-users.html - 29,31 + 29 @@ -10950,131 +12578,171 @@ Ghostfolio vs comparison table apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 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,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 @@ -11082,7 +12750,7 @@ Canada apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 388 + 488 @@ -11098,7 +12766,7 @@ app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 apps/client/src/app/pages/i18n/i18n-page.html - 8,11 + 8 @@ -11114,7 +12782,55 @@ Poland apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 86 + 115 + + + + South Africa + South Africa + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 197 + + + + Extreme Fear + Extreme Fear + + libs/ui/src/lib/i18n.ts + 63 + + + + Extreme Greed + Extreme Greed + + libs/ui/src/lib/i18n.ts + 64 + + + + Neutral + Neutral + + libs/ui/src/lib/i18n.ts + 67 + + + + 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 + + + + 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 diff --git a/apps/client/src/locales/messages.fr.xlf b/apps/client/src/locales/messages.fr.xlf index d19d32105..fa40e277b 100644 --- a/apps/client/src/locales/messages.fr.xlf +++ b/apps/client/src/locales/messages.fr.xlf @@ -6,7 +6,7 @@ Le risque de perte en investissant peut être important. Il est déconseillé d'investir de l'argent dont vous pourriez avoir besoin à court terme. apps/client/src/app/app.component.html - 174,175 + 174 @@ -50,7 +50,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 156 + 164 @@ -110,7 +110,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 111 + 110 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -136,9 +136,13 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html 34 + + apps/client/src/app/components/admin-market-data/admin-market-data.html + 38 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 183 + 182 apps/client/src/app/components/admin-platform/admin-platform.component.html @@ -162,11 +166,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 103 + 114 libs/ui/src/lib/activities-table/activities-table.component.html - 171 + 179 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -182,7 +186,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 151 + 159 @@ -194,7 +198,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 92 + 91 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -202,11 +206,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 109 + 120 libs/ui/src/lib/activities-table/activities-table.component.html - 201 + 209 @@ -238,43 +242,43 @@ apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 31 + 47 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 157 + 168 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 158 + 169 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 160 + 171 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 213 + 224 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 214 + 225 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 215 + 226 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 216 + 227 libs/ui/src/lib/activities-table/activities-table.component.html - 313 + 321 libs/ui/src/lib/activities-table/activities-table.component.html - 348 + 356 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -286,19 +290,27 @@ Modifier apps/client/src/app/components/accounts-table/accounts-table.component.html - 258 + 259 + + + apps/client/src/app/components/admin-market-data/admin-market-data.html + 170 + + + apps/client/src/app/components/admin-overview/admin-overview.html + 86 apps/client/src/app/components/admin-platform/admin-platform.component.html - 90 + 91 apps/client/src/app/components/admin-tag/admin-tag.component.html - 70 + 71 libs/ui/src/lib/activities-table/activities-table.component.html - 490 + 507 @@ -306,23 +318,31 @@ Supprimer apps/client/src/app/components/accounts-table/accounts-table.component.html - 266 + 269 apps/client/src/app/components/admin-market-data/admin-market-data.html - 151 + 180 + + + apps/client/src/app/components/admin-overview/admin-overview.html + 99 + + + apps/client/src/app/components/admin-overview/admin-overview.html + 201 apps/client/src/app/components/admin-platform/admin-platform.component.html - 94 + 97 apps/client/src/app/components/admin-tag/admin-tag.component.html - 74 + 77 libs/ui/src/lib/activities-table/activities-table.component.html - 506 + 529 @@ -346,7 +366,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 87 + 86 apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html @@ -362,11 +382,11 @@ apps/client/src/app/components/admin-market-data/admin-market-data.html - 33 + 51 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 119 + 130 @@ -422,7 +442,7 @@ Données de Marché Historiques apps/client/src/app/components/admin-jobs/admin-jobs.html - 37,39 + 37 @@ -466,11 +486,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 125 + 136 libs/ui/src/lib/activities-table/activities-table.component.html - 144 + 152 @@ -494,7 +514,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 261 + 260 apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html @@ -518,11 +538,11 @@ apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 43 + 59 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 351 + 362 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -538,7 +558,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 268 + 267 apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html @@ -562,7 +582,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 358 + 369 @@ -570,7 +590,7 @@ Filtrer par... apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 279 + 281 @@ -578,15 +598,15 @@ Classe d'Actifs apps/client/src/app/components/admin-market-data/admin-market-data.html - 42 + 60 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 120 + 119 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 189 + 188 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -594,7 +614,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 280 + 291 @@ -602,15 +622,15 @@ Sous-classe d'Actifs apps/client/src/app/components/admin-market-data/admin-market-data.html - 51 + 69 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 129 + 128 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 202 + 201 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -618,7 +638,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 296 + 307 @@ -626,11 +646,11 @@ Première Activité apps/client/src/app/components/admin-market-data/admin-market-data.html - 60 + 78 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 102 + 101 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -646,7 +666,7 @@ Nombre d'Activités apps/client/src/app/components/admin-market-data/admin-market-data.html - 69 + 87 @@ -654,7 +674,7 @@ Données Historiques apps/client/src/app/components/admin-market-data/admin-market-data.html - 78 + 96 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -666,7 +686,7 @@ Nombre de Secteurs apps/client/src/app/components/admin-market-data/admin-market-data.html - 87 + 105 @@ -674,7 +694,7 @@ Nombre de Pays apps/client/src/app/components/admin-market-data/admin-market-data.html - 96 + 114 @@ -682,7 +702,7 @@ Obtenir les Données Récentes apps/client/src/app/components/admin-market-data/admin-market-data.html - 126 + 144 @@ -690,7 +710,7 @@ Obtenir toutes les Données apps/client/src/app/components/admin-market-data/admin-market-data.html - 129 + 147 @@ -698,7 +718,7 @@ Obtenir les Données du Profil apps/client/src/app/components/admin-market-data/admin-market-data.html - 132 + 150 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -718,7 +738,7 @@ Secteur apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 144 + 143 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -730,7 +750,7 @@ Pays apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 153 + 152 apps/client/src/app/components/admin-users/admin-users.html @@ -746,7 +766,7 @@ Secteurs apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 159 + 158 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -762,7 +782,7 @@ Pays apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 169 + 168 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -774,7 +794,7 @@ Équivalence de Symboles apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 226 + 225 @@ -782,7 +802,7 @@ Note apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 248 + 247 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -790,7 +810,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 265 + 276 @@ -798,7 +818,7 @@ Veuillez ajouter une devise : apps/client/src/app/components/admin-overview/admin-overview.component.ts - 113 + 119 @@ -806,7 +826,7 @@ Voulez-vous vraiment supprimer ce code promotionnel ? apps/client/src/app/components/admin-overview/admin-overview.component.ts - 127 + 133 @@ -814,7 +834,7 @@ Voulez-vous vraiment supprimer cette devise ? apps/client/src/app/components/admin-overview/admin-overview.component.ts - 140 + 146 @@ -822,7 +842,7 @@ Voulez-vous vraiment vider le cache ? apps/client/src/app/components/admin-overview/admin-overview.component.ts - 157 + 169 @@ -830,7 +850,7 @@ Veuillez définir votre message système : apps/client/src/app/components/admin-overview/admin-overview.component.ts - 187 + 200 @@ -870,7 +890,7 @@ Ajouter Devise apps/client/src/app/components/admin-overview/admin-overview.html - 76 + 113 @@ -886,7 +906,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 309 + 320 @@ -894,7 +914,7 @@ Inscription de Nouveaux Utilisateurs apps/client/src/app/components/admin-overview/admin-overview.html - 82 + 119 @@ -902,7 +922,7 @@ Mode Lecture Seule apps/client/src/app/components/admin-overview/admin-overview.html - 93 + 130 @@ -910,7 +930,7 @@ Message Système apps/client/src/app/components/admin-overview/admin-overview.html - 104 + 141 @@ -918,7 +938,7 @@ Définir Message apps/client/src/app/components/admin-overview/admin-overview.html - 126 + 164 @@ -926,7 +946,7 @@ Codes promotionnels apps/client/src/app/components/admin-overview/admin-overview.html - 134 + 172 @@ -934,7 +954,7 @@ Ajouter apps/client/src/app/components/admin-overview/admin-overview.html - 178 + 233 @@ -942,7 +962,7 @@ Maintenance apps/client/src/app/components/admin-overview/admin-overview.html - 185 + 240 @@ -950,7 +970,7 @@ Vider le Cache apps/client/src/app/components/admin-overview/admin-overview.html - 189 + 244 @@ -1014,7 +1034,7 @@ Dernière Requête apps/client/src/app/components/admin-users/admin-users.html - 169,171 + 169 @@ -1272,6 +1292,46 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 183 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + About @@ -1412,6 +1472,10 @@ apps/client/src/app/components/home-market/home-market.component.ts 24 + + libs/ui/src/lib/i18n.ts + 65 + Greed @@ -1420,6 +1484,10 @@ apps/client/src/app/components/home-market/home-market.component.ts 25 + + libs/ui/src/lib/i18n.ts + 66 + Last Days @@ -1597,7 +1665,7 @@ Frais pour apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 12,15 + 12 @@ -1605,7 +1673,7 @@ {VAR_PLURAL, plural, =1 {transaction} autres {transactions}} apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 13,14 + 13 @@ -1685,7 +1753,7 @@ Performance annualisée apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 262,264 + 262 @@ -1705,11 +1773,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 155 + 166 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 211 + 222 @@ -1761,11 +1829,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 142 + 153 libs/ui/src/lib/activities-table/activities-table.component.html - 222 + 230 @@ -1993,16 +2061,12 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 379 + 387 Membership Adhésion - - apps/client/src/app/components/user-account-membership/user-account-membership.html - 2 - libs/ui/src/lib/membership-card/membership-card.component.html 18 @@ -2013,7 +2077,7 @@ Mettre à niveau apps/client/src/app/components/user-account-membership/user-account-membership.html - 19 + 18 @@ -2021,7 +2085,7 @@ par an apps/client/src/app/components/user-account-membership/user-account-membership.html - 34 + 33 apps/client/src/app/pages/pricing/pricing-page.html @@ -2033,7 +2097,7 @@ Essayer Premium apps/client/src/app/components/user-account-membership/user-account-membership.html - 43 + 42 @@ -2041,7 +2105,7 @@ Utiliser un Code Promotionnel apps/client/src/app/components/user-account-membership/user-account-membership.html - 56 + 55 @@ -2379,6 +2443,10 @@ apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.html 181 + + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023/hacktoberfest-2023-debriefing-page.html + 270 + apps/client/src/app/pages/blog/blog-page.html 5 @@ -2509,7 +2577,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 91 + 102 @@ -2517,15 +2585,15 @@ Prix Unitaire apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 162 + 173 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 217 + 228 libs/ui/src/lib/activities-table/activities-table.component.html - 251 + 259 @@ -2533,15 +2601,15 @@ Frais apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 231 + 242 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 256 + 267 libs/ui/src/lib/activities-table/activities-table.component.html - 280 + 288 @@ -2593,7 +2661,7 @@ Importer apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 80 + 79 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html @@ -2909,7 +2977,7 @@ Bonjour, a partagé un Portefeuille avec vous ! apps/client/src/app/pages/public/public-page.html - 4,7 + 4 @@ -2933,7 +3001,7 @@ Ghostfolio vous aide à garder un aperçu de votre patrimoine. apps/client/src/app/pages/public/public-page.html - 147,149 + 147 @@ -3001,7 +3069,7 @@ Je certifie avoir sauvé mon Jeton de Sécurité ci-dessus dans un endroit sûr. Si je le perds, je ne pourrai pas récupérer mon compte. apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html - 31,34 + 31 @@ -3069,7 +3137,7 @@ Brouillon libs/ui/src/lib/activities-table/activities-table.component.html - 181 + 189 @@ -3085,11 +3153,11 @@ Exporter Activités libs/ui/src/lib/activities-table/activities-table.component.html - 44 + 47 libs/ui/src/lib/activities-table/activities-table.component.html - 463 + 476 @@ -3097,11 +3165,11 @@ Exporter Brouillons sous ICS libs/ui/src/lib/activities-table/activities-table.component.html - 54 + 59 libs/ui/src/lib/activities-table/activities-table.component.html - 473 + 488 @@ -3109,7 +3177,7 @@ Dupliquer libs/ui/src/lib/activities-table/activities-table.component.html - 494 + 513 @@ -3117,7 +3185,7 @@ Exporter Brouillon sous ICS libs/ui/src/lib/activities-table/activities-table.component.html - 502 + 523 @@ -3529,7 +3597,7 @@ Protection pour les informations sensibles telles que la performance absolue et les montants apps/client/src/app/components/user-account-settings/user-account-settings.html - 8,11 + 8 @@ -3537,7 +3605,7 @@ Expérience sans distraction pour les périodes tumultueuses apps/client/src/app/components/user-account-settings/user-account-settings.html - 138,140 + 138 @@ -3545,7 +3613,7 @@ Avant-première de fonctionnalités futures apps/client/src/app/components/user-account-settings/user-account-settings.html - 173,175 + 173 @@ -3553,7 +3621,7 @@ Êtes-vous un investisseur ambitieux qui a besoin d'une vue complète ? apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 15,17 + 15 @@ -3645,7 +3713,7 @@ Pour les investisseurs à l'aise avec la technologie qui préfèrent héberger Ghostfolio sur leur propre infrastructure. apps/client/src/app/pages/pricing/pricing-page.html - 36,39 + 36 @@ -3721,7 +3789,7 @@ Pour les nouveaux investisseurs qui débutent en Bourse. apps/client/src/app/pages/pricing/pricing-page.html - 150,152 + 150 @@ -3741,7 +3809,7 @@ Pour les investisseurs ambitieux qui ont besoin d'une vue complète de leurs actifs financiers. apps/client/src/app/pages/pricing/pricing-page.html - 225,228 + 225 @@ -3757,7 +3825,7 @@ Débuter apps/client/src/app/pages/pricing/pricing-page.html - 363,365 + 363 @@ -3881,7 +3949,7 @@ Oups ! Nous n'avons pas pu obtenir le taux de change historique à partir de apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 247 + 258 @@ -3925,7 +3993,7 @@ Renouveler apps/client/src/app/components/user-account-membership/user-account-membership.html - 22 + 21 @@ -3941,7 +4009,7 @@ Notre offre Ghostfolio Premium cloud est la manière la plus simple de débuter. Grâce au temps qu'elle économise, ce sera la meilleure option pour la plupart des gens. Les revenus sont utilisés pour couvrir les frais d'infrastructures et financer le développement continu de Ghostfolio. apps/client/src/app/pages/pricing/pricing-page.html - 6,11 + 6 @@ -3949,7 +4017,7 @@ Voir en tant que ... apps/client/src/app/components/admin-users/admin-users.html - 207 + 208 @@ -3957,7 +4025,7 @@ Supprimer l'Utilisateur apps/client/src/app/components/admin-users/admin-users.html - 215 + 218 @@ -3981,7 +4049,7 @@ Supprimer toutes les Activités libs/ui/src/lib/activities-table/activities-table.component.html - 62 + 69 @@ -4033,7 +4101,7 @@ Mettre à jour le Solde apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 83 + 94 @@ -4049,7 +4117,7 @@ Mettez à niveau vers Ghostfolio Premium aujourd'hui et gagnez accès à des fonctionnalités exclusives pour améliorer votre expérience d'investissement: apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 18,21 + 18 @@ -4057,7 +4125,7 @@ Obtenez les outils pour gérer efficacement vos finances et affinez votre stratégie d'investissement personnelle. apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 48,51 + 48 @@ -4065,7 +4133,7 @@ Ajoutez une Plateforme apps/client/src/app/components/admin-platform/admin-platform.component.html - 11,13 + 11 @@ -4153,7 +4221,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 444 + 453 @@ -4161,11 +4229,11 @@ Importer les Dividendes libs/ui/src/lib/activities-table/activities-table.component.html - 34 + 35 libs/ui/src/lib/activities-table/activities-table.component.html - 453 + 464 @@ -4237,7 +4305,7 @@ Si vous prenez votre retraite aujourd'hui, vous pourriez retirer par an ou par mois, sur base de vos actifs totaux de et un taux de retrait de 4%. apps/client/src/app/pages/portfolio/fire/fire-page.html - 57,90 + 57 @@ -4321,7 +4389,7 @@ Importer et Exporter apps/client/src/app/pages/features/features-page.html - 115,117 + 115 @@ -4393,7 +4461,7 @@ Scraper Configuration apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 237 + 236 @@ -4417,7 +4485,7 @@ Discover Open Source Alternatives for Personal Finance Tools apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 4,6 + 4 @@ -4551,6 +4619,46 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 67 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + Origin @@ -4683,6 +4791,46 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 72 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + Region @@ -4815,137 +4963,217 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 77 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + Available in Available in apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 @@ -5079,6 +5307,46 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 104 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 111 @@ -5209,43 +5477,43 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -5335,6 +5603,102 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 125 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 136 @@ -5463,6 +5827,38 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 136 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 150 @@ -5591,6 +5987,78 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 150 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 157 @@ -5849,43 +6317,43 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -5975,73 +6443,133 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 176 - - - ❌ No - ❌ No apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 176 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 176 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 176 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 176 + + + + ❌ No + ❌ No + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -6107,6 +6635,70 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 106 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 129 @@ -6235,6 +6827,82 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 129 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 140 @@ -6493,43 +7161,43 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -6621,67 +7289,83 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 159 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 159 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 159 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -6749,107 +7433,107 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -6875,3565 +7559,4477 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 178 - - - ❌ No - ❌ No apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 - - - Self-Hosting - Self-Hosting apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 178 + + + ❌ No + ❌ No apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 - - - Use anonymously - Use anonymously apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 + + + Self-Hosting + Self-Hosting apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 - - - Free Plan - Free Plan apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 + + + Use anonymously + Use anonymously apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 - - - Notes - Notes apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 - - - 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 - 220,223 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 145 + + + Free Plan + Free Plan apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 - - - Personal Finance Tools - Personal Finance Tools apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 + + + Notes + Notes apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 - - - Guides - Guides - apps/client/src/app/pages/resources/resources-page.html - 5 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Glossary - Glossary - apps/client/src/app/pages/resources/resources-page.html - 75 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Stocks, ETFs, bonds, cryptocurrencies, commodities - Stocks, ETFs, bonds, cryptocurrencies, commodities - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 21 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 51 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Mortgages, personal loans, credit cards - Mortgages, personal loans, credit cards - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 45 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Luxury items, real estate, private companies - Luxury items, real estate, private companies - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 57 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Buy - Buy - libs/ui/src/lib/i18n.ts - 30 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Valuable - Valuable - libs/ui/src/lib/i18n.ts - 34 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - ETFs without Countries - ETFs without Countries - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 70 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - ETFs without Sectors - ETFs without Sectors - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 75 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Assets - Assets - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Preset - Preset - libs/ui/src/lib/i18n.ts - 21 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - By Market - By Market - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 177 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Asia-Pacific - Asia-Pacific - libs/ui/src/lib/i18n.ts - 5 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Japan - Japan - libs/ui/src/lib/i18n.ts - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Welcome to Ghostfolio - Welcome to Ghostfolio - apps/client/src/app/components/home-overview/home-overview.html - 9 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Setup your accounts - Setup your accounts - apps/client/src/app/components/home-overview/home-overview.html - 17 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Get a comprehensive financial overview by adding your bank and brokerage accounts. - Get a comprehensive financial overview by adding your bank and brokerage accounts. - apps/client/src/app/components/home-overview/home-overview.html - 19,20 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Capture your activities - Capture your activities - apps/client/src/app/components/home-overview/home-overview.html - 26 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Record your investment activities to keep your portfolio up to date. - Record your investment activities to keep your portfolio up to date. - apps/client/src/app/components/home-overview/home-overview.html - 28,29 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Monitor and analyze your portfolio - Monitor and analyze your portfolio - apps/client/src/app/components/home-overview/home-overview.html - 35 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Track your progress in real-time with comprehensive analysis and insights. - Track your progress in real-time with comprehensive analysis and insights. - apps/client/src/app/components/home-overview/home-overview.html - 37,38 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - No data available - No data available + + Effortlessly track, analyze, and visualize your wealth with Ghostfolio. + Effortlessly track, analyze, and visualize your wealth with Ghostfolio. - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 254 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 - apps/client/src/app/pages/public/public-page.html - 123 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 - - - Ready to take control of your personal finances? - Ready to take control of your personal finances? - apps/client/src/app/components/home-overview/home-overview.html - 10 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 - + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + + Personal Finance Tools + Personal Finance Tools + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + + Guides + Guides + + apps/client/src/app/pages/resources/resources-page.html + 5 + + + + Glossary + Glossary + + apps/client/src/app/pages/resources/resources-page.html + 75 + + + + Stocks, ETFs, bonds, cryptocurrencies, commodities + Stocks, ETFs, bonds, cryptocurrencies, commodities + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 21 + + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 51 + + + + Mortgages, personal loans, credit cards + Mortgages, personal loans, credit cards + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 45 + + + + Luxury items, real estate, private companies + Luxury items, real estate, private companies + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 57 + + + + Buy + Buy + + libs/ui/src/lib/i18n.ts + 30 + + + + Valuable + Valuable + + libs/ui/src/lib/i18n.ts + 34 + + + + ETFs without Countries + ETFs without Countries + + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 71 + + + + ETFs without Sectors + ETFs without Sectors + + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 76 + + + + Assets + Assets + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 190 + + + + Preset + Preset + + libs/ui/src/lib/i18n.ts + 21 + + + + By Market + By Market + + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 177 + + + + Asia-Pacific + Asia-Pacific + + libs/ui/src/lib/i18n.ts + 5 + + + + Japan + Japan + + libs/ui/src/lib/i18n.ts + 16 + + + + Welcome to Ghostfolio + Welcome to Ghostfolio + + apps/client/src/app/components/home-overview/home-overview.html + 9 + + + + Setup your accounts + Setup your accounts + + apps/client/src/app/components/home-overview/home-overview.html + 17 + + + + Get a comprehensive financial overview by adding your bank and brokerage accounts. + Get a comprehensive financial overview by adding your bank and brokerage accounts. + + apps/client/src/app/components/home-overview/home-overview.html + 19 + + + + Capture your activities + Capture your activities + + apps/client/src/app/components/home-overview/home-overview.html + 26 + + + + Record your investment activities to keep your portfolio up to date. + Record your investment activities to keep your portfolio up to date. + + apps/client/src/app/components/home-overview/home-overview.html + 28 + + + + Monitor and analyze your portfolio + Monitor and analyze your portfolio + + apps/client/src/app/components/home-overview/home-overview.html + 35 + + + + Track your progress in real-time with comprehensive analysis and insights. + Track your progress in real-time with comprehensive analysis and insights. + + apps/client/src/app/components/home-overview/home-overview.html + 37 + + + + No data available + No data available + + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 254 + + + apps/client/src/app/pages/public/public-page.html + 123 + + + + Ready to take control of your personal finances? + Ready to take control of your personal finances? + + apps/client/src/app/components/home-overview/home-overview.html + 10 + + Setup accounts Setup accounts - apps/client/src/app/components/home-overview/home-overview.html - 50 + apps/client/src/app/components/home-overview/home-overview.html + 50 + + + + Biometric Authentication + Biometric Authentication + + apps/client/src/app/components/user-account-settings/user-account-settings.html + 154 + + + + At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. + At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. + + apps/client/src/app/pages/open/open-page.html + 6 + + + + Active Users + Active Users + + apps/client/src/app/pages/open/open-page.html + 40 + + + apps/client/src/app/pages/open/open-page.html + 62 + + + + New Users + New Users + + apps/client/src/app/pages/open/open-page.html + 51 + + + + Users in Slack community + Users in Slack community + + apps/client/src/app/pages/open/open-page.html + 75 + + + + Contributors on GitHub + Contributors on GitHub + + apps/client/src/app/pages/open/open-page.html + 89 + + + + Stars on GitHub + Stars on GitHub + + apps/client/src/app/pages/landing/landing-page.html + 93 + + + apps/client/src/app/pages/open/open-page.html + 103 + + + + Pulls on Docker Hub + Pulls on Docker Hub + + apps/client/src/app/pages/landing/landing-page.html + 111 + + + apps/client/src/app/pages/open/open-page.html + 117 + + + + Uptime + Uptime + + apps/client/src/app/pages/open/open-page.html + 132 + + + + Export Data + Export Data + + apps/client/src/app/components/user-account-settings/user-account-settings.html + 195 + + + + Currencies + Currencies + + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 66 + + + + Our + Our + + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 6 + + + + Visit + Visit + + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 28 + + + + Discover other exciting Open Source Software projects + Discover other exciting Open Source Software projects + + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 9 + + + + Frequently Asked Questions (FAQ) + Frequently Asked Questions (FAQ) + + apps/client/src/app/pages/faq/faq-page.html + 4 + + + + Check out the numerous features of Ghostfolio to manage your wealth + Check out the numerous features of Ghostfolio to manage your wealth + + apps/client/src/app/pages/features/features-page.html + 6 + + + + Discover the latest Ghostfolio updates and insights on personal finance + Discover the latest Ghostfolio updates and insights on personal finance + + apps/client/src/app/pages/blog/blog-page.html + 7 + + + + If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. + If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. + + apps/client/src/app/pages/pricing/pricing-page.html + 24 + + + + Manage your wealth like a boss + Manage your wealth like a boss + + apps/client/src/app/pages/landing/landing-page.html + 11 + + + + Ghostfolio is a privacy-first, open source dashboard for your personal finances. Break down your asset allocation, know your net worth and make solid, data-driven investment decisions. + Ghostfolio is a privacy-first, open source dashboard for your personal finances. Break down your asset allocation, know your net worth and make solid, data-driven investment decisions. + + apps/client/src/app/pages/landing/landing-page.html + 15 + + + + Get Started + Get Started + + apps/client/src/app/pages/landing/landing-page.html + 47 + + + apps/client/src/app/pages/landing/landing-page.html + 431 + + + + or + or + + apps/client/src/app/pages/landing/landing-page.html + 52 + + + + Monthly Active Users + Monthly Active Users + + apps/client/src/app/pages/landing/landing-page.html + 75 + + + + As seen in + As seen in + + apps/client/src/app/pages/landing/landing-page.html + 119 + + + + Protect your assets. Refine your personal investment strategy. + Protect your assets. Refine your personal investment strategy. + + apps/client/src/app/pages/landing/landing-page.html + 221 + + + + Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. + Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. + + apps/client/src/app/pages/landing/landing-page.html + 225 + + + + 360° View + 360° View + + apps/client/src/app/pages/landing/landing-page.html + 236 + + + + Web3 Ready + Web3 Ready + + apps/client/src/app/pages/landing/landing-page.html + 247 + + + + Use Ghostfolio anonymously and own your financial data. + Use Ghostfolio anonymously and own your financial data. + + apps/client/src/app/pages/landing/landing-page.html + 249 + + + + Open Source + Open Source + + apps/client/src/app/pages/landing/landing-page.html + 257 + + + + Benefit from continuous improvements through a strong community. + Benefit from continuous improvements through a strong community. + + apps/client/src/app/pages/landing/landing-page.html + 259 + + + + Why Ghostfolio? + Why Ghostfolio? + + apps/client/src/app/pages/landing/landing-page.html + 268 + + + + Ghostfolio is for you if you are... + Ghostfolio is for you if you are... + + apps/client/src/app/pages/landing/landing-page.html + 269 + + + + trading stocks, ETFs or cryptocurrencies on multiple platforms + trading stocks, ETFs or cryptocurrencies on multiple platforms + + apps/client/src/app/pages/landing/landing-page.html + 276 + + + + pursuing a buy & hold strategy + pursuing a buy & hold strategy + + apps/client/src/app/pages/landing/landing-page.html + 282 + + + + interested in getting insights of your portfolio composition + interested in getting insights of your portfolio composition + + apps/client/src/app/pages/landing/landing-page.html + 287 + + + + valuing privacy and data ownership + valuing privacy and data ownership + + apps/client/src/app/pages/landing/landing-page.html + 292 + + + + into minimalism + into minimalism + + apps/client/src/app/pages/landing/landing-page.html + 295 + + + + caring about diversifying your financial resources + caring about diversifying your financial resources + + apps/client/src/app/pages/landing/landing-page.html + 299 + + + + interested in financial independence + interested in financial independence + + apps/client/src/app/pages/landing/landing-page.html + 303 + + + + saying no to spreadsheets in + saying no to spreadsheets in + + apps/client/src/app/pages/landing/landing-page.html + 307 + + + + still reading this list + still reading this list + + apps/client/src/app/pages/landing/landing-page.html + 310 + + + + Learn more about Ghostfolio + Learn more about Ghostfolio + + apps/client/src/app/pages/landing/landing-page.html + 315 + + + + What our users are saying + What our users are saying + + apps/client/src/app/pages/landing/landing-page.html + 323 + + + + Members from around the globe are using Ghostfolio Premium + Members from around the globe are using Ghostfolio Premium + + apps/client/src/app/pages/landing/landing-page.html + 358 + + + + How does Ghostfolio work? + How does Ghostfolio work? + + apps/client/src/app/pages/landing/landing-page.html + 373 + + + + Sign up anonymously* + Sign up anonymously* + + apps/client/src/app/pages/landing/landing-page.html + 382 + + + + * no e-mail address nor credit card required + * no e-mail address nor credit card required + + apps/client/src/app/pages/landing/landing-page.html + 384 + + + + Add any of your historical transactions + Add any of your historical transactions + + apps/client/src/app/pages/landing/landing-page.html + 395 + + + + Get valuable insights of your portfolio composition + Get valuable insights of your portfolio composition + + apps/client/src/app/pages/landing/landing-page.html + 407 + + + + Are you ready? + Are you ready? + + apps/client/src/app/pages/landing/landing-page.html + 419 + + + + Join now or check out the example account + Join now or check out the example account + + apps/client/src/app/pages/landing/landing-page.html + 420 + + + + Live Demo + Live Demo + + apps/client/src/app/pages/landing/landing-page.html + 55 + + + apps/client/src/app/pages/landing/landing-page.html + 436 + + + + Get the full picture of your personal finances across multiple platforms. + Get the full picture of your personal finances across multiple platforms. + + apps/client/src/app/pages/landing/landing-page.html + 238 + + + + Get started in only 3 steps + Get started in only 3 steps + + apps/client/src/app/pages/landing/landing-page.html + 376 + + + + faq + foire-aux-questions + + apps/client/src/app/app-routing.module.ts + 9 + + + apps/client/src/app/app.component.ts + 54 + + + apps/client/src/app/pages/about/overview/about-overview-page.component.ts + 19 + + + + features + fonctionnalites + + apps/client/src/app/app-routing.module.ts + 10 + + + apps/client/src/app/app.component.ts + 55 + + + apps/client/src/app/components/header/header.component.ts + 72 + + + apps/client/src/app/components/header/header.component.ts + 77 + + + apps/client/src/app/pages/about/overview/about-overview-page.component.ts + 20 + + + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 14 + + + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 15 + + + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023/hacktoberfest-2023-debriefing-page.component.ts + 14 + + + apps/client/src/app/pages/faq/faq-page.component.ts + 13 + + + apps/client/src/app/pages/pricing/pricing-page.component.ts + 34 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts + 26 - - - Biometric Authentication - Biometric Authentication - apps/client/src/app/components/user-account-settings/user-account-settings.html - 154 + apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts + 26 - - - At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. - At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. - apps/client/src/app/pages/open/open-page.html - 6,22 + apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts + 26 - - - Active Users - Active Users - apps/client/src/app/pages/open/open-page.html - 40 + apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts + 26 - apps/client/src/app/pages/open/open-page.html - 62 + apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts + 26 - - - New Users - New Users - apps/client/src/app/pages/open/open-page.html - 51 + apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts + 26 - - - Users in Slack community - Users in Slack community - apps/client/src/app/pages/open/open-page.html - 75 + apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts + 26 - - - Contributors on GitHub - Contributors on GitHub - apps/client/src/app/pages/open/open-page.html - 89 + apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts + 26 - - - Stars on GitHub - Stars on GitHub - apps/client/src/app/pages/landing/landing-page.html - 93 + apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts + 26 - apps/client/src/app/pages/open/open-page.html - 103 + apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts + 26 - - - Pulls on Docker Hub - Pulls on Docker Hub - apps/client/src/app/pages/landing/landing-page.html - 111 + apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts + 26 - apps/client/src/app/pages/open/open-page.html - 117 + apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts + 26 - - - Uptime - Uptime - apps/client/src/app/pages/open/open-page.html - 132 + apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts + 26 - - - Export Data - Export Data - apps/client/src/app/components/user-account-settings/user-account-settings.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts + 26 - - - Currencies - Currencies - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 65 + apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts + 26 - - - Our - Our - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 6 + apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts + 26 - - - Visit - Visit - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 28 + apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts + 26 - - - Discover other exciting Open Source Software projects - Discover other exciting Open Source Software projects - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 9 + apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts + 26 - - - Frequently Asked Questions (FAQ) - Frequently Asked Questions (FAQ) - apps/client/src/app/pages/faq/faq-page.html - 4,6 + apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts + 26 - - - Check out the numerous features of Ghostfolio to manage your wealth - Check out the numerous features of Ghostfolio to manage your wealth - apps/client/src/app/pages/features/features-page.html - 6,8 + apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts + 26 - - - Discover the latest Ghostfolio updates and insights on personal finance - Discover the latest Ghostfolio updates and insights on personal finance - apps/client/src/app/pages/blog/blog-page.html - 7,8 + apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts + 26 - - - If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. - If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. - apps/client/src/app/pages/pricing/pricing-page.html - 24,28 + apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts + 26 - - - Manage your wealth like a boss - Manage your wealth like a boss - apps/client/src/app/pages/landing/landing-page.html - 11,13 + apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts + 26 - - - Ghostfolio is a privacy-first, open source dashboard for your personal finances. Break down your asset allocation, know your net worth and make solid, data-driven investment decisions. - Ghostfolio is a privacy-first, open source dashboard for your personal finances. Break down your asset allocation, know your net worth and make solid, data-driven investment decisions. - apps/client/src/app/pages/landing/landing-page.html - 15,19 + apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts + 26 - - - Get Started - Get Started - apps/client/src/app/pages/landing/landing-page.html - 47,49 + apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts + 26 - apps/client/src/app/pages/landing/landing-page.html - 431,433 + apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts + 26 - - - or - or - apps/client/src/app/pages/landing/landing-page.html - 52,54 + apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts + 26 - - - Monthly Active Users - Monthly Active Users - apps/client/src/app/pages/landing/landing-page.html - 75 + apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts + 26 - - - As seen in - As seen in - apps/client/src/app/pages/landing/landing-page.html - 119 + apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts + 26 - - - Protect your assets. Refine your personal investment strategy. - Protect your assets. Refine your personal investment strategy. - apps/client/src/app/pages/landing/landing-page.html - 221,224 + apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts + 26 - - Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. - Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. + + about + a-propos + + apps/client/src/app/app-routing.module.ts + 8 + + + apps/client/src/app/app.component.ts + 47 + + + apps/client/src/app/app.component.ts + 48 + + + apps/client/src/app/app.component.ts + 49 + + + apps/client/src/app/app.component.ts + 51 + + + apps/client/src/app/components/header/header.component.ts + 71 + + + apps/client/src/app/components/header/header.component.ts + 76 + + + apps/client/src/app/pages/about/about-page.component.ts + 44 + + + apps/client/src/app/pages/about/about-page.component.ts + 49 + + + apps/client/src/app/pages/about/about-page.component.ts + 54 + + + apps/client/src/app/pages/about/about-page.component.ts + 62 + + + apps/client/src/app/pages/about/about-page.component.ts + 73 + - apps/client/src/app/pages/landing/landing-page.html - 225,228 + apps/client/src/app/pages/blog/2023/08/ghostfolio-joins-oss-friends/ghostfolio-joins-oss-friends-page.component.ts + 13 - - - 360° View - 360° View - apps/client/src/app/pages/landing/landing-page.html - 236 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 13 - - - Web3 Ready - Web3 Ready - apps/client/src/app/pages/landing/landing-page.html - 247 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 14 - - - Use Ghostfolio anonymously and own your financial data. - Use Ghostfolio anonymously and own your financial data. - apps/client/src/app/pages/landing/landing-page.html - 249,251 + apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.component.ts + 13 - - - Open Source - Open Source - apps/client/src/app/pages/landing/landing-page.html - 257 + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023/hacktoberfest-2023-debriefing-page.component.ts + 13 - - - Benefit from continuous improvements through a strong community. - Benefit from continuous improvements through a strong community. - apps/client/src/app/pages/landing/landing-page.html - 259,261 + apps/client/src/app/pages/landing/landing-page.component.ts + 25 - - - Why Ghostfolio? - Why Ghostfolio? - apps/client/src/app/pages/landing/landing-page.html - 268 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 22 - - - Ghostfolio is for you if you are... - Ghostfolio is for you if you are... - apps/client/src/app/pages/landing/landing-page.html - 269,271 + apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts + 25 - - - trading stocks, ETFs or cryptocurrencies on multiple platforms - trading stocks, ETFs or cryptocurrencies on multiple platforms - apps/client/src/app/pages/landing/landing-page.html - 276,277 + apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts + 25 - - - pursuing a buy & hold strategy - pursuing a buy & hold strategy - apps/client/src/app/pages/landing/landing-page.html - 282 + apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts + 25 - - - interested in getting insights of your portfolio composition - interested in getting insights of your portfolio composition - apps/client/src/app/pages/landing/landing-page.html - 287 + apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts + 25 - - - valuing privacy and data ownership - valuing privacy and data ownership - apps/client/src/app/pages/landing/landing-page.html - 292 + apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts + 25 - - - into minimalism - into minimalism - apps/client/src/app/pages/landing/landing-page.html - 295 + apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts + 25 - - - caring about diversifying your financial resources - caring about diversifying your financial resources - apps/client/src/app/pages/landing/landing-page.html - 299 + apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts + 25 - - - interested in financial independence - interested in financial independence - apps/client/src/app/pages/landing/landing-page.html - 303 + apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts + 25 - - - saying no to spreadsheets in - saying no to spreadsheets in - apps/client/src/app/pages/landing/landing-page.html - 307 + apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts + 25 - - - still reading this list - still reading this list - apps/client/src/app/pages/landing/landing-page.html - 310 + apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts + 25 - - - Learn more about Ghostfolio - Learn more about Ghostfolio - apps/client/src/app/pages/landing/landing-page.html - 315 + apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts + 25 - - - What our users are saying - What our users are saying - apps/client/src/app/pages/landing/landing-page.html - 323,325 + apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts + 25 - - - Members from around the globe are using Ghostfolio Premium - Members from around the globe are using Ghostfolio Premium - apps/client/src/app/pages/landing/landing-page.html - 358,360 + apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts + 25 - - - How does Ghostfolio work? - How does Ghostfolio work? - apps/client/src/app/pages/landing/landing-page.html - 373,375 + apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts + 25 - - - Sign up anonymously* - Sign up anonymously* - apps/client/src/app/pages/landing/landing-page.html - 382 + apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts + 25 - - - * no e-mail address nor credit card required - * no e-mail address nor credit card required - apps/client/src/app/pages/landing/landing-page.html - 384 + apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts + 25 - - - Add any of your historical transactions - Add any of your historical transactions - apps/client/src/app/pages/landing/landing-page.html - 395,397 + apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts + 25 - - - Get valuable insights of your portfolio composition - Get valuable insights of your portfolio composition - apps/client/src/app/pages/landing/landing-page.html - 407,409 + apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts + 25 - - - Are you ready? - Are you ready? - apps/client/src/app/pages/landing/landing-page.html - 419 + apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts + 25 - - - Join now or check out the example account - Join now or check out the example account - apps/client/src/app/pages/landing/landing-page.html - 420,423 + apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts + 25 - - - Live Demo - Live Demo - apps/client/src/app/pages/landing/landing-page.html - 55 + apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts + 25 - apps/client/src/app/pages/landing/landing-page.html - 436 + apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts + 25 - - - Get the full picture of your personal finances across multiple platforms. - Get the full picture of your personal finances across multiple platforms. - apps/client/src/app/pages/landing/landing-page.html - 238,241 + apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts + 25 - - - Get started in only 3 steps - Get started in only 3 steps - apps/client/src/app/pages/landing/landing-page.html - 376 + apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts + 25 - - - faq - foire-aux-questions - apps/client/src/app/app-routing.module.ts - 9 + apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts + 25 - apps/client/src/app/app.component.ts - 54 + apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts + 25 - apps/client/src/app/pages/about/overview/about-overview-page.component.ts - 19 + apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts + 25 - - - features - fonctionnalites - apps/client/src/app/app-routing.module.ts - 10 + apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts + 25 - apps/client/src/app/app.component.ts - 55 + apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts + 25 - apps/client/src/app/components/header/header.component.ts - 72 + apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts + 25 - apps/client/src/app/components/header/header.component.ts - 77 + apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts + 25 - apps/client/src/app/pages/about/overview/about-overview-page.component.ts - 20 + apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts + 25 - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts + 25 - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts + 25 - apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts + 25 - apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts + 25 - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 15 + apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts + 25 - apps/client/src/app/pages/faq/faq-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts + 25 - apps/client/src/app/pages/pricing/pricing-page.component.ts - 34 + apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts + 25 - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts + 25 - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts + 25 - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts + 25 + + + privacy-policy + politique-de-confidentialite - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 26 + apps/client/src/app/app-routing.module.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 26 + apps/client/src/app/app.component.ts + 52 - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 26 + apps/client/src/app/pages/about/about-page.component.ts + 62 + + + license + licence - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 26 + apps/client/src/app/app-routing.module.ts + 11 - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 26 + apps/client/src/app/app.component.ts + 49 - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 26 + apps/client/src/app/pages/about/about-page.component.ts + 54 + + + markets + marches - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 26 + apps/client/src/app/app-routing.module.ts + 12 - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 26 + apps/client/src/app/app.component.ts + 56 - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 73 - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 78 - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 26 + apps/client/src/app/pages/faq/faq-page.component.ts + 14 + + + pricing + prix - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 26 + apps/client/src/app/app-routing.module.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 26 + apps/client/src/app/app.component.ts + 57 - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 74 - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 79 - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 26 + apps/client/src/app/components/home-summary/home-summary.component.ts + 124 - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 26 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 26 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 37 - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 26 + apps/client/src/app/core/http-response.interceptor.ts + 80 - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 26 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 26 + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 26 + apps/client/src/app/pages/faq/faq-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 26 + libs/ui/src/lib/membership-card/membership-card.component.ts + 13 - - about - a-propos + + register + enregistrement apps/client/src/app/app-routing.module.ts - 8 + 15 apps/client/src/app/app.component.ts - 47 + 58 - apps/client/src/app/app.component.ts - 48 + apps/client/src/app/components/header/header.component.ts + 80 - apps/client/src/app/app.component.ts - 49 + apps/client/src/app/core/auth.guard.ts + 53 - apps/client/src/app/app.component.ts - 51 + apps/client/src/app/pages/faq/faq-page.component.ts + 16 - apps/client/src/app/components/header/header.component.ts - 71 + apps/client/src/app/pages/features/features-page.component.ts + 17 - apps/client/src/app/components/header/header.component.ts - 76 + apps/client/src/app/pages/landing/landing-page.component.ts + 26 - apps/client/src/app/pages/about/about-page.component.ts - 44 + apps/client/src/app/pages/pricing/pricing-page.component.ts + 35 + + + resources + ressources - apps/client/src/app/pages/about/about-page.component.ts - 49 + apps/client/src/app/app-routing.module.ts + 16 - apps/client/src/app/pages/about/about-page.component.ts - 54 + apps/client/src/app/app.component.ts + 59 - apps/client/src/app/pages/about/about-page.component.ts - 62 + apps/client/src/app/components/header/header.component.ts + 75 - apps/client/src/app/pages/about/about-page.component.ts - 73 + apps/client/src/app/components/header/header.component.ts + 81 - apps/client/src/app/pages/blog/2023/08/ghostfolio-joins-oss-friends/ghostfolio-joins-oss-friends-page.component.ts - 13 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 14 - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 14 + + + apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts 13 - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts 14 - apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.component.ts - 13 + apps/client/src/app/pages/features/features-page.component.ts + 18 - apps/client/src/app/pages/landing/landing-page.component.ts - 25 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 18 + apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 25 + 28 - - - privacy-policy - politique-de-confidentialite - apps/client/src/app/app-routing.module.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts + 28 - apps/client/src/app/app.component.ts - 52 + apps/client/src/app/pages/resources/resources-page.component.ts + 17 + + + This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. + This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. - apps/client/src/app/pages/about/about-page.component.ts - 62 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 8 - - license - licence + + Explore the links below to compare a variety of personal finance tools with Ghostfolio. + Explore the links below to compare a variety of personal finance tools with Ghostfolio. - apps/client/src/app/app-routing.module.ts - 11 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 16 + + + Open Source Alternative to + Open Source Alternative to - apps/client/src/app/app.component.ts - 49 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 35 + + + Open Source Alternative to + Open Source Alternative to - apps/client/src/app/pages/about/about-page.component.ts - 54 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 25 - - markets - marches + + The Open Source Alternative to + The Open Source Alternative to - apps/client/src/app/app-routing.module.ts - 12 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/app.component.ts - 56 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/header/header.component.ts - 73 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/header/header.component.ts - 78 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/faq/faq-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - - - pricing - prix - apps/client/src/app/app-routing.module.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/app.component.ts - 57 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/header/header.component.ts - 74 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/header/header.component.ts - 79 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/home-summary/home-summary.component.ts - 124 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 37 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/core/http-response.interceptor.ts - 80 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts - 15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/faq/faq-page.component.ts - 15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - libs/ui/src/lib/membership-card/membership-card.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - - - register - enregistrement - apps/client/src/app/app-routing.module.ts - 15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/app.component.ts - 58 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/header/header.component.ts - 80 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/core/auth.guard.ts - 53 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/faq/faq-page.component.ts - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/features/features-page.component.ts - 17 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/landing/landing-page.component.ts - 26 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/pricing/pricing-page.component.ts - 35 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - - - resources - ressources - apps/client/src/app/app-routing.module.ts - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/app.component.ts - 59 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. + Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. - apps/client/src/app/components/header/header.component.ts - 75 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/components/header/header.component.ts - 81 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 13 - apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/features/features-page.component.ts - 18 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/resources-page.component.ts - 17 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - - - This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. - This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 8,15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - - Explore the links below to compare a variety of personal finance tools with Ghostfolio. - Explore the links below to compare a variety of personal finance tools with Ghostfolio. + + Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. + Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 16,19 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26 - - - Open Source Alternative to - Open Source Alternative to - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 35,37 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26 - - - Open Source Alternative to - Open Source Alternative to - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 25 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26 - - - The Open Source Alternative to - The Open Source Alternative to apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 - - - Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. - Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 + + + Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. + Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 - - - Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. - Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 + + + Starting from / year + Starting from / year apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 - - - Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. - Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 + + + Starting from / year + Starting from / year apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 - - - Starting from / year - Starting from / year apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 - - - Starting from / year - Starting from / year apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 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 + + + 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,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 - - - 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/product-page-template.html + 203 - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 203 - - - 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 - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 + + + 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 - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 - - - 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 - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 + + + Get Started + Get Started apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 - - - Get Started - Get Started apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 @@ -10441,23 +12037,23 @@ Switzerland apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 54 + 64 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 66 + 86 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 375 + 465 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 398 + 498 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 399 + 499 @@ -10465,15 +12061,15 @@ Global apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 56 + 66 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 217 + 287 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 318 + 408 @@ -10481,35 +12077,67 @@ United States apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 106 + 77 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 140 + 135 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 150 + 168 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 203 + 178 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 228 + 188 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 230 + 240 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 294 + 262 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 305 + 273 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 298 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 300 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 310 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 375 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 385 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 395 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 476 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 509 @@ -10517,7 +12145,7 @@ Belgium apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 118 + 147 @@ -10525,31 +12153,31 @@ Germany apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 95 + 124 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 129 + 158 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 172 + 220 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 182 + 230 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 192 + 251 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 215 + 285 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 250 + 331 @@ -10557,7 +12185,7 @@ Austria apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 160 + 208 @@ -10565,7 +12193,7 @@ Italy apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 261 + 342 @@ -10573,7 +12201,7 @@ Netherlands apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 271 + 352 @@ -10581,7 +12209,7 @@ Thailand apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 283 + 364 @@ -10589,7 +12217,7 @@ New Zealand apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 316 + 406 @@ -10597,11 +12225,11 @@ Czech Republic apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 327 + 417 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 364 + 454 @@ -10677,7 +12305,7 @@ 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 - 187,188 + 198 @@ -10709,7 +12337,7 @@ Add Tag apps/client/src/app/components/admin-tag/admin-tag.component.html - 11,13 + 11 @@ -10741,15 +12369,15 @@ France apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 76 + 105 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 338 + 428 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 354 + 444 @@ -10757,7 +12385,7 @@ 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,101 + 100 @@ -10793,7 +12421,7 @@ Benchmark apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 220 + 219 @@ -10825,7 +12453,7 @@ To apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 21 + 29 @@ -10833,7 +12461,7 @@ Transfer apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 50 + 66 @@ -10841,7 +12469,7 @@ Finland apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 346 + 436 @@ -10893,7 +12521,7 @@ Asset Profile apps/client/src/app/components/admin-jobs/admin-jobs.html - 31,33 + 31 @@ -10901,7 +12529,7 @@ Do you really want to delete this asset profile? apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 182 + 184 @@ -10925,7 +12553,7 @@ 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,7 + 4 @@ -10941,7 +12569,7 @@ User apps/client/src/app/components/admin-users/admin-users.html - 29,31 + 29 @@ -10949,131 +12577,171 @@ Ghostfolio vs comparison table apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 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,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 @@ -11081,7 +12749,7 @@ Canada apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 388 + 488 @@ -11097,7 +12765,7 @@ app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 apps/client/src/app/pages/i18n/i18n-page.html - 8,11 + 8 @@ -11113,7 +12781,55 @@ Poland apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 86 + 115 + + + + South Africa + South Africa + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 197 + + + + Extreme Fear + Extreme Fear + + libs/ui/src/lib/i18n.ts + 63 + + + + Extreme Greed + Extreme Greed + + libs/ui/src/lib/i18n.ts + 64 + + + + Neutral + Neutral + + libs/ui/src/lib/i18n.ts + 67 + + + + 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 + + + + 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 diff --git a/apps/client/src/locales/messages.it.xlf b/apps/client/src/locales/messages.it.xlf index 7e9388cee..cc759b412 100644 --- a/apps/client/src/locales/messages.it.xlf +++ b/apps/client/src/locales/messages.it.xlf @@ -23,7 +23,7 @@ Il rischio di perdita nel trading può essere notevole. Non è consigliabile investire denaro di cui potresti avere bisogno a breve termine. apps/client/src/app/app.component.html - 174,175 + 174 @@ -55,7 +55,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 156 + 164 @@ -99,7 +99,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 111 + 110 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -125,9 +125,13 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html 34 + + apps/client/src/app/components/admin-market-data/admin-market-data.html + 38 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 183 + 182 apps/client/src/app/components/admin-platform/admin-platform.component.html @@ -151,11 +155,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 103 + 114 libs/ui/src/lib/activities-table/activities-table.component.html - 171 + 179 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -171,7 +175,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 151 + 159 @@ -187,43 +191,43 @@ apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 31 + 47 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 157 + 168 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 158 + 169 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 160 + 171 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 213 + 224 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 214 + 225 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 215 + 226 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 216 + 227 libs/ui/src/lib/activities-table/activities-table.component.html - 313 + 321 libs/ui/src/lib/activities-table/activities-table.component.html - 348 + 356 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -235,19 +239,27 @@ Modifica apps/client/src/app/components/accounts-table/accounts-table.component.html - 258 + 259 + + + apps/client/src/app/components/admin-market-data/admin-market-data.html + 170 + + + apps/client/src/app/components/admin-overview/admin-overview.html + 86 apps/client/src/app/components/admin-platform/admin-platform.component.html - 90 + 91 apps/client/src/app/components/admin-tag/admin-tag.component.html - 70 + 71 libs/ui/src/lib/activities-table/activities-table.component.html - 490 + 507 @@ -255,23 +267,31 @@ Elimina apps/client/src/app/components/accounts-table/accounts-table.component.html - 266 + 269 apps/client/src/app/components/admin-market-data/admin-market-data.html - 151 + 180 + + + apps/client/src/app/components/admin-overview/admin-overview.html + 99 + + + apps/client/src/app/components/admin-overview/admin-overview.html + 201 apps/client/src/app/components/admin-platform/admin-platform.component.html - 94 + 97 apps/client/src/app/components/admin-tag/admin-tag.component.html - 74 + 77 libs/ui/src/lib/activities-table/activities-table.component.html - 506 + 529 @@ -303,7 +323,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 87 + 86 apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html @@ -319,11 +339,11 @@ apps/client/src/app/components/admin-market-data/admin-market-data.html - 33 + 51 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 119 + 130 @@ -371,7 +391,7 @@ Dati storici del mercato apps/client/src/app/components/admin-jobs/admin-jobs.html - 37,39 + 37 @@ -415,11 +435,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 125 + 136 libs/ui/src/lib/activities-table/activities-table.component.html - 144 + 152 @@ -443,7 +463,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 261 + 260 apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html @@ -467,11 +487,11 @@ apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 43 + 59 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 351 + 362 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -487,7 +507,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 268 + 267 apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html @@ -511,7 +531,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 358 + 369 @@ -519,11 +539,11 @@ Prima attività apps/client/src/app/components/admin-market-data/admin-market-data.html - 60 + 78 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 102 + 101 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -547,7 +567,7 @@ Dati storici apps/client/src/app/components/admin-market-data/admin-market-data.html - 78 + 96 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -559,7 +579,7 @@ Aggiungi una valuta: apps/client/src/app/components/admin-overview/admin-overview.component.ts - 113 + 119 @@ -567,7 +587,7 @@ Vuoi davvero eliminare questo buono? apps/client/src/app/components/admin-overview/admin-overview.component.ts - 127 + 133 @@ -575,7 +595,7 @@ Vuoi davvero eliminare questa valuta? apps/client/src/app/components/admin-overview/admin-overview.component.ts - 140 + 146 @@ -583,7 +603,7 @@ Vuoi davvero svuotare la cache? apps/client/src/app/components/admin-overview/admin-overview.component.ts - 157 + 169 @@ -591,7 +611,7 @@ Imposta il messaggio di sistema: apps/client/src/app/components/admin-overview/admin-overview.component.ts - 187 + 200 @@ -615,7 +635,7 @@ Raccogli dati recenti apps/client/src/app/components/admin-market-data/admin-market-data.html - 126 + 144 @@ -623,7 +643,7 @@ Raccogli tutti i dati apps/client/src/app/components/admin-market-data/admin-market-data.html - 129 + 147 @@ -631,7 +651,7 @@ Raccogli i dati del profilo apps/client/src/app/components/admin-market-data/admin-market-data.html - 132 + 150 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -651,7 +671,7 @@ Aggiungi valuta apps/client/src/app/components/admin-overview/admin-overview.html - 76 + 113 @@ -659,7 +679,7 @@ Messaggio di sistema apps/client/src/app/components/admin-overview/admin-overview.html - 104 + 141 @@ -667,7 +687,7 @@ Imposta messaggio apps/client/src/app/components/admin-overview/admin-overview.html - 126 + 164 @@ -675,7 +695,7 @@ Modalità di sola lettura apps/client/src/app/components/admin-overview/admin-overview.html - 93 + 130 @@ -683,7 +703,7 @@ Buoni sconto apps/client/src/app/components/admin-overview/admin-overview.html - 134 + 172 @@ -691,7 +711,7 @@ Aggiungi apps/client/src/app/components/admin-overview/admin-overview.html - 178 + 233 @@ -699,7 +719,7 @@ Bilancio domestico apps/client/src/app/components/admin-overview/admin-overview.html - 185 + 240 @@ -707,7 +727,7 @@ Svuota la cache apps/client/src/app/components/admin-overview/admin-overview.html - 189 + 244 @@ -747,7 +767,7 @@ Ultima richiesta apps/client/src/app/components/admin-users/admin-users.html - 169,171 + 169 @@ -985,6 +1005,46 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 183 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + About @@ -1258,7 +1318,7 @@ Commissioni per apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 12,15 + 12 @@ -1266,7 +1326,7 @@ {VAR_PLURAL, plural, =1 {transazione} other {transazioni}} apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 13,14 + 13 @@ -1338,7 +1398,7 @@ Prestazioni annualizzate apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 262,264 + 262 @@ -1358,11 +1418,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 155 + 166 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 211 + 222 @@ -1378,7 +1438,7 @@ Settori apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 159 + 158 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -1394,7 +1454,7 @@ Paesi apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 169 + 168 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -1414,7 +1474,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 309 + 320 @@ -1636,6 +1696,10 @@ apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.html 181 + + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023/hacktoberfest-2023-debriefing-page.html + 270 + apps/client/src/app/pages/blog/blog-page.html 5 @@ -1734,16 +1798,12 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 379 + 387 Membership Iscrizione - - apps/client/src/app/components/user-account-membership/user-account-membership.html - 2 - libs/ui/src/lib/membership-card/membership-card.component.html 18 @@ -1754,7 +1814,7 @@ Aggiornamento apps/client/src/app/components/user-account-membership/user-account-membership.html - 19 + 18 @@ -1762,7 +1822,7 @@ per anno apps/client/src/app/components/user-account-membership/user-account-membership.html - 34 + 33 apps/client/src/app/pages/pricing/pricing-page.html @@ -1774,7 +1834,7 @@ Prova Premium apps/client/src/app/components/user-account-membership/user-account-membership.html - 43 + 42 @@ -1782,7 +1842,7 @@ Riscatta il buono apps/client/src/app/components/user-account-membership/user-account-membership.html - 56 + 55 @@ -1910,7 +1970,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 92 + 91 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -1918,11 +1978,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 109 + 120 libs/ui/src/lib/activities-table/activities-table.component.html - 201 + 209 @@ -2282,7 +2342,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 91 + 102 @@ -2294,11 +2354,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 142 + 153 libs/ui/src/lib/activities-table/activities-table.component.html - 222 + 230 @@ -2306,15 +2366,15 @@ Prezzo unitario apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 162 + 173 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 217 + 228 libs/ui/src/lib/activities-table/activities-table.component.html - 251 + 259 @@ -2322,15 +2382,15 @@ Commissione apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 231 + 242 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 256 + 267 libs/ui/src/lib/activities-table/activities-table.component.html - 280 + 288 @@ -2338,7 +2398,7 @@ Nota apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 248 + 247 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -2346,7 +2406,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 265 + 276 @@ -2354,15 +2414,15 @@ Classe asset apps/client/src/app/components/admin-market-data/admin-market-data.html - 42 + 60 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 120 + 119 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 189 + 188 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -2370,7 +2430,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 280 + 291 @@ -2442,7 +2502,7 @@ Ghostfolio ti permette di tenere traccia della tua ricchezza. apps/client/src/app/pages/public/public-page.html - 147,149 + 147 @@ -2482,7 +2542,7 @@ Accetto di aver memorizzato il mio Token di sicurezza sopra citato in un luogo sicuro. Se lo perdo, non posso recuperare il mio account. apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html - 31,34 + 31 @@ -2530,7 +2590,7 @@ Bozza libs/ui/src/lib/activities-table/activities-table.component.html - 181 + 189 @@ -2546,11 +2606,11 @@ Esporta le attività libs/ui/src/lib/activities-table/activities-table.component.html - 44 + 47 libs/ui/src/lib/activities-table/activities-table.component.html - 463 + 476 @@ -2558,11 +2618,11 @@ Esporta le bozze come ICS libs/ui/src/lib/activities-table/activities-table.component.html - 54 + 59 libs/ui/src/lib/activities-table/activities-table.component.html - 473 + 488 @@ -2570,7 +2630,7 @@ Clona libs/ui/src/lib/activities-table/activities-table.component.html - 494 + 513 @@ -2578,7 +2638,7 @@ Esporta la bozza come ICS libs/ui/src/lib/activities-table/activities-table.component.html - 502 + 523 @@ -2706,15 +2766,15 @@ Sottoclasse asset apps/client/src/app/components/admin-market-data/admin-market-data.html - 51 + 69 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 129 + 128 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 202 + 201 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -2722,7 +2782,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 296 + 307 @@ -2770,7 +2830,7 @@ Settore apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 144 + 143 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -2782,7 +2842,7 @@ Paese apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 153 + 152 apps/client/src/app/components/admin-users/admin-users.html @@ -2858,7 +2918,7 @@ Numero di settori apps/client/src/app/components/admin-market-data/admin-market-data.html - 87 + 105 @@ -2866,7 +2926,7 @@ Numero di paesi apps/client/src/app/components/admin-market-data/admin-market-data.html - 96 + 114 @@ -2876,6 +2936,10 @@ apps/client/src/app/components/home-market/home-market.component.ts 24 + + libs/ui/src/lib/i18n.ts + 65 + Greed @@ -2884,6 +2948,10 @@ apps/client/src/app/components/home-market/home-market.component.ts 25 + + libs/ui/src/lib/i18n.ts + 66 + Filter by account or tag... @@ -2906,7 +2974,7 @@ Filtra per... apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 279 + 281 @@ -2922,7 +2990,7 @@ Salve, ha condiviso un Portafoglio con te! apps/client/src/app/pages/public/public-page.html - 4,7 + 4 @@ -3310,7 +3378,7 @@ Conteggio attività apps/client/src/app/components/admin-market-data/admin-market-data.html - 69 + 87 @@ -3326,7 +3394,7 @@ Mappatura dei simboli apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 226 + 225 @@ -3362,7 +3430,7 @@ Registrazione utente apps/client/src/app/components/admin-overview/admin-overview.html - 82 + 119 @@ -3378,7 +3446,7 @@ Importa apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 80 + 79 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html @@ -3530,7 +3598,7 @@ Protezione delle informazioni sensibili come le prestazioni assolute e i valori quantitativi apps/client/src/app/components/user-account-settings/user-account-settings.html - 8,11 + 8 @@ -3538,7 +3606,7 @@ Esperienza priva di distrazioni per i periodi più turbolenti apps/client/src/app/components/user-account-settings/user-account-settings.html - 138,140 + 138 @@ -3546,7 +3614,7 @@ Un'anteprima delle funzionalità in arrivo apps/client/src/app/components/user-account-settings/user-account-settings.html - 173,175 + 173 @@ -3554,7 +3622,7 @@ Sei un investitore ambizioso che ha bisogno di un quadro completo? apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 15,17 + 15 @@ -3646,7 +3714,7 @@ Per gli investitori esperti di tecnologia che preferiscono gestire Ghostfolio sulla propria infrastruttura. apps/client/src/app/pages/pricing/pricing-page.html - 36,39 + 36 @@ -3722,7 +3790,7 @@ Per i nuovi investitori che hanno appena iniziato a fare trading. apps/client/src/app/pages/pricing/pricing-page.html - 150,152 + 150 @@ -3742,7 +3810,7 @@ Per gli investitori ambiziosi che hanno bisogno di un quadro completo dei propri asset finanziari. apps/client/src/app/pages/pricing/pricing-page.html - 225,228 + 225 @@ -3758,7 +3826,7 @@ Inizia apps/client/src/app/pages/pricing/pricing-page.html - 363,365 + 363 @@ -3882,7 +3950,7 @@ Ops! Impossibile ottenere il tasso di cambio storico da apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 247 + 258 @@ -3926,7 +3994,7 @@ Rinnova apps/client/src/app/components/user-account-membership/user-account-membership.html - 22 + 21 @@ -3942,7 +4010,7 @@ La nostra offerta cloud ufficiale Ghostfolio Premium è il modo più semplice per iniziare. Grazie al risparmio di tempo, questa è l'opzione migliore per la maggior parte delle persone. I ricavi vengono utilizzati per coprire l'infrastruttura di hosting e per finanziare lo sviluppo continuo di Ghostfolio. apps/client/src/app/pages/pricing/pricing-page.html - 6,11 + 6 @@ -3950,7 +4018,7 @@ Imita l'utente apps/client/src/app/components/admin-users/admin-users.html - 207 + 208 @@ -3958,7 +4026,7 @@ Elimina l'utente apps/client/src/app/components/admin-users/admin-users.html - 215 + 218 @@ -3982,7 +4050,7 @@ Elimina tutte le attività libs/ui/src/lib/activities-table/activities-table.component.html - 62 + 69 @@ -4034,7 +4102,7 @@ Aggiornamento del saldo di cassa apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 83 + 94 @@ -4050,7 +4118,7 @@ Effettua oggi stesso l'aggiornamento a Ghostfolio Premium e ottieni l'accesso a funzionalità esclusive per migliorare la tua esperienza di investimento: apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 18,21 + 18 @@ -4058,7 +4126,7 @@ Ottieni gli strumenti per gestire efficacemente le tue finanze e perfezionare la tua strategia di investimento personale. apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 48,51 + 48 @@ -4066,7 +4134,7 @@ Aggiungi la piattaforma apps/client/src/app/components/admin-platform/admin-platform.component.html - 11,13 + 11 @@ -4154,7 +4222,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 444 + 453 @@ -4162,11 +4230,11 @@ Importa i dividendi libs/ui/src/lib/activities-table/activities-table.component.html - 34 + 35 libs/ui/src/lib/activities-table/activities-table.component.html - 453 + 464 @@ -4238,7 +4306,7 @@ Se andassi in pensione oggi, potresti prelevare all'anno o al mese, sulla base dei tuoi asset totali pari a e un tasso di prelievo del 4%. apps/client/src/app/pages/portfolio/fire/fire-page.html - 57,90 + 57 @@ -4322,7 +4390,7 @@ Importazione ed esportazione apps/client/src/app/pages/features/features-page.html - 115,117 + 115 @@ -4394,7 +4462,7 @@ Configurazione dello scraper apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 237 + 236 @@ -4418,7 +4486,7 @@ Scopri le alternative open source per gli strumenti di finanza personale apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 4,6 + 4 @@ -4552,6 +4620,46 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 67 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + Origin @@ -4684,6 +4792,46 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 72 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + Region @@ -4816,137 +4964,217 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 77 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + Available in Disponibile in apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 @@ -5080,6 +5308,46 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 104 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 111 @@ -5210,43 +5478,43 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -5336,6 +5604,102 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 125 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 136 @@ -5464,6 +5828,38 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 136 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 150 @@ -5592,6 +5988,78 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 150 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 157 @@ -5850,43 +6318,43 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -5976,73 +6444,133 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 176 - - - ❌ No - ❌ No apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 176 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 176 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 176 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 176 + + + + ❌ No + ❌ No + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -6108,6 +6636,70 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 106 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 129 @@ -6236,6 +6828,82 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 129 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 140 @@ -6494,43 +7162,43 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -6622,67 +7290,83 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 159 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 159 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 159 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -6750,107 +7434,107 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -6876,3565 +7560,4477 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 178 - - - ❌ No - ❌ No apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 - - - Self-Hosting - Self-hosting apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 178 + + + ❌ No + ❌ No apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 - - - Use anonymously - Usalo in modo anonimo apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 + + + Self-Hosting + Self-hosting apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 - - - Free Plan - Piano gratuito apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 + + + Use anonymously + Usalo in modo anonimo apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 - - - Notes - Note apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 - - - Effortlessly track, analyze, and visualize your wealth with Ghostfolio. - Monitora, analizza e visualizza facilmente la tua ricchezza con Ghostfolio. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 145 + + + Free Plan + Piano gratuito apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 - - - Personal Finance Tools - Strumenti di finanza personale apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 + + + Notes + Note apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 - - - Guides - Guide - apps/client/src/app/pages/resources/resources-page.html - 5 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Glossary - Glossario - apps/client/src/app/pages/resources/resources-page.html - 75 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Stocks, ETFs, bonds, cryptocurrencies, commodities - Azioni, ETF, obbligazioni, criptovalute e materie prime - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 21 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 51 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Mortgages, personal loans, credit cards - Mutui, prestiti personali, carte di credito - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 45 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Luxury items, real estate, private companies - Articoli di lusso, immobili, aziende private - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 57 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Buy - Compra - libs/ui/src/lib/i18n.ts - 30 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Valuable - Prezioso - libs/ui/src/lib/i18n.ts - 34 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - ETFs without Countries - ETF senza paesi - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 70 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - ETFs without Sectors - ETF senza settori - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 75 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Assets - Asset - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Preset - Preimpostato - libs/ui/src/lib/i18n.ts - 21 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - By Market - Per mercato - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 177 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Asia-Pacific - Asia e Pacifico - libs/ui/src/lib/i18n.ts - 5 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Japan - Giappone - libs/ui/src/lib/i18n.ts - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Welcome to Ghostfolio - Benvenuto su Ghostfolio - apps/client/src/app/components/home-overview/home-overview.html - 9 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Setup your accounts - Configura i tuoi account - apps/client/src/app/components/home-overview/home-overview.html - 17 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Get a comprehensive financial overview by adding your bank and brokerage accounts. - Ottieni una panoramica finanziaria completa aggiungendo i tuoi conti bancari e di trading. - apps/client/src/app/components/home-overview/home-overview.html - 19,20 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Capture your activities - Cattura le tue attività - apps/client/src/app/components/home-overview/home-overview.html - 26 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Record your investment activities to keep your portfolio up to date. - Registra le tue attività di investimento per tenere aggiornato il tuo portafoglio. - apps/client/src/app/components/home-overview/home-overview.html - 28,29 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Monitor and analyze your portfolio - Monitora e analizza il tuo portafoglio - apps/client/src/app/components/home-overview/home-overview.html - 35 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Track your progress in real-time with comprehensive analysis and insights. - Monitora i tuoi progressi in tempo reale, con analisi e approfondimenti completi. - apps/client/src/app/components/home-overview/home-overview.html - 37,38 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - No data available - Nessun dato disponibile + + Effortlessly track, analyze, and visualize your wealth with Ghostfolio. + Monitora, analizza e visualizza facilmente la tua ricchezza con Ghostfolio. - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 254 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 - apps/client/src/app/pages/public/public-page.html - 123 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 - - - Ready to take control of your personal finances? - Sei pronto a prendere il controllo delle tue finanze personali? - apps/client/src/app/components/home-overview/home-overview.html - 10 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 - + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + + Personal Finance Tools + Strumenti di finanza personale + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + + Guides + Guide + + apps/client/src/app/pages/resources/resources-page.html + 5 + + + + Glossary + Glossario + + apps/client/src/app/pages/resources/resources-page.html + 75 + + + + Stocks, ETFs, bonds, cryptocurrencies, commodities + Azioni, ETF, obbligazioni, criptovalute e materie prime + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 21 + + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 51 + + + + Mortgages, personal loans, credit cards + Mutui, prestiti personali, carte di credito + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 45 + + + + Luxury items, real estate, private companies + Articoli di lusso, immobili, aziende private + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 57 + + + + Buy + Compra + + libs/ui/src/lib/i18n.ts + 30 + + + + Valuable + Prezioso + + libs/ui/src/lib/i18n.ts + 34 + + + + ETFs without Countries + ETF senza paesi + + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 71 + + + + ETFs without Sectors + ETF senza settori + + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 76 + + + + Assets + Asset + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 190 + + + + Preset + Preimpostato + + libs/ui/src/lib/i18n.ts + 21 + + + + By Market + Per mercato + + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 177 + + + + Asia-Pacific + Asia e Pacifico + + libs/ui/src/lib/i18n.ts + 5 + + + + Japan + Giappone + + libs/ui/src/lib/i18n.ts + 16 + + + + Welcome to Ghostfolio + Benvenuto su Ghostfolio + + apps/client/src/app/components/home-overview/home-overview.html + 9 + + + + Setup your accounts + Configura i tuoi account + + apps/client/src/app/components/home-overview/home-overview.html + 17 + + + + Get a comprehensive financial overview by adding your bank and brokerage accounts. + Ottieni una panoramica finanziaria completa aggiungendo i tuoi conti bancari e di trading. + + apps/client/src/app/components/home-overview/home-overview.html + 19 + + + + Capture your activities + Cattura le tue attività + + apps/client/src/app/components/home-overview/home-overview.html + 26 + + + + Record your investment activities to keep your portfolio up to date. + Registra le tue attività di investimento per tenere aggiornato il tuo portafoglio. + + apps/client/src/app/components/home-overview/home-overview.html + 28 + + + + Monitor and analyze your portfolio + Monitora e analizza il tuo portafoglio + + apps/client/src/app/components/home-overview/home-overview.html + 35 + + + + Track your progress in real-time with comprehensive analysis and insights. + Monitora i tuoi progressi in tempo reale, con analisi e approfondimenti completi. + + apps/client/src/app/components/home-overview/home-overview.html + 37 + + + + No data available + Nessun dato disponibile + + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 254 + + + apps/client/src/app/pages/public/public-page.html + 123 + + + + Ready to take control of your personal finances? + Sei pronto a prendere il controllo delle tue finanze personali? + + apps/client/src/app/components/home-overview/home-overview.html + 10 + + Setup accounts Configura gli account - apps/client/src/app/components/home-overview/home-overview.html - 50 + apps/client/src/app/components/home-overview/home-overview.html + 50 + + + + Biometric Authentication + Autenticazione biometrica + + apps/client/src/app/components/user-account-settings/user-account-settings.html + 154 + + + + At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. + Per Ghostfolio la trasparenza è al centro dei propri valori. Pubblichiamo il codice sorgente come software open source (OSS) sotto la licenza AGPL-3.0 e condividiamo apertamente le metriche chiave aggregate dello stato operativo della piattaforma. + + apps/client/src/app/pages/open/open-page.html + 6 + + + + Active Users + Utenti attivi + + apps/client/src/app/pages/open/open-page.html + 40 + + + apps/client/src/app/pages/open/open-page.html + 62 + + + + New Users + Nuovi utenti + + apps/client/src/app/pages/open/open-page.html + 51 + + + + Users in Slack community + Utenti nella comunità Slack + + apps/client/src/app/pages/open/open-page.html + 75 + + + + Contributors on GitHub + Contributori su GitHub + + apps/client/src/app/pages/open/open-page.html + 89 + + + + Stars on GitHub + Stelle su GitHub + + apps/client/src/app/pages/landing/landing-page.html + 93 + + + apps/client/src/app/pages/open/open-page.html + 103 + + + + Pulls on Docker Hub + Estrazioni su Docker Hub + + apps/client/src/app/pages/landing/landing-page.html + 111 + + + apps/client/src/app/pages/open/open-page.html + 117 + + + + Uptime + Tempo di attività + + apps/client/src/app/pages/open/open-page.html + 132 + + + + Export Data + Esporta dati + + apps/client/src/app/components/user-account-settings/user-account-settings.html + 195 + + + + Currencies + Valute + + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 66 + + + + Our + Nostri + + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 6 + + + + Visit + Visita + + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 28 + + + + Discover other exciting Open Source Software projects + Scopri altri interessanti progetti di software open source + + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 9 + + + + Frequently Asked Questions (FAQ) + Domande più frequenti (FAQ) + + apps/client/src/app/pages/faq/faq-page.html + 4 + + + + Check out the numerous features of Ghostfolio to manage your wealth + Scopri le numerose funzionalità di Ghostfolio per gestire la tua ricchezza + + apps/client/src/app/pages/features/features-page.html + 6 + + + + Discover the latest Ghostfolio updates and insights on personal finance + Scopri gli ultimi aggiornamenti e approfondimenti di Ghostfolio sulla finanza personale + + apps/client/src/app/pages/blog/blog-page.html + 7 + + + + If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. + Se preferisci eseguire Ghostfolio sulla tua infrastruttura, puoi trovare il codice sorgente e ulteriori istruzioni su GitHub. + + apps/client/src/app/pages/pricing/pricing-page.html + 24 + + + + Manage your wealth like a boss + Gestisci la tua ricchezza come un capo + + apps/client/src/app/pages/landing/landing-page.html + 11 + + + + Ghostfolio is a privacy-first, open source dashboard for your personal finances. Break down your asset allocation, know your net worth and make solid, data-driven investment decisions. + Ghostfolio è uno strumento open source e rispettoso della privacy per la gestione delle tue finanze personali. Analizza la tua allocazione degli asset, conosci il tuo patrimonio netto e prendi decisioni di investimento solide e basate sui dati. + + apps/client/src/app/pages/landing/landing-page.html + 15 + + + + Get Started + Inizia + + apps/client/src/app/pages/landing/landing-page.html + 47 + + + apps/client/src/app/pages/landing/landing-page.html + 431 + + + + or + o + + apps/client/src/app/pages/landing/landing-page.html + 52 + + + + Monthly Active Users + Utenti attivi mensili + + apps/client/src/app/pages/landing/landing-page.html + 75 + + + + As seen in + Come si vede su + + apps/client/src/app/pages/landing/landing-page.html + 119 + + + + Protect your assets. Refine your personal investment strategy. + Proteggi i tuoi asset. Perfeziona la tua strategia di investimento personale. + + apps/client/src/app/pages/landing/landing-page.html + 221 + + + + Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. + Ghostfolio permette alle persone impegnate di tenere traccia di azioni, ETF o criptovalute senza essere tracciate. + + apps/client/src/app/pages/landing/landing-page.html + 225 + + + + 360° View + Vista a 360° + + apps/client/src/app/pages/landing/landing-page.html + 236 + + + + Web3 Ready + Pronto per il Web3 + + apps/client/src/app/pages/landing/landing-page.html + 247 + + + + Use Ghostfolio anonymously and own your financial data. + Usa Ghostfolio in modo anonimo e possiedi i tuoi dati finanziari. + + apps/client/src/app/pages/landing/landing-page.html + 249 + + + + Open Source + Open source + + apps/client/src/app/pages/landing/landing-page.html + 257 + + + + Benefit from continuous improvements through a strong community. + Beneficia dei continui miglioramenti grazie a una forte comunità. + + apps/client/src/app/pages/landing/landing-page.html + 259 + + + + Why Ghostfolio? + Perché Ghostfolio? + + apps/client/src/app/pages/landing/landing-page.html + 268 + + + + Ghostfolio is for you if you are... + Ghostfolio è per te se... + + apps/client/src/app/pages/landing/landing-page.html + 269 + + + + trading stocks, ETFs or cryptocurrencies on multiple platforms + fai trading di azioni, ETF o criptovalute su più piattaforme + + apps/client/src/app/pages/landing/landing-page.html + 276 + + + + pursuing a buy & hold strategy + persegui una strategia buy & hold + + apps/client/src/app/pages/landing/landing-page.html + 282 + + + + interested in getting insights of your portfolio composition + sei interessato a conoscere la composizione del tuo portafoglio + + apps/client/src/app/pages/landing/landing-page.html + 287 + + + + valuing privacy and data ownership + valorizzi la privacy e la proprietà dei dati + + apps/client/src/app/pages/landing/landing-page.html + 292 + + + + into minimalism + sei per il minimalismo + + apps/client/src/app/pages/landing/landing-page.html + 295 + + + + caring about diversifying your financial resources + ti interessa diversificare le tue risorse finanziarie + + apps/client/src/app/pages/landing/landing-page.html + 299 + + + + interested in financial independence + sei interessato all'indipendenza finanziaria + + apps/client/src/app/pages/landing/landing-page.html + 303 + + + + saying no to spreadsheets in + non vuoi utilizzare il foglio elettronico nel + + apps/client/src/app/pages/landing/landing-page.html + 307 + + + + still reading this list + stai ancora leggendo questo elenco + + apps/client/src/app/pages/landing/landing-page.html + 310 + + + + Learn more about Ghostfolio + Ulteriori informazioni su Ghostfolio + + apps/client/src/app/pages/landing/landing-page.html + 315 + + + + What our users are saying + Cosa dicono i nostri utenti + + apps/client/src/app/pages/landing/landing-page.html + 323 + + + + Members from around the globe are using Ghostfolio Premium + Membri da tutto il mondo utilizzano Ghostfolio Premium + + apps/client/src/app/pages/landing/landing-page.html + 358 + + + + How does Ghostfolio work? + Come funziona Ghostfolio? + + apps/client/src/app/pages/landing/landing-page.html + 373 + + + + Sign up anonymously* + Iscriviti in modo anonimo* + + apps/client/src/app/pages/landing/landing-page.html + 382 + + + + * no e-mail address nor credit card required + * non è richiesto alcun indirizzo email né la carta di credito + + apps/client/src/app/pages/landing/landing-page.html + 384 + + + + Add any of your historical transactions + Aggiungi le tue transazioni storiche + + apps/client/src/app/pages/landing/landing-page.html + 395 + + + + Get valuable insights of your portfolio composition + Ottieni informazioni preziose sulla composizione del tuo portafoglio + + apps/client/src/app/pages/landing/landing-page.html + 407 + + + + Are you ready? + Seipronto? + + apps/client/src/app/pages/landing/landing-page.html + 419 + + + + Join now or check out the example account + Iscriviti adesso o consulta l'account di esempio + + apps/client/src/app/pages/landing/landing-page.html + 420 + + + + Live Demo + Demo in tempo reale + + apps/client/src/app/pages/landing/landing-page.html + 55 + + + apps/client/src/app/pages/landing/landing-page.html + 436 + + + + Get the full picture of your personal finances across multiple platforms. + Ottieni un quadro completo delle tue finanze personali su più piattaforme. + + apps/client/src/app/pages/landing/landing-page.html + 238 + + + + Get started in only 3 steps + Inizia in soli 3 passi + + apps/client/src/app/pages/landing/landing-page.html + 376 + + + + faq + domande-piu-frequenti + + apps/client/src/app/app-routing.module.ts + 9 + + + apps/client/src/app/app.component.ts + 54 + + + apps/client/src/app/pages/about/overview/about-overview-page.component.ts + 19 + + + + features + funzionalita + + apps/client/src/app/app-routing.module.ts + 10 + + + apps/client/src/app/app.component.ts + 55 + + + apps/client/src/app/components/header/header.component.ts + 72 + + + apps/client/src/app/components/header/header.component.ts + 77 + + + apps/client/src/app/pages/about/overview/about-overview-page.component.ts + 20 + + + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 14 + + + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 15 + + + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023/hacktoberfest-2023-debriefing-page.component.ts + 14 + + + apps/client/src/app/pages/faq/faq-page.component.ts + 13 + + + apps/client/src/app/pages/pricing/pricing-page.component.ts + 34 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts + 26 - - - Biometric Authentication - Autenticazione biometrica - apps/client/src/app/components/user-account-settings/user-account-settings.html - 154 + apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts + 26 - - - At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. - Per Ghostfolio la trasparenza è al centro dei propri valori. Pubblichiamo il codice sorgente come software open source (OSS) sotto la licenza AGPL-3.0 e condividiamo apertamente le metriche chiave aggregate dello stato operativo della piattaforma. - apps/client/src/app/pages/open/open-page.html - 6,22 + apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts + 26 - - - Active Users - Utenti attivi - apps/client/src/app/pages/open/open-page.html - 40 + apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts + 26 - apps/client/src/app/pages/open/open-page.html - 62 + apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts + 26 - - - New Users - Nuovi utenti - apps/client/src/app/pages/open/open-page.html - 51 + apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts + 26 - - - Users in Slack community - Utenti nella comunità Slack - apps/client/src/app/pages/open/open-page.html - 75 + apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts + 26 - - - Contributors on GitHub - Contributori su GitHub - apps/client/src/app/pages/open/open-page.html - 89 + apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts + 26 - - - Stars on GitHub - Stelle su GitHub - apps/client/src/app/pages/landing/landing-page.html - 93 + apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts + 26 - apps/client/src/app/pages/open/open-page.html - 103 + apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts + 26 - - - Pulls on Docker Hub - Estrazioni su Docker Hub - apps/client/src/app/pages/landing/landing-page.html - 111 + apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts + 26 - apps/client/src/app/pages/open/open-page.html - 117 + apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts + 26 - - - Uptime - Tempo di attività - apps/client/src/app/pages/open/open-page.html - 132 + apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts + 26 - - - Export Data - Esporta dati - apps/client/src/app/components/user-account-settings/user-account-settings.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts + 26 - - - Currencies - Valute - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 65 + apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts + 26 - - - Our - Nostri - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 6 + apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts + 26 - - - Visit - Visita - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 28 + apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts + 26 - - - Discover other exciting Open Source Software projects - Scopri altri interessanti progetti di software open source - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 9 + apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts + 26 - - - Frequently Asked Questions (FAQ) - Domande più frequenti (FAQ) - apps/client/src/app/pages/faq/faq-page.html - 4,6 + apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts + 26 - - - Check out the numerous features of Ghostfolio to manage your wealth - Scopri le numerose funzionalità di Ghostfolio per gestire la tua ricchezza - apps/client/src/app/pages/features/features-page.html - 6,8 + apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts + 26 - - - Discover the latest Ghostfolio updates and insights on personal finance - Scopri gli ultimi aggiornamenti e approfondimenti di Ghostfolio sulla finanza personale - apps/client/src/app/pages/blog/blog-page.html - 7,8 + apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts + 26 - - - If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. - Se preferisci eseguire Ghostfolio sulla tua infrastruttura, puoi trovare il codice sorgente e ulteriori istruzioni su GitHub. - apps/client/src/app/pages/pricing/pricing-page.html - 24,28 + apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts + 26 - - - Manage your wealth like a boss - Gestisci la tua ricchezza come un capo - apps/client/src/app/pages/landing/landing-page.html - 11,13 + apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts + 26 - - - Ghostfolio is a privacy-first, open source dashboard for your personal finances. Break down your asset allocation, know your net worth and make solid, data-driven investment decisions. - Ghostfolio è uno strumento open source e rispettoso della privacy per la gestione delle tue finanze personali. Analizza la tua allocazione degli asset, conosci il tuo patrimonio netto e prendi decisioni di investimento solide e basate sui dati. - apps/client/src/app/pages/landing/landing-page.html - 15,19 + apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts + 26 - - - Get Started - Inizia - apps/client/src/app/pages/landing/landing-page.html - 47,49 + apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts + 26 - apps/client/src/app/pages/landing/landing-page.html - 431,433 + apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts + 26 - - - or - o - apps/client/src/app/pages/landing/landing-page.html - 52,54 + apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts + 26 - - - Monthly Active Users - Utenti attivi mensili - apps/client/src/app/pages/landing/landing-page.html - 75 + apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts + 26 - - - As seen in - Come si vede su - apps/client/src/app/pages/landing/landing-page.html - 119 + apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts + 26 - - - Protect your assets. Refine your personal investment strategy. - Proteggi i tuoi asset. Perfeziona la tua strategia di investimento personale. - apps/client/src/app/pages/landing/landing-page.html - 221,224 + apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts + 26 - - Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. - Ghostfolio permette alle persone impegnate di tenere traccia di azioni, ETF o criptovalute senza essere tracciate. + + about + informazioni-su + + apps/client/src/app/app-routing.module.ts + 8 + + + apps/client/src/app/app.component.ts + 47 + + + apps/client/src/app/app.component.ts + 48 + + + apps/client/src/app/app.component.ts + 49 + + + apps/client/src/app/app.component.ts + 51 + + + apps/client/src/app/components/header/header.component.ts + 71 + + + apps/client/src/app/components/header/header.component.ts + 76 + + + apps/client/src/app/pages/about/about-page.component.ts + 44 + + + apps/client/src/app/pages/about/about-page.component.ts + 49 + + + apps/client/src/app/pages/about/about-page.component.ts + 54 + + + apps/client/src/app/pages/about/about-page.component.ts + 62 + + + apps/client/src/app/pages/about/about-page.component.ts + 73 + - apps/client/src/app/pages/landing/landing-page.html - 225,228 + apps/client/src/app/pages/blog/2023/08/ghostfolio-joins-oss-friends/ghostfolio-joins-oss-friends-page.component.ts + 13 - - - 360° View - Vista a 360° - apps/client/src/app/pages/landing/landing-page.html - 236 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 13 - - - Web3 Ready - Pronto per il Web3 - apps/client/src/app/pages/landing/landing-page.html - 247 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 14 - - - Use Ghostfolio anonymously and own your financial data. - Usa Ghostfolio in modo anonimo e possiedi i tuoi dati finanziari. - apps/client/src/app/pages/landing/landing-page.html - 249,251 + apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.component.ts + 13 - - - Open Source - Open source - apps/client/src/app/pages/landing/landing-page.html - 257 + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023/hacktoberfest-2023-debriefing-page.component.ts + 13 - - - Benefit from continuous improvements through a strong community. - Beneficia dei continui miglioramenti grazie a una forte comunità. - apps/client/src/app/pages/landing/landing-page.html - 259,261 + apps/client/src/app/pages/landing/landing-page.component.ts + 25 - - - Why Ghostfolio? - Perché Ghostfolio? - apps/client/src/app/pages/landing/landing-page.html - 268 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 22 - - - Ghostfolio is for you if you are... - Ghostfolio è per te se... - apps/client/src/app/pages/landing/landing-page.html - 269,271 + apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts + 25 - - - trading stocks, ETFs or cryptocurrencies on multiple platforms - fai trading di azioni, ETF o criptovalute su più piattaforme - apps/client/src/app/pages/landing/landing-page.html - 276,277 + apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts + 25 - - - pursuing a buy & hold strategy - persegui una strategia buy & hold - apps/client/src/app/pages/landing/landing-page.html - 282 + apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts + 25 - - - interested in getting insights of your portfolio composition - sei interessato a conoscere la composizione del tuo portafoglio - apps/client/src/app/pages/landing/landing-page.html - 287 + apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts + 25 - - - valuing privacy and data ownership - valorizzi la privacy e la proprietà dei dati - apps/client/src/app/pages/landing/landing-page.html - 292 + apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts + 25 - - - into minimalism - sei per il minimalismo - apps/client/src/app/pages/landing/landing-page.html - 295 + apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts + 25 - - - caring about diversifying your financial resources - ti interessa diversificare le tue risorse finanziarie - apps/client/src/app/pages/landing/landing-page.html - 299 + apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts + 25 - - - interested in financial independence - sei interessato all'indipendenza finanziaria - apps/client/src/app/pages/landing/landing-page.html - 303 + apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts + 25 - - - saying no to spreadsheets in - non vuoi utilizzare il foglio elettronico nel - apps/client/src/app/pages/landing/landing-page.html - 307 + apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts + 25 - - - still reading this list - stai ancora leggendo questo elenco - apps/client/src/app/pages/landing/landing-page.html - 310 + apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts + 25 - - - Learn more about Ghostfolio - Ulteriori informazioni su Ghostfolio - apps/client/src/app/pages/landing/landing-page.html - 315 + apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts + 25 - - - What our users are saying - Cosa dicono i nostri utenti - apps/client/src/app/pages/landing/landing-page.html - 323,325 + apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts + 25 - - - Members from around the globe are using Ghostfolio Premium - Membri da tutto il mondo utilizzano Ghostfolio Premium - apps/client/src/app/pages/landing/landing-page.html - 358,360 + apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts + 25 - - - How does Ghostfolio work? - Come funziona Ghostfolio? - apps/client/src/app/pages/landing/landing-page.html - 373,375 + apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts + 25 - - - Sign up anonymously* - Iscriviti in modo anonimo* - apps/client/src/app/pages/landing/landing-page.html - 382 + apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts + 25 - - - * no e-mail address nor credit card required - * non è richiesto alcun indirizzo email né la carta di credito - apps/client/src/app/pages/landing/landing-page.html - 384 + apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts + 25 - - - Add any of your historical transactions - Aggiungi le tue transazioni storiche - apps/client/src/app/pages/landing/landing-page.html - 395,397 + apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts + 25 - - - Get valuable insights of your portfolio composition - Ottieni informazioni preziose sulla composizione del tuo portafoglio - apps/client/src/app/pages/landing/landing-page.html - 407,409 + apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts + 25 - - - Are you ready? - Seipronto? - apps/client/src/app/pages/landing/landing-page.html - 419 + apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts + 25 - - - Join now or check out the example account - Iscriviti adesso o consulta l'account di esempio - apps/client/src/app/pages/landing/landing-page.html - 420,423 + apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts + 25 - - - Live Demo - Demo in tempo reale - apps/client/src/app/pages/landing/landing-page.html - 55 + apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts + 25 - apps/client/src/app/pages/landing/landing-page.html - 436 + apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts + 25 - - - Get the full picture of your personal finances across multiple platforms. - Ottieni un quadro completo delle tue finanze personali su più piattaforme. - apps/client/src/app/pages/landing/landing-page.html - 238,241 + apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts + 25 - - - Get started in only 3 steps - Inizia in soli 3 passi - apps/client/src/app/pages/landing/landing-page.html - 376 + apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts + 25 - - - faq - domande-piu-frequenti - apps/client/src/app/app-routing.module.ts - 9 + apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts + 25 - apps/client/src/app/app.component.ts - 54 + apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts + 25 - apps/client/src/app/pages/about/overview/about-overview-page.component.ts - 19 + apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts + 25 - - - features - funzionalita - apps/client/src/app/app-routing.module.ts - 10 + apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts + 25 - apps/client/src/app/app.component.ts - 55 + apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts + 25 - apps/client/src/app/components/header/header.component.ts - 72 + apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts + 25 - apps/client/src/app/components/header/header.component.ts - 77 + apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts + 25 - apps/client/src/app/pages/about/overview/about-overview-page.component.ts - 20 + apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts + 25 - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts + 25 - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts + 25 - apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts + 25 - apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts + 25 - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 15 + apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts + 25 - apps/client/src/app/pages/faq/faq-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts + 25 - apps/client/src/app/pages/pricing/pricing-page.component.ts - 34 + apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts + 25 - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts + 25 - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts + 25 - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts + 25 + + + privacy-policy + informativa-sulla-privacy - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 26 + apps/client/src/app/app-routing.module.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 26 + apps/client/src/app/app.component.ts + 52 - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 26 + apps/client/src/app/pages/about/about-page.component.ts + 62 + + + license + licenza - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 26 + apps/client/src/app/app-routing.module.ts + 11 - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 26 + apps/client/src/app/app.component.ts + 49 - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 26 + apps/client/src/app/pages/about/about-page.component.ts + 54 + + + markets + mercati - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 26 + apps/client/src/app/app-routing.module.ts + 12 - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 26 + apps/client/src/app/app.component.ts + 56 - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 73 - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 78 - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 26 + apps/client/src/app/pages/faq/faq-page.component.ts + 14 + + + pricing + prezzi - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 26 + apps/client/src/app/app-routing.module.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 26 + apps/client/src/app/app.component.ts + 57 - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 74 - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 79 - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 26 + apps/client/src/app/components/home-summary/home-summary.component.ts + 124 - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 26 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 26 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 37 - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 26 + apps/client/src/app/core/http-response.interceptor.ts + 80 - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 26 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 26 + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 26 + apps/client/src/app/pages/faq/faq-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 26 + libs/ui/src/lib/membership-card/membership-card.component.ts + 13 - - about - informazioni-su + + register + iscrizione apps/client/src/app/app-routing.module.ts - 8 + 15 apps/client/src/app/app.component.ts - 47 + 58 - apps/client/src/app/app.component.ts - 48 + apps/client/src/app/components/header/header.component.ts + 80 - apps/client/src/app/app.component.ts - 49 + apps/client/src/app/core/auth.guard.ts + 53 - apps/client/src/app/app.component.ts - 51 + apps/client/src/app/pages/faq/faq-page.component.ts + 16 - apps/client/src/app/components/header/header.component.ts - 71 + apps/client/src/app/pages/features/features-page.component.ts + 17 - apps/client/src/app/components/header/header.component.ts - 76 + apps/client/src/app/pages/landing/landing-page.component.ts + 26 - apps/client/src/app/pages/about/about-page.component.ts - 44 + apps/client/src/app/pages/pricing/pricing-page.component.ts + 35 + + + resources + risorse - apps/client/src/app/pages/about/about-page.component.ts - 49 + apps/client/src/app/app-routing.module.ts + 16 - apps/client/src/app/pages/about/about-page.component.ts - 54 + apps/client/src/app/app.component.ts + 59 - apps/client/src/app/pages/about/about-page.component.ts - 62 + apps/client/src/app/components/header/header.component.ts + 75 - apps/client/src/app/pages/about/about-page.component.ts - 73 + apps/client/src/app/components/header/header.component.ts + 81 - apps/client/src/app/pages/blog/2023/08/ghostfolio-joins-oss-friends/ghostfolio-joins-oss-friends-page.component.ts - 13 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 14 - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 14 + + + apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts 13 - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts 14 - apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.component.ts - 13 + apps/client/src/app/pages/features/features-page.component.ts + 18 - apps/client/src/app/pages/landing/landing-page.component.ts - 25 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 18 + apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 25 + 28 - - - privacy-policy - informativa-sulla-privacy - apps/client/src/app/app-routing.module.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts + 28 - apps/client/src/app/app.component.ts - 52 + apps/client/src/app/pages/resources/resources-page.component.ts + 17 + + + This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. + Questa pagina panoramica presenta una raccolta curata di strumenti di finanza personale confrontati con l'alternativa open source Ghostfolio. Se apprezzi la trasparenza, la privacy dei dati e la collaborazione con la comunità, Ghostfolio ti offre un'ottima opportunità per prendere il controllo della tua gestione finanziaria. - apps/client/src/app/pages/about/about-page.component.ts - 62 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 8 - - license - licenza + + Explore the links below to compare a variety of personal finance tools with Ghostfolio. + Esplora i link qui sotto per confrontare una serie di strumenti di finanza personale con Ghostfolio. - apps/client/src/app/app-routing.module.ts - 11 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 16 + + + Open Source Alternative to + L'alternativa open source a - apps/client/src/app/app.component.ts - 49 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 35 + + + Open Source Alternative to + L'alternativa open source a - apps/client/src/app/pages/about/about-page.component.ts - 54 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 25 - - markets - mercati + + The Open Source Alternative to + L'alternativa open source a - apps/client/src/app/app-routing.module.ts - 12 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/app.component.ts - 56 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/header/header.component.ts - 73 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/header/header.component.ts - 78 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/faq/faq-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - - - pricing - prezzi - apps/client/src/app/app-routing.module.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/app.component.ts - 57 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/header/header.component.ts - 74 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/header/header.component.ts - 79 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/home-summary/home-summary.component.ts - 124 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 37 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/core/http-response.interceptor.ts - 80 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts - 15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/faq/faq-page.component.ts - 15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - libs/ui/src/lib/membership-card/membership-card.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - - - register - iscrizione - apps/client/src/app/app-routing.module.ts - 15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/app.component.ts - 58 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/header/header.component.ts - 80 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/core/auth.guard.ts - 53 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/faq/faq-page.component.ts - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/features/features-page.component.ts - 17 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/landing/landing-page.component.ts - 26 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/pricing/pricing-page.component.ts - 35 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - - - resources - risorse - apps/client/src/app/app-routing.module.ts - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/app.component.ts - 59 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. + Stai cercando un'alternativa open source a ? Ghostfolio è un potente strumento di gestione del portafoglio che fornisce alle persone una piattaforma completa per monitorare, analizzare e ottimizzare i propri investimenti. Che tu sia un investitore esperto o alle prime armi, Ghostfolio offre un'interfaccia utente intuitiva e un'ampia gamma di funzionalità per aiutarti a prendere decisioni informate e il controllo del tuo futuro finanziario. - apps/client/src/app/components/header/header.component.ts - 75 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/components/header/header.component.ts - 81 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 13 - apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/features/features-page.component.ts - 18 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/resources-page.component.ts - 17 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - - - This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. - Questa pagina panoramica presenta una raccolta curata di strumenti di finanza personale confrontati con l'alternativa open source Ghostfolio. Se apprezzi la trasparenza, la privacy dei dati e la collaborazione con la comunità, Ghostfolio ti offre un'ottima opportunità per prendere il controllo della tua gestione finanziaria. - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 8,15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - - Explore the links below to compare a variety of personal finance tools with Ghostfolio. - Esplora i link qui sotto per confrontare una serie di strumenti di finanza personale con Ghostfolio. + + Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. + Ghostfolio è un software open source (OSS) che offre un'alternativa economicamente vantaggiosa a particolarmente adatta a persone con un budget limitato, come quelle che perseguono l'indipendenza finanziaria e il pensionamento anticipato (FIRE). Grazie agli sforzi collettivi di una comunità di sviluppatori e di appassionati di finanza personale, Ghostfolio migliora continuamente le sue capacità, la sua sicurezza e la sua esperienza utente. - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 16,19 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26 - - - Open Source Alternative to - L'alternativa open source a - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 35,37 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26 - - - Open Source Alternative to - L'alternativa open source a - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 25 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26 - - - The Open Source Alternative to - L'alternativa open source a apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 - - - Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. - Stai cercando un'alternativa open source a ? Ghostfolio è un potente strumento di gestione del portafoglio che fornisce alle persone una piattaforma completa per monitorare, analizzare e ottimizzare i propri investimenti. Che tu sia un investitore esperto o alle prime armi, Ghostfolio offre un'interfaccia utente intuitiva e un'ampia gamma di funzionalità per aiutarti a prendere decisioni informate e il controllo del tuo futuro finanziario. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 + + + Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. + Analizziamo nel dettaglio la tabella di confronto qui sotto per comprendere a fondo come Ghostfolio si posiziona rispetto a . Esploreremo vari aspetti come le caratteristiche, la privacy dei dati, il prezzo e altro ancora, permettendoti di fare una scelta ben informata per le tue esigenze personali. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 - - - Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. - Ghostfolio è un software open source (OSS) che offre un'alternativa economicamente vantaggiosa a particolarmente adatta a persone con un budget limitato, come quelle che perseguono l'indipendenza finanziaria e il pensionamento anticipato (FIRE). Grazie agli sforzi collettivi di una comunità di sviluppatori e di appassionati di finanza personale, Ghostfolio migliora continuamente le sue capacità, la sua sicurezza e la sua esperienza utente. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 + + + Starting from / year + A partire da / anno apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 - - - Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. - Analizziamo nel dettaglio la tabella di confronto qui sotto per comprendere a fondo come Ghostfolio si posiziona rispetto a . Esploreremo vari aspetti come le caratteristiche, la privacy dei dati, il prezzo e altro ancora, permettendoti di fare una scelta ben informata per le tue esigenze personali. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 + + + Starting from / year + A partire da / anno apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 - - - Starting from / year - A partire da / anno apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 - - - Starting from / year - A partire da / anno apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 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 + + + 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 - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 - - - 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/product-page-template.html + 203 - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 203 - - - 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 - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 + + + 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 - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 - - - 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 - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 + + + Get Started + Inizia apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 - - - Get Started - Inizia apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 @@ -10442,23 +12038,23 @@ Svizzera apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 54 + 64 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 66 + 86 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 375 + 465 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 398 + 498 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 399 + 499 @@ -10466,15 +12062,15 @@ Globale apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 56 + 66 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 217 + 287 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 318 + 408 @@ -10482,35 +12078,67 @@ Stati Uniti apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 106 + 77 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 140 + 135 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 150 + 168 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 203 + 178 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 228 + 188 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 230 + 240 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 294 + 262 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 305 + 273 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 298 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 300 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 310 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 375 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 385 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 395 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 476 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 509 @@ -10518,7 +12146,7 @@ Belgio apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 118 + 147 @@ -10526,31 +12154,31 @@ Germania apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 95 + 124 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 129 + 158 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 172 + 220 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 182 + 230 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 192 + 251 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 215 + 285 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 250 + 331 @@ -10558,7 +12186,7 @@ Austria apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 160 + 208 @@ -10566,7 +12194,7 @@ Italia apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 261 + 342 @@ -10574,7 +12202,7 @@ Paesi Bassi apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 271 + 352 @@ -10582,7 +12210,7 @@ Thailandia apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 283 + 364 @@ -10590,7 +12218,7 @@ Nuova Zelanda apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 316 + 406 @@ -10598,11 +12226,11 @@ Repubblica Ceca apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 327 + 417 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 364 + 454 @@ -10678,7 +12306,7 @@ 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 - 187,188 + 198 @@ -10710,7 +12338,7 @@ Add Tag apps/client/src/app/components/admin-tag/admin-tag.component.html - 11,13 + 11 @@ -10742,15 +12370,15 @@ France apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 76 + 105 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 338 + 428 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 354 + 444 @@ -10758,7 +12386,7 @@ 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,101 + 100 @@ -10794,7 +12422,7 @@ Benchmark apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 220 + 219 @@ -10826,7 +12454,7 @@ To apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 21 + 29 @@ -10834,7 +12462,7 @@ Transfer apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 50 + 66 @@ -10842,7 +12470,7 @@ Finland apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 346 + 436 @@ -10894,7 +12522,7 @@ Asset Profile apps/client/src/app/components/admin-jobs/admin-jobs.html - 31,33 + 31 @@ -10902,7 +12530,7 @@ Do you really want to delete this asset profile? apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 182 + 184 @@ -10926,7 +12554,7 @@ 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,7 + 4 @@ -10942,7 +12570,7 @@ User apps/client/src/app/components/admin-users/admin-users.html - 29,31 + 29 @@ -10950,131 +12578,171 @@ Ghostfolio vs comparison table apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 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,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 @@ -11082,7 +12750,7 @@ Canada apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 388 + 488 @@ -11098,7 +12766,7 @@ app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 apps/client/src/app/pages/i18n/i18n-page.html - 8,11 + 8 @@ -11114,7 +12782,55 @@ Poland apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 86 + 115 + + + + South Africa + South Africa + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 197 + + + + Extreme Fear + Extreme Fear + + libs/ui/src/lib/i18n.ts + 63 + + + + Extreme Greed + Extreme Greed + + libs/ui/src/lib/i18n.ts + 64 + + + + Neutral + Neutral + + libs/ui/src/lib/i18n.ts + 67 + + + + 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 + + + + 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 diff --git a/apps/client/src/locales/messages.nl.xlf b/apps/client/src/locales/messages.nl.xlf index 0179578a2..96aaaa199 100644 --- a/apps/client/src/locales/messages.nl.xlf +++ b/apps/client/src/locales/messages.nl.xlf @@ -22,7 +22,7 @@ Het risico op verlies bij handelen kan aanzienlijk zijn. Het is niet aan te raden om geld te investeren dat je misschien op korte termijn nodig heeft. apps/client/src/app/app.component.html - 174,175 + 174 @@ -54,7 +54,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 156 + 164 @@ -98,7 +98,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 111 + 110 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -124,9 +124,13 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html 34 + + apps/client/src/app/components/admin-market-data/admin-market-data.html + 38 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 183 + 182 apps/client/src/app/components/admin-platform/admin-platform.component.html @@ -150,11 +154,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 103 + 114 libs/ui/src/lib/activities-table/activities-table.component.html - 171 + 179 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -170,7 +174,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 151 + 159 @@ -186,43 +190,43 @@ apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 31 + 47 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 157 + 168 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 158 + 169 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 160 + 171 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 213 + 224 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 214 + 225 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 215 + 226 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 216 + 227 libs/ui/src/lib/activities-table/activities-table.component.html - 313 + 321 libs/ui/src/lib/activities-table/activities-table.component.html - 348 + 356 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -234,19 +238,27 @@ Bewerken apps/client/src/app/components/accounts-table/accounts-table.component.html - 258 + 259 + + + apps/client/src/app/components/admin-market-data/admin-market-data.html + 170 + + + apps/client/src/app/components/admin-overview/admin-overview.html + 86 apps/client/src/app/components/admin-platform/admin-platform.component.html - 90 + 91 apps/client/src/app/components/admin-tag/admin-tag.component.html - 70 + 71 libs/ui/src/lib/activities-table/activities-table.component.html - 490 + 507 @@ -254,23 +266,31 @@ Verwijderen apps/client/src/app/components/accounts-table/accounts-table.component.html - 266 + 269 apps/client/src/app/components/admin-market-data/admin-market-data.html - 151 + 180 + + + apps/client/src/app/components/admin-overview/admin-overview.html + 99 + + + apps/client/src/app/components/admin-overview/admin-overview.html + 201 apps/client/src/app/components/admin-platform/admin-platform.component.html - 94 + 97 apps/client/src/app/components/admin-tag/admin-tag.component.html - 74 + 77 libs/ui/src/lib/activities-table/activities-table.component.html - 506 + 529 @@ -302,7 +322,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 87 + 86 apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html @@ -318,11 +338,11 @@ apps/client/src/app/components/admin-market-data/admin-market-data.html - 33 + 51 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 119 + 130 @@ -370,7 +390,7 @@ Historische marktgegevens apps/client/src/app/components/admin-jobs/admin-jobs.html - 37,39 + 37 @@ -414,11 +434,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 125 + 136 libs/ui/src/lib/activities-table/activities-table.component.html - 144 + 152 @@ -442,7 +462,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 261 + 260 apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html @@ -466,11 +486,11 @@ apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 43 + 59 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 351 + 362 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -486,7 +506,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 268 + 267 apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html @@ -510,7 +530,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 358 + 369 @@ -518,11 +538,11 @@ Eerste activiteit apps/client/src/app/components/admin-market-data/admin-market-data.html - 60 + 78 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 102 + 101 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -546,7 +566,7 @@ Historische gegevens apps/client/src/app/components/admin-market-data/admin-market-data.html - 78 + 96 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -558,7 +578,7 @@ Voeg een valuta toe: apps/client/src/app/components/admin-overview/admin-overview.component.ts - 113 + 119 @@ -566,7 +586,7 @@ Wil je deze coupon echt verwijderen? apps/client/src/app/components/admin-overview/admin-overview.component.ts - 127 + 133 @@ -574,7 +594,7 @@ Wil je deze valuta echt verwijderen? apps/client/src/app/components/admin-overview/admin-overview.component.ts - 140 + 146 @@ -582,7 +602,7 @@ Wil je echt de cache legen? apps/client/src/app/components/admin-overview/admin-overview.component.ts - 157 + 169 @@ -590,7 +610,7 @@ Stel je systeemboodschap in: apps/client/src/app/components/admin-overview/admin-overview.component.ts - 187 + 200 @@ -614,7 +634,7 @@ Verzamel recente gegevens apps/client/src/app/components/admin-market-data/admin-market-data.html - 126 + 144 @@ -622,7 +642,7 @@ Verzamel alle gegevens apps/client/src/app/components/admin-market-data/admin-market-data.html - 129 + 147 @@ -630,7 +650,7 @@ Verzamel profielgegevens apps/client/src/app/components/admin-market-data/admin-market-data.html - 132 + 150 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -650,7 +670,7 @@ Valuta toevoegen apps/client/src/app/components/admin-overview/admin-overview.html - 76 + 113 @@ -658,7 +678,7 @@ Systeembericht apps/client/src/app/components/admin-overview/admin-overview.html - 104 + 141 @@ -666,7 +686,7 @@ Bericht instellen apps/client/src/app/components/admin-overview/admin-overview.html - 126 + 164 @@ -674,7 +694,7 @@ Alleen lezen apps/client/src/app/components/admin-overview/admin-overview.html - 93 + 130 @@ -682,7 +702,7 @@ Coupons apps/client/src/app/components/admin-overview/admin-overview.html - 134 + 172 @@ -690,7 +710,7 @@ Toevoegen apps/client/src/app/components/admin-overview/admin-overview.html - 178 + 233 @@ -698,7 +718,7 @@ Huishouding apps/client/src/app/components/admin-overview/admin-overview.html - 185 + 240 @@ -706,7 +726,7 @@ Cache legen apps/client/src/app/components/admin-overview/admin-overview.html - 189 + 244 @@ -746,7 +766,7 @@ Laatste verzoek apps/client/src/app/components/admin-users/admin-users.html - 169,171 + 169 @@ -984,6 +1004,46 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 183 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + About @@ -1257,7 +1317,7 @@ Transactiekosten voor apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 12,15 + 12 @@ -1265,7 +1325,7 @@ {VAR_PLURAL, plural, =1 {transaction} other {transactions}} apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 13,14 + 13 @@ -1337,7 +1397,7 @@ Rendement per jaar apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 262,264 + 262 @@ -1357,11 +1417,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 155 + 166 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 211 + 222 @@ -1377,7 +1437,7 @@ Sectoren apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 159 + 158 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -1393,7 +1453,7 @@ Landen apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 169 + 168 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -1413,7 +1473,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 309 + 320 @@ -1635,6 +1695,10 @@ apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.html 181 + + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023/hacktoberfest-2023-debriefing-page.html + 270 + apps/client/src/app/pages/blog/blog-page.html 5 @@ -1733,16 +1797,12 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 379 + 387 Membership Lidmaatschap - - apps/client/src/app/components/user-account-membership/user-account-membership.html - 2 - libs/ui/src/lib/membership-card/membership-card.component.html 18 @@ -1753,7 +1813,7 @@ Uitbreiden apps/client/src/app/components/user-account-membership/user-account-membership.html - 19 + 18 @@ -1761,7 +1821,7 @@ per jaar apps/client/src/app/components/user-account-membership/user-account-membership.html - 34 + 33 apps/client/src/app/pages/pricing/pricing-page.html @@ -1773,7 +1833,7 @@ Probeer Premium apps/client/src/app/components/user-account-membership/user-account-membership.html - 43 + 42 @@ -1781,7 +1841,7 @@ Coupon inwisselen apps/client/src/app/components/user-account-membership/user-account-membership.html - 56 + 55 @@ -1909,7 +1969,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 92 + 91 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -1917,11 +1977,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 109 + 120 libs/ui/src/lib/activities-table/activities-table.component.html - 201 + 209 @@ -2281,7 +2341,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 91 + 102 @@ -2293,11 +2353,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 142 + 153 libs/ui/src/lib/activities-table/activities-table.component.html - 222 + 230 @@ -2305,15 +2365,15 @@ Prijs per eenheid apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 162 + 173 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 217 + 228 libs/ui/src/lib/activities-table/activities-table.component.html - 251 + 259 @@ -2321,15 +2381,15 @@ Transactiekosten apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 231 + 242 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 256 + 267 libs/ui/src/lib/activities-table/activities-table.component.html - 280 + 288 @@ -2337,7 +2397,7 @@ Opmerking apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 248 + 247 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -2345,7 +2405,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 265 + 276 @@ -2353,15 +2413,15 @@ Asset klasse apps/client/src/app/components/admin-market-data/admin-market-data.html - 42 + 60 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 120 + 119 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 189 + 188 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -2369,7 +2429,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 280 + 291 @@ -2441,7 +2501,7 @@ Ghostfolio stelt je in staat om je vermogen bij te houden. apps/client/src/app/pages/public/public-page.html - 147,149 + 147 @@ -2481,7 +2541,7 @@ Ik ga ermee akkoord dat ik mijn Security Token van hierboven op een veilige plaats heb opgeslagen. Als ik het verlies, kan ik mijn account niet terug krijgen. apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html - 31,34 + 31 @@ -2529,7 +2589,7 @@ Concept libs/ui/src/lib/activities-table/activities-table.component.html - 181 + 189 @@ -2545,11 +2605,11 @@ Activiteiten exporteren libs/ui/src/lib/activities-table/activities-table.component.html - 44 + 47 libs/ui/src/lib/activities-table/activities-table.component.html - 463 + 476 @@ -2557,11 +2617,11 @@ Concept exporteren als ICS libs/ui/src/lib/activities-table/activities-table.component.html - 54 + 59 libs/ui/src/lib/activities-table/activities-table.component.html - 473 + 488 @@ -2569,7 +2629,7 @@ Kloon libs/ui/src/lib/activities-table/activities-table.component.html - 494 + 513 @@ -2577,7 +2637,7 @@ Concept exporteren als ICS libs/ui/src/lib/activities-table/activities-table.component.html - 502 + 523 @@ -2705,15 +2765,15 @@ Asset subklasse apps/client/src/app/components/admin-market-data/admin-market-data.html - 51 + 69 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 129 + 128 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 202 + 201 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -2721,7 +2781,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 296 + 307 @@ -2769,7 +2829,7 @@ Sector apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 144 + 143 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -2781,7 +2841,7 @@ Land apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 153 + 152 apps/client/src/app/components/admin-users/admin-users.html @@ -2857,7 +2917,7 @@ Aantal sectoren apps/client/src/app/components/admin-market-data/admin-market-data.html - 87 + 105 @@ -2865,7 +2925,7 @@ Aantal landen apps/client/src/app/components/admin-market-data/admin-market-data.html - 96 + 114 @@ -2875,6 +2935,10 @@ apps/client/src/app/components/home-market/home-market.component.ts 24 + + libs/ui/src/lib/i18n.ts + 65 + Greed @@ -2883,6 +2947,10 @@ apps/client/src/app/components/home-market/home-market.component.ts 25 + + libs/ui/src/lib/i18n.ts + 66 + Filter by account or tag... @@ -2905,7 +2973,7 @@ Filter op... apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 279 + 281 @@ -2921,7 +2989,7 @@ Hallo, heeft een portefeuille met je gedeeld! apps/client/src/app/pages/public/public-page.html - 4,7 + 4 @@ -3309,7 +3377,7 @@ Aantal activiteiten apps/client/src/app/components/admin-market-data/admin-market-data.html - 69 + 87 @@ -3325,7 +3393,7 @@ Symbool toewijzen apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 226 + 225 @@ -3361,7 +3429,7 @@ Account aanmaken apps/client/src/app/components/admin-overview/admin-overview.html - 82 + 119 @@ -3377,7 +3445,7 @@ Importeren apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 80 + 79 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html @@ -3529,7 +3597,7 @@ Bescherming voor gevoelige informatie zoals absoluut rendement en hoeveelheden apps/client/src/app/components/user-account-settings/user-account-settings.html - 8,11 + 8 @@ -3537,7 +3605,7 @@ Afleidingsvrije ervaring voor roerige tijden apps/client/src/app/components/user-account-settings/user-account-settings.html - 138,140 + 138 @@ -3545,7 +3613,7 @@ Voorproefje van nieuwe functionaliteit apps/client/src/app/components/user-account-settings/user-account-settings.html - 173,175 + 173 @@ -3553,7 +3621,7 @@ Ben jij een ambitieuze investeerder die het volledige plaatje wilt zien? apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 15,17 + 15 @@ -3645,7 +3713,7 @@ Voor technisch onderlegde beleggers die Ghostfolio liever op hun eigen systemen draaien. apps/client/src/app/pages/pricing/pricing-page.html - 36,39 + 36 @@ -3721,7 +3789,7 @@ Voor nieuwe beleggers die net beginnen met handelen. apps/client/src/app/pages/pricing/pricing-page.html - 150,152 + 150 @@ -3741,7 +3809,7 @@ Voor ambitieuze beleggers die een volledig beeld willen hebben van hun financiële assets. apps/client/src/app/pages/pricing/pricing-page.html - 225,228 + 225 @@ -3757,7 +3825,7 @@ Aan de slag apps/client/src/app/pages/pricing/pricing-page.html - 363,365 + 363 @@ -3881,7 +3949,7 @@ Oeps! Kon de historische wisselkoers niet krijgen van apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 247 + 258 @@ -3925,7 +3993,7 @@ Vernieuw apps/client/src/app/components/user-account-membership/user-account-membership.html - 22 + 21 @@ -3941,7 +4009,7 @@ Ons officiële Ghostfolio Premium cloud-aanbod is de eenvoudigste manier om te beginnen. Vanwege de tijd die het bespaart, zal dit voor de meeste mensen de beste optie zijn. De inkomsten worden gebruikt om de hostinginfrastructuur te dekken en de voortdurende ontwikkeling van Ghostfolio te financieren. apps/client/src/app/pages/pricing/pricing-page.html - 6,11 + 6 @@ -3949,7 +4017,7 @@ Gebruiker nadoen apps/client/src/app/components/admin-users/admin-users.html - 207 + 208 @@ -3957,7 +4025,7 @@ Gebruiker verwijderen apps/client/src/app/components/admin-users/admin-users.html - 215 + 218 @@ -3981,7 +4049,7 @@ Alle activiteiten verwijderen libs/ui/src/lib/activities-table/activities-table.component.html - 62 + 69 @@ -4033,7 +4101,7 @@ Saldo bijwerken apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 83 + 94 @@ -4049,7 +4117,7 @@ Upgrade vandaag nog naar Ghostfolio Premium en krijg toegang tot exclusieve functies om je beleggingservaring te verbeteren: apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 18,21 + 18 @@ -4057,7 +4125,7 @@ Krijg de tools om je financiën effectief te beheren en je persoonlijke beleggingsstrategie te verfijnen. apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 48,51 + 48 @@ -4065,7 +4133,7 @@ Platform toevoegen apps/client/src/app/components/admin-platform/admin-platform.component.html - 11,13 + 11 @@ -4153,7 +4221,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 444 + 453 @@ -4161,11 +4229,11 @@ Importeer dividenden libs/ui/src/lib/activities-table/activities-table.component.html - 34 + 35 libs/ui/src/lib/activities-table/activities-table.component.html - 453 + 464 @@ -4237,7 +4305,7 @@ Mocht je vandaag met pension gaan, dan kun je per jaar of per maandopnemen, gebaseerd op al je financiële assets en een opnamepercentage van 4%. apps/client/src/app/pages/portfolio/fire/fire-page.html - 57,90 + 57 @@ -4321,7 +4389,7 @@ Importeer en exporteer apps/client/src/app/pages/features/features-page.html - 115,117 + 115 @@ -4393,7 +4461,7 @@ Scraper instellingen apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 237 + 236 @@ -4417,7 +4485,7 @@ Ontdek Open Source alternatieven voor tools voor persoonlijke financiën apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 4,6 + 4 @@ -4551,6 +4619,46 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 67 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + Origin @@ -4683,6 +4791,46 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 72 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + Region @@ -4815,137 +4963,217 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 77 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + Available in Beschikbaar in apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 @@ -5079,6 +5307,46 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 104 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 111 @@ -5209,43 +5477,43 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -5335,6 +5603,102 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 125 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 136 @@ -5463,6 +5827,38 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 136 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 150 @@ -5591,6 +5987,78 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 150 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 157 @@ -5849,43 +6317,43 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -5975,73 +6443,133 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 176 - - - ❌ No - ❌ Geen apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 176 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 176 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 176 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 176 + + + + ❌ No + ❌ Geen + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -6107,6 +6635,70 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 106 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 129 @@ -6235,6 +6827,82 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 129 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 140 @@ -6493,43 +7161,43 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -6621,67 +7289,83 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 159 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 159 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 159 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -6749,107 +7433,107 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -6875,3565 +7559,4477 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 178 - - - ❌ No - ❌ Geen apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 - - - Self-Hosting - Zelf hosten apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 178 + + + ❌ No + ❌ Geen apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 - - - Use anonymously - Gebruik anoniem apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 + + + Self-Hosting + Zelf hosten apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 - - - Free Plan - Gratis abonnement apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 + + + Use anonymously + Gebruik anoniem apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 - - - Notes - Notities apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 - - - Effortlessly track, analyze, and visualize your wealth with Ghostfolio. - Volg, analyseer en visualiseer moeiteloos je vermogen met Ghostfolio. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 145 + + + Free Plan + Gratis abonnement apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 - - - Personal Finance Tools - Tools voor persoonlijke financiën apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 + + + Notes + Notities apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 - - - Guides - Gidsen - apps/client/src/app/pages/resources/resources-page.html - 5 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Glossary - Woordenlijst - apps/client/src/app/pages/resources/resources-page.html - 75 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Stocks, ETFs, bonds, cryptocurrencies, commodities - Aandelen, ETF's, obligaties, cryptocurrencies, grondstoffen - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 21 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 51 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Mortgages, personal loans, credit cards - Hypotheken, persoonlijke leningen, creditcards - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 45 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Luxury items, real estate, private companies - Luxe artikelen, onroerend goed, particuliere bedrijven - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 57 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Buy - Koop - libs/ui/src/lib/i18n.ts - 30 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Valuable - Waardevol - libs/ui/src/lib/i18n.ts - 34 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - ETFs without Countries - ETF's zonder Landen - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 70 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - ETFs without Sectors - ETF's zonder Sectoren - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 75 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Assets - Assets - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Preset - Voorinstelling - libs/ui/src/lib/i18n.ts - 21 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - By Market - Per markt - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 177 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Asia-Pacific - Azië en de Stille Oceaan - libs/ui/src/lib/i18n.ts - 5 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Japan - Japan - libs/ui/src/lib/i18n.ts - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Welcome to Ghostfolio - Welkom bij Ghostfolio - apps/client/src/app/components/home-overview/home-overview.html - 9 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Setup your accounts - Je accounts instellen - apps/client/src/app/components/home-overview/home-overview.html - 17 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Get a comprehensive financial overview by adding your bank and brokerage accounts. - Krijg een uitgebreid financieel overzicht door je bank- en effectenrekeningen toe te voegen. - apps/client/src/app/components/home-overview/home-overview.html - 19,20 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Capture your activities - Leg je activiteiten vast - apps/client/src/app/components/home-overview/home-overview.html - 26 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Record your investment activities to keep your portfolio up to date. - Leg je investeringsactiviteiten vast om je portefeuille up-to-date te houden. - apps/client/src/app/components/home-overview/home-overview.html - 28,29 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Monitor and analyze your portfolio - Volg en analyseer je portfolio - apps/client/src/app/components/home-overview/home-overview.html - 35 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Track your progress in real-time with comprehensive analysis and insights. - Volg je voortgang in real-time met uitgebreide analyses en inzichten. - apps/client/src/app/components/home-overview/home-overview.html - 37,38 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - No data available - Geen data beschikbaar + + Effortlessly track, analyze, and visualize your wealth with Ghostfolio. + Volg, analyseer en visualiseer moeiteloos je vermogen met Ghostfolio. - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 254 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 - apps/client/src/app/pages/public/public-page.html - 123 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 - - - Ready to take control of your personal finances? - Klaar om je persoonlijke financiën onder controle te krijgen? - apps/client/src/app/components/home-overview/home-overview.html - 10 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 - + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + + Personal Finance Tools + Tools voor persoonlijke financiën + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + + Guides + Gidsen + + apps/client/src/app/pages/resources/resources-page.html + 5 + + + + Glossary + Woordenlijst + + apps/client/src/app/pages/resources/resources-page.html + 75 + + + + Stocks, ETFs, bonds, cryptocurrencies, commodities + Aandelen, ETF's, obligaties, cryptocurrencies, grondstoffen + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 21 + + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 51 + + + + Mortgages, personal loans, credit cards + Hypotheken, persoonlijke leningen, creditcards + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 45 + + + + Luxury items, real estate, private companies + Luxe artikelen, onroerend goed, particuliere bedrijven + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 57 + + + + Buy + Koop + + libs/ui/src/lib/i18n.ts + 30 + + + + Valuable + Waardevol + + libs/ui/src/lib/i18n.ts + 34 + + + + ETFs without Countries + ETF's zonder Landen + + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 71 + + + + ETFs without Sectors + ETF's zonder Sectoren + + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 76 + + + + Assets + Assets + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 190 + + + + Preset + Voorinstelling + + libs/ui/src/lib/i18n.ts + 21 + + + + By Market + Per markt + + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 177 + + + + Asia-Pacific + Azië en de Stille Oceaan + + libs/ui/src/lib/i18n.ts + 5 + + + + Japan + Japan + + libs/ui/src/lib/i18n.ts + 16 + + + + Welcome to Ghostfolio + Welkom bij Ghostfolio + + apps/client/src/app/components/home-overview/home-overview.html + 9 + + + + Setup your accounts + Je accounts instellen + + apps/client/src/app/components/home-overview/home-overview.html + 17 + + + + Get a comprehensive financial overview by adding your bank and brokerage accounts. + Krijg een uitgebreid financieel overzicht door je bank- en effectenrekeningen toe te voegen. + + apps/client/src/app/components/home-overview/home-overview.html + 19 + + + + Capture your activities + Leg je activiteiten vast + + apps/client/src/app/components/home-overview/home-overview.html + 26 + + + + Record your investment activities to keep your portfolio up to date. + Leg je investeringsactiviteiten vast om je portefeuille up-to-date te houden. + + apps/client/src/app/components/home-overview/home-overview.html + 28 + + + + Monitor and analyze your portfolio + Volg en analyseer je portfolio + + apps/client/src/app/components/home-overview/home-overview.html + 35 + + + + Track your progress in real-time with comprehensive analysis and insights. + Volg je voortgang in real-time met uitgebreide analyses en inzichten. + + apps/client/src/app/components/home-overview/home-overview.html + 37 + + + + No data available + Geen data beschikbaar + + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 254 + + + apps/client/src/app/pages/public/public-page.html + 123 + + + + Ready to take control of your personal finances? + Klaar om je persoonlijke financiën onder controle te krijgen? + + apps/client/src/app/components/home-overview/home-overview.html + 10 + + Setup accounts Account opzetten - apps/client/src/app/components/home-overview/home-overview.html - 50 + apps/client/src/app/components/home-overview/home-overview.html + 50 + + + + Biometric Authentication + Biometrische authenticatie + + apps/client/src/app/components/user-account-settings/user-account-settings.html + 154 + + + + At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. + Bij Ghostfolio is transparantie één van onze kernwaarden. We publiceren de broncode als open source software (OSS) onder de AGPL-3.0 licentie en we delen openlijk geaggregeerde kerncijfers van de operationele status van het platform. + + apps/client/src/app/pages/open/open-page.html + 6 + + + + Active Users + Actieve gebruikers + + apps/client/src/app/pages/open/open-page.html + 40 + + + apps/client/src/app/pages/open/open-page.html + 62 + + + + New Users + Nieuwe gebruikers + + apps/client/src/app/pages/open/open-page.html + 51 + + + + Users in Slack community + Gebruikers in de Slack gemeenschap + + apps/client/src/app/pages/open/open-page.html + 75 + + + + Contributors on GitHub + Contributors op GitHub + + apps/client/src/app/pages/open/open-page.html + 89 + + + + Stars on GitHub + Sterren op GitHub + + apps/client/src/app/pages/landing/landing-page.html + 93 + + + apps/client/src/app/pages/open/open-page.html + 103 + + + + Pulls on Docker Hub + Pulls op Docker Hub + + apps/client/src/app/pages/landing/landing-page.html + 111 + + + apps/client/src/app/pages/open/open-page.html + 117 + + + + Uptime + Bedrijfstijd + + apps/client/src/app/pages/open/open-page.html + 132 + + + + Export Data + Exporteer Data + + apps/client/src/app/components/user-account-settings/user-account-settings.html + 195 + + + + Currencies + Valuta + + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 66 + + + + Our + Onze + + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 6 + + + + Visit + Bezoek + + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 28 + + + + Discover other exciting Open Source Software projects + Ontdek andere interessante Open Source Softwareprojecten + + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 9 + + + + Frequently Asked Questions (FAQ) + Veelgestelde vragen + + apps/client/src/app/pages/faq/faq-page.html + 4 + + + + Check out the numerous features of Ghostfolio to manage your wealth + Bekijk de vele functies van Ghostfolio om je vermogen te beheren + + apps/client/src/app/pages/features/features-page.html + 6 + + + + Discover the latest Ghostfolio updates and insights on personal finance + Ontdek de nieuwste Ghostfolio-updates en inzichten in persoonlijke financiën + + apps/client/src/app/pages/blog/blog-page.html + 7 + + + + If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. + Als je Ghostfolio liever op je eigen systeem uitvoert, vind je de broncode en verdere instructies op GitHub. + + apps/client/src/app/pages/pricing/pricing-page.html + 24 + + + + Manage your wealth like a boss + Beheer je vermogen als een baas + + apps/client/src/app/pages/landing/landing-page.html + 11 + + + + Ghostfolio is a privacy-first, open source dashboard for your personal finances. Break down your asset allocation, know your net worth and make solid, data-driven investment decisions. + Ghostfolio is een privacygericht, open source dashboard voor je persoonlijke financiën. Analyseer je asset-allocatie, ken je nettowaarde en neem gefundeerde, datagedreven investeringsbeslissingen. + + apps/client/src/app/pages/landing/landing-page.html + 15 + + + + Get Started + Aan de slag + + apps/client/src/app/pages/landing/landing-page.html + 47 + + + apps/client/src/app/pages/landing/landing-page.html + 431 + + + + or + of + + apps/client/src/app/pages/landing/landing-page.html + 52 + + + + Monthly Active Users + Maandelijkse actieve gebruikers + + apps/client/src/app/pages/landing/landing-page.html + 75 + + + + As seen in + Zoals te zien in + + apps/client/src/app/pages/landing/landing-page.html + 119 + + + + Protect your assets. Refine your personal investment strategy. + Bescherm je financiële bezittingen. Verfijn je persoonlijke investeringsstrategie. + + apps/client/src/app/pages/landing/landing-page.html + 221 + + + + Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. + Ghostfolio stelt drukbezette mensen in staat om aandelen, ETF's of cryptocurrencies bij te houden zonder gevolgd te worden. + + apps/client/src/app/pages/landing/landing-page.html + 225 + + + + 360° View + 360°-overzicht + + apps/client/src/app/pages/landing/landing-page.html + 236 + + + + Web3 Ready + Klaar voor Web3 + + apps/client/src/app/pages/landing/landing-page.html + 247 + + + + Use Ghostfolio anonymously and own your financial data. + Gebruik Ghostfolio anoniem en bezit je financiële gegevens. + + apps/client/src/app/pages/landing/landing-page.html + 249 + + + + Open Source + Open Source + + apps/client/src/app/pages/landing/landing-page.html + 257 + + + + Benefit from continuous improvements through a strong community. + Profiteer van voortdurende verbeteringen door een sterke gemeenschap. + + apps/client/src/app/pages/landing/landing-page.html + 259 + + + + Why Ghostfolio? + Waarom Ghostfolio? + + apps/client/src/app/pages/landing/landing-page.html + 268 + + + + Ghostfolio is for you if you are... + Ghostfolio is iets voor je als je... + + apps/client/src/app/pages/landing/landing-page.html + 269 + + + + trading stocks, ETFs or cryptocurrencies on multiple platforms + handelt in aandelen, ETF's of cryptocurrencies op meerdere platforms + + apps/client/src/app/pages/landing/landing-page.html + 276 + + + + pursuing a buy & hold strategy + streeft naar een buy & hold strategie + + apps/client/src/app/pages/landing/landing-page.html + 282 + + + + interested in getting insights of your portfolio composition + geïnteresseerd bent in het krijgen van inzicht in je portefeuillesamenstelling + + apps/client/src/app/pages/landing/landing-page.html + 287 + + + + valuing privacy and data ownership + privacy en eigendom van gegevens waardeert + + apps/client/src/app/pages/landing/landing-page.html + 292 + + + + into minimalism + houdt van een minimalistisch ontwerp + + apps/client/src/app/pages/landing/landing-page.html + 295 + + + + caring about diversifying your financial resources + zorgdraagt voor het diversifiëren van je financiële middelen + + apps/client/src/app/pages/landing/landing-page.html + 299 + + + + interested in financial independence + geïnteresseerd bent in financiële onafhankelijkheid + + apps/client/src/app/pages/landing/landing-page.html + 303 + + + + saying no to spreadsheets in + "nee" zegt tegen spreadsheets in + + apps/client/src/app/pages/landing/landing-page.html + 307 + + + + still reading this list + nog steeds deze lijst aan het lezen bent + + apps/client/src/app/pages/landing/landing-page.html + 310 + + + + Learn more about Ghostfolio + Leer meer over Ghostfolio + + apps/client/src/app/pages/landing/landing-page.html + 315 + + + + What our users are saying + Wat onze gebruikers zeggen + + apps/client/src/app/pages/landing/landing-page.html + 323 + + + + Members from around the globe are using Ghostfolio Premium + Leden van over de hele wereld gebruikenGhostfolio Premium + + apps/client/src/app/pages/landing/landing-page.html + 358 + + + + How does Ghostfolio work? + Hoe Ghostfolio werkt? + + apps/client/src/app/pages/landing/landing-page.html + 373 + + + + Sign up anonymously* + Anoniem aanmelden* + + apps/client/src/app/pages/landing/landing-page.html + 382 + + + + * no e-mail address nor credit card required + * geen e-mailadres of creditcard nodig + + apps/client/src/app/pages/landing/landing-page.html + 384 + + + + Add any of your historical transactions + Voeg al je historische transacties toe + + apps/client/src/app/pages/landing/landing-page.html + 395 + + + + Get valuable insights of your portfolio composition + Krijg waardevolle inzichten in de samenstelling van je portefeuille + + apps/client/src/app/pages/landing/landing-page.html + 407 + + + + Are you ready? + Ben je er klaar voor? + + apps/client/src/app/pages/landing/landing-page.html + 419 + + + + Join now or check out the example account + Nu lid worden of bekijk het voorbeeld account + + apps/client/src/app/pages/landing/landing-page.html + 420 + + + + Live Demo + Live Demo + + apps/client/src/app/pages/landing/landing-page.html + 55 + + + apps/client/src/app/pages/landing/landing-page.html + 436 + + + + Get the full picture of your personal finances across multiple platforms. + Krijg een volledig beeld van je persoonlijke financiën op meerdere platforms. + + apps/client/src/app/pages/landing/landing-page.html + 238 + + + + Get started in only 3 steps + Aan de slag in slechts 3 stappen + + apps/client/src/app/pages/landing/landing-page.html + 376 + + + + faq + veelgestelde-vragen + + apps/client/src/app/app-routing.module.ts + 9 + + + apps/client/src/app/app.component.ts + 54 + + + apps/client/src/app/pages/about/overview/about-overview-page.component.ts + 19 + + + + features + functionaliteiten + + apps/client/src/app/app-routing.module.ts + 10 + + + apps/client/src/app/app.component.ts + 55 + + + apps/client/src/app/components/header/header.component.ts + 72 + + + apps/client/src/app/components/header/header.component.ts + 77 + + + apps/client/src/app/pages/about/overview/about-overview-page.component.ts + 20 + + + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 14 + + + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 15 + + + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023/hacktoberfest-2023-debriefing-page.component.ts + 14 + + + apps/client/src/app/pages/faq/faq-page.component.ts + 13 + + + apps/client/src/app/pages/pricing/pricing-page.component.ts + 34 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts + 26 - - - Biometric Authentication - Biometrische authenticatie - apps/client/src/app/components/user-account-settings/user-account-settings.html - 154 + apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts + 26 - - - At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. - Bij Ghostfolio is transparantie één van onze kernwaarden. We publiceren de broncode als open source software (OSS) onder de AGPL-3.0 licentie en we delen openlijk geaggregeerde kerncijfers van de operationele status van het platform. - apps/client/src/app/pages/open/open-page.html - 6,22 + apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts + 26 - - - Active Users - Actieve gebruikers - apps/client/src/app/pages/open/open-page.html - 40 + apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts + 26 - apps/client/src/app/pages/open/open-page.html - 62 + apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts + 26 - - - New Users - Nieuwe gebruikers - apps/client/src/app/pages/open/open-page.html - 51 + apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts + 26 - - - Users in Slack community - Gebruikers in de Slack gemeenschap - apps/client/src/app/pages/open/open-page.html - 75 + apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts + 26 - - - Contributors on GitHub - Contributors op GitHub - apps/client/src/app/pages/open/open-page.html - 89 + apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts + 26 - - - Stars on GitHub - Sterren op GitHub - apps/client/src/app/pages/landing/landing-page.html - 93 + apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts + 26 - apps/client/src/app/pages/open/open-page.html - 103 + apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts + 26 - - - Pulls on Docker Hub - Pulls op Docker Hub - apps/client/src/app/pages/landing/landing-page.html - 111 + apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts + 26 - apps/client/src/app/pages/open/open-page.html - 117 + apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts + 26 - - - Uptime - Bedrijfstijd - apps/client/src/app/pages/open/open-page.html - 132 + apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts + 26 - - - Export Data - Exporteer Data - apps/client/src/app/components/user-account-settings/user-account-settings.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts + 26 - - - Currencies - Valuta - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 65 + apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts + 26 - - - Our - Onze - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 6 + apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts + 26 - - - Visit - Bezoek - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 28 + apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts + 26 - - - Discover other exciting Open Source Software projects - Ontdek andere interessante Open Source Softwareprojecten - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 9 + apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts + 26 - - - Frequently Asked Questions (FAQ) - Veelgestelde vragen - apps/client/src/app/pages/faq/faq-page.html - 4,6 + apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts + 26 - - - Check out the numerous features of Ghostfolio to manage your wealth - Bekijk de vele functies van Ghostfolio om je vermogen te beheren - apps/client/src/app/pages/features/features-page.html - 6,8 + apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts + 26 - - - Discover the latest Ghostfolio updates and insights on personal finance - Ontdek de nieuwste Ghostfolio-updates en inzichten in persoonlijke financiën - apps/client/src/app/pages/blog/blog-page.html - 7,8 + apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts + 26 - - - If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. - Als je Ghostfolio liever op je eigen systeem uitvoert, vind je de broncode en verdere instructies op GitHub. - apps/client/src/app/pages/pricing/pricing-page.html - 24,28 + apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts + 26 - - - Manage your wealth like a boss - Beheer je vermogen als een baas - apps/client/src/app/pages/landing/landing-page.html - 11,13 + apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts + 26 - - - Ghostfolio is a privacy-first, open source dashboard for your personal finances. Break down your asset allocation, know your net worth and make solid, data-driven investment decisions. - Ghostfolio is een privacygericht, open source dashboard voor je persoonlijke financiën. Analyseer je asset-allocatie, ken je nettowaarde en neem gefundeerde, datagedreven investeringsbeslissingen. - apps/client/src/app/pages/landing/landing-page.html - 15,19 + apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts + 26 - - - Get Started - Aan de slag - apps/client/src/app/pages/landing/landing-page.html - 47,49 + apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts + 26 - apps/client/src/app/pages/landing/landing-page.html - 431,433 + apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts + 26 - - - or - of - apps/client/src/app/pages/landing/landing-page.html - 52,54 + apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts + 26 - - - Monthly Active Users - Maandelijkse actieve gebruikers - apps/client/src/app/pages/landing/landing-page.html - 75 + apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts + 26 - - - As seen in - Zoals te zien in - apps/client/src/app/pages/landing/landing-page.html - 119 + apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts + 26 - - - Protect your assets. Refine your personal investment strategy. - Bescherm je financiële bezittingen. Verfijn je persoonlijke investeringsstrategie. - apps/client/src/app/pages/landing/landing-page.html - 221,224 + apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts + 26 - - Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. - Ghostfolio stelt drukbezette mensen in staat om aandelen, ETF's of cryptocurrencies bij te houden zonder gevolgd te worden. + + about + over + + apps/client/src/app/app-routing.module.ts + 8 + + + apps/client/src/app/app.component.ts + 47 + + + apps/client/src/app/app.component.ts + 48 + + + apps/client/src/app/app.component.ts + 49 + + + apps/client/src/app/app.component.ts + 51 + + + apps/client/src/app/components/header/header.component.ts + 71 + + + apps/client/src/app/components/header/header.component.ts + 76 + + + apps/client/src/app/pages/about/about-page.component.ts + 44 + + + apps/client/src/app/pages/about/about-page.component.ts + 49 + + + apps/client/src/app/pages/about/about-page.component.ts + 54 + + + apps/client/src/app/pages/about/about-page.component.ts + 62 + + + apps/client/src/app/pages/about/about-page.component.ts + 73 + - apps/client/src/app/pages/landing/landing-page.html - 225,228 + apps/client/src/app/pages/blog/2023/08/ghostfolio-joins-oss-friends/ghostfolio-joins-oss-friends-page.component.ts + 13 - - - 360° View - 360°-overzicht - apps/client/src/app/pages/landing/landing-page.html - 236 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 13 - - - Web3 Ready - Klaar voor Web3 - apps/client/src/app/pages/landing/landing-page.html - 247 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 14 - - - Use Ghostfolio anonymously and own your financial data. - Gebruik Ghostfolio anoniem en bezit je financiële gegevens. - apps/client/src/app/pages/landing/landing-page.html - 249,251 + apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.component.ts + 13 - - - Open Source - Open Source - apps/client/src/app/pages/landing/landing-page.html - 257 + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023/hacktoberfest-2023-debriefing-page.component.ts + 13 - - - Benefit from continuous improvements through a strong community. - Profiteer van voortdurende verbeteringen door een sterke gemeenschap. - apps/client/src/app/pages/landing/landing-page.html - 259,261 + apps/client/src/app/pages/landing/landing-page.component.ts + 25 - - - Why Ghostfolio? - Waarom Ghostfolio? - apps/client/src/app/pages/landing/landing-page.html - 268 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 22 - - - Ghostfolio is for you if you are... - Ghostfolio is iets voor je als je... - apps/client/src/app/pages/landing/landing-page.html - 269,271 + apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts + 25 - - - trading stocks, ETFs or cryptocurrencies on multiple platforms - handelt in aandelen, ETF's of cryptocurrencies op meerdere platforms - apps/client/src/app/pages/landing/landing-page.html - 276,277 + apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts + 25 - - - pursuing a buy & hold strategy - streeft naar een buy & hold strategie - apps/client/src/app/pages/landing/landing-page.html - 282 + apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts + 25 - - - interested in getting insights of your portfolio composition - geïnteresseerd bent in het krijgen van inzicht in je portefeuillesamenstelling - apps/client/src/app/pages/landing/landing-page.html - 287 + apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts + 25 - - - valuing privacy and data ownership - privacy en eigendom van gegevens waardeert - apps/client/src/app/pages/landing/landing-page.html - 292 + apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts + 25 - - - into minimalism - houdt van een minimalistisch ontwerp - apps/client/src/app/pages/landing/landing-page.html - 295 + apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts + 25 - - - caring about diversifying your financial resources - zorgdraagt voor het diversifiëren van je financiële middelen - apps/client/src/app/pages/landing/landing-page.html - 299 + apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts + 25 - - - interested in financial independence - geïnteresseerd bent in financiële onafhankelijkheid - apps/client/src/app/pages/landing/landing-page.html - 303 + apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts + 25 - - - saying no to spreadsheets in - "nee" zegt tegen spreadsheets in - apps/client/src/app/pages/landing/landing-page.html - 307 + apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts + 25 - - - still reading this list - nog steeds deze lijst aan het lezen bent - apps/client/src/app/pages/landing/landing-page.html - 310 + apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts + 25 - - - Learn more about Ghostfolio - Leer meer over Ghostfolio - apps/client/src/app/pages/landing/landing-page.html - 315 + apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts + 25 - - - What our users are saying - Wat onze gebruikers zeggen - apps/client/src/app/pages/landing/landing-page.html - 323,325 + apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts + 25 - - - Members from around the globe are using Ghostfolio Premium - Leden van over de hele wereld gebruikenGhostfolio Premium - apps/client/src/app/pages/landing/landing-page.html - 358,360 + apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts + 25 - - - How does Ghostfolio work? - Hoe Ghostfolio werkt? - apps/client/src/app/pages/landing/landing-page.html - 373,375 + apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts + 25 - - - Sign up anonymously* - Anoniem aanmelden* - apps/client/src/app/pages/landing/landing-page.html - 382 + apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts + 25 - - - * no e-mail address nor credit card required - * geen e-mailadres of creditcard nodig - apps/client/src/app/pages/landing/landing-page.html - 384 + apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts + 25 - - - Add any of your historical transactions - Voeg al je historische transacties toe - apps/client/src/app/pages/landing/landing-page.html - 395,397 + apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts + 25 - - - Get valuable insights of your portfolio composition - Krijg waardevolle inzichten in de samenstelling van je portefeuille - apps/client/src/app/pages/landing/landing-page.html - 407,409 + apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts + 25 - - - Are you ready? - Ben je er klaar voor? - apps/client/src/app/pages/landing/landing-page.html - 419 + apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts + 25 - - - Join now or check out the example account - Nu lid worden of bekijk het voorbeeld account - apps/client/src/app/pages/landing/landing-page.html - 420,423 + apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts + 25 - - - Live Demo - Live Demo - apps/client/src/app/pages/landing/landing-page.html - 55 + apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts + 25 - apps/client/src/app/pages/landing/landing-page.html - 436 + apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts + 25 - - - Get the full picture of your personal finances across multiple platforms. - Krijg een volledig beeld van je persoonlijke financiën op meerdere platforms. - apps/client/src/app/pages/landing/landing-page.html - 238,241 + apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts + 25 - - - Get started in only 3 steps - Aan de slag in slechts 3 stappen - apps/client/src/app/pages/landing/landing-page.html - 376 + apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts + 25 - - - faq - veelgestelde-vragen - apps/client/src/app/app-routing.module.ts - 9 + apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts + 25 - apps/client/src/app/app.component.ts - 54 + apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts + 25 - apps/client/src/app/pages/about/overview/about-overview-page.component.ts - 19 + apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts + 25 - - - features - functionaliteiten - apps/client/src/app/app-routing.module.ts - 10 + apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts + 25 - apps/client/src/app/app.component.ts - 55 + apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts + 25 - apps/client/src/app/components/header/header.component.ts - 72 + apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts + 25 - apps/client/src/app/components/header/header.component.ts - 77 + apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts + 25 - apps/client/src/app/pages/about/overview/about-overview-page.component.ts - 20 + apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts + 25 - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts + 25 - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts + 25 - apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts + 25 - apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts + 25 - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 15 + apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts + 25 - apps/client/src/app/pages/faq/faq-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts + 25 - apps/client/src/app/pages/pricing/pricing-page.component.ts - 34 + apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts + 25 - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts + 25 - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts + 25 - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts + 25 + + + privacy-policy + privacybeleid - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 26 + apps/client/src/app/app-routing.module.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 26 + apps/client/src/app/app.component.ts + 52 - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 26 + apps/client/src/app/pages/about/about-page.component.ts + 62 + + + license + licentie - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 26 + apps/client/src/app/app-routing.module.ts + 11 - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 26 + apps/client/src/app/app.component.ts + 49 - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 26 + apps/client/src/app/pages/about/about-page.component.ts + 54 + + + markets + markten - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 26 + apps/client/src/app/app-routing.module.ts + 12 - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 26 + apps/client/src/app/app.component.ts + 56 - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 73 - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 78 - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 26 + apps/client/src/app/pages/faq/faq-page.component.ts + 14 + + + pricing + prijzen - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 26 + apps/client/src/app/app-routing.module.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 26 + apps/client/src/app/app.component.ts + 57 - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 74 - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 79 - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 26 + apps/client/src/app/components/home-summary/home-summary.component.ts + 124 - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 26 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 26 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 37 - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 26 + apps/client/src/app/core/http-response.interceptor.ts + 80 - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 26 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 26 + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 26 + apps/client/src/app/pages/faq/faq-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 26 + libs/ui/src/lib/membership-card/membership-card.component.ts + 13 - - about - over + + register + registratie apps/client/src/app/app-routing.module.ts - 8 + 15 apps/client/src/app/app.component.ts - 47 + 58 - apps/client/src/app/app.component.ts - 48 + apps/client/src/app/components/header/header.component.ts + 80 - apps/client/src/app/app.component.ts - 49 + apps/client/src/app/core/auth.guard.ts + 53 - apps/client/src/app/app.component.ts - 51 + apps/client/src/app/pages/faq/faq-page.component.ts + 16 - apps/client/src/app/components/header/header.component.ts - 71 + apps/client/src/app/pages/features/features-page.component.ts + 17 - apps/client/src/app/components/header/header.component.ts - 76 + apps/client/src/app/pages/landing/landing-page.component.ts + 26 - apps/client/src/app/pages/about/about-page.component.ts - 44 + apps/client/src/app/pages/pricing/pricing-page.component.ts + 35 + + + resources + bronnen - apps/client/src/app/pages/about/about-page.component.ts - 49 + apps/client/src/app/app-routing.module.ts + 16 - apps/client/src/app/pages/about/about-page.component.ts - 54 + apps/client/src/app/app.component.ts + 59 - apps/client/src/app/pages/about/about-page.component.ts - 62 + apps/client/src/app/components/header/header.component.ts + 75 - apps/client/src/app/pages/about/about-page.component.ts - 73 + apps/client/src/app/components/header/header.component.ts + 81 - apps/client/src/app/pages/blog/2023/08/ghostfolio-joins-oss-friends/ghostfolio-joins-oss-friends-page.component.ts - 13 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 14 - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 14 + + + apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts 13 - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts 14 - apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.component.ts - 13 + apps/client/src/app/pages/features/features-page.component.ts + 18 - apps/client/src/app/pages/landing/landing-page.component.ts - 25 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 18 + apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 25 + 28 - - - privacy-policy - privacybeleid - apps/client/src/app/app-routing.module.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts + 28 - apps/client/src/app/app.component.ts - 52 + apps/client/src/app/pages/resources/resources-page.component.ts + 17 + + + This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. + Deze overzichtspagina bevat een verzameling tools voor persoonlijke financiën vergeleken met het open source alternatief Ghostfolio. Als je waarde hecht aan transparantie, gegevensprivacy en samenwerking binnen een gemeenschap, biedt Ghostfolio een uitstekende mogelijkheid om je financieel beheer in eigen hand te nemen. - apps/client/src/app/pages/about/about-page.component.ts - 62 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 8 - - license - licentie + + Explore the links below to compare a variety of personal finance tools with Ghostfolio. + Bekijk de links hieronder om verschillende persoonlijke financiële tools met Ghostfolio te vergelijken. - apps/client/src/app/app-routing.module.ts - 11 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 16 + + + Open Source Alternative to + Open Source alternatief voor - apps/client/src/app/app.component.ts - 49 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 35 + + + Open Source Alternative to + Open Source alternatief voor - apps/client/src/app/pages/about/about-page.component.ts - 54 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 25 - - markets - markten + + The Open Source Alternative to + Open Source alternatief voor - apps/client/src/app/app-routing.module.ts - 12 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/app.component.ts - 56 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/header/header.component.ts - 73 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/header/header.component.ts - 78 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/faq/faq-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - - - pricing - prijzen - apps/client/src/app/app-routing.module.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/app.component.ts - 57 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/header/header.component.ts - 74 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/header/header.component.ts - 79 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/home-summary/home-summary.component.ts - 124 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 37 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/core/http-response.interceptor.ts - 80 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts - 15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/faq/faq-page.component.ts - 15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - libs/ui/src/lib/membership-card/membership-card.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - - - register - registratie - apps/client/src/app/app-routing.module.ts - 15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/app.component.ts - 58 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/header/header.component.ts - 80 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/core/auth.guard.ts - 53 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/faq/faq-page.component.ts - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/features/features-page.component.ts - 17 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/landing/landing-page.component.ts - 26 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/pricing/pricing-page.component.ts - 35 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - - - resources - bronnen - apps/client/src/app/app-routing.module.ts - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/app.component.ts - 59 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. + Ben je op zoek naar een open source alternatief voor ? Ghostfolio is een krachtige tool voor portefeuillebeheer die particulieren een uitgebreid platform biedt om hun beleggingen bij te houden, te analyseren en te optimaliseren. Of je nu een ervaren belegger bent of net begint, Ghostfolio biedt een intuïtieve gebruikersinterface en uitgebreide functionaliteiten om je te helpen weloverwogen beslissingen te nemen en je financiële toekomst in eigen handen te nemen. - apps/client/src/app/components/header/header.component.ts - 75 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/components/header/header.component.ts - 81 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 13 - apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/features/features-page.component.ts - 18 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/resources-page.component.ts - 17 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - - - This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. - Deze overzichtspagina bevat een verzameling tools voor persoonlijke financiën vergeleken met het open source alternatief Ghostfolio. Als je waarde hecht aan transparantie, gegevensprivacy en samenwerking binnen een gemeenschap, biedt Ghostfolio een uitstekende mogelijkheid om je financieel beheer in eigen hand te nemen. - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 8,15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - - Explore the links below to compare a variety of personal finance tools with Ghostfolio. - Bekijk de links hieronder om verschillende persoonlijke financiële tools met Ghostfolio te vergelijken. + + Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. + Ghostfolio is open source software (OSS) en biedt een kosteneffectief alternatief voor waardoor het bijzonder geschikt is voor mensen met een krap budget, zoals degenen Financiële onafhankelijkheid nastreven, vroeg met pensioen gaan (FIRE). Door gebruik te maken van de collectieve inspanningen van een gemeenschap van ontwikkelaars en liefhebbers van persoonlijke financiën, verbetert Ghostfolio voortdurend de mogelijkheden, veiligheid en gebruikerservaring. - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 16,19 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26 - - - Open Source Alternative to - Open Source alternatief voor - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 35,37 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26 - - - Open Source Alternative to - Open Source alternatief voor - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 25 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26 - - - The Open Source Alternative to - Open Source alternatief voor apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 - - - Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. - Ben je op zoek naar een open source alternatief voor ? Ghostfolio is een krachtige tool voor portefeuillebeheer die particulieren een uitgebreid platform biedt om hun beleggingen bij te houden, te analyseren en te optimaliseren. Of je nu een ervaren belegger bent of net begint, Ghostfolio biedt een intuïtieve gebruikersinterface en uitgebreide functionaliteiten om je te helpen weloverwogen beslissingen te nemen en je financiële toekomst in eigen handen te nemen. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 + + + Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. + Laten we eens dieper duiken in de gedetailleerde vergelijkingstabel hieronder om een beter begrip te krijgen hoe Ghostfolio zichzelf positioneert ten opzichte van . We gaan in op verschillende aspecten zoals functies, gegevensprivacy, prijzen en meer, zodat je een weloverwogen keuze kunt maken voor jouw persoonlijke behoeften. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 - - - Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. - Ghostfolio is open source software (OSS) en biedt een kosteneffectief alternatief voor waardoor het bijzonder geschikt is voor mensen met een krap budget, zoals degenen Financiële onafhankelijkheid nastreven, vroeg met pensioen gaan (FIRE). Door gebruik te maken van de collectieve inspanningen van een gemeenschap van ontwikkelaars en liefhebbers van persoonlijke financiën, verbetert Ghostfolio voortdurend de mogelijkheden, veiligheid en gebruikerservaring. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 + + + Starting from / year + Vanaf / jaar apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 - - - Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. - Laten we eens dieper duiken in de gedetailleerde vergelijkingstabel hieronder om een beter begrip te krijgen hoe Ghostfolio zichzelf positioneert ten opzichte van . We gaan in op verschillende aspecten zoals functies, gegevensprivacy, prijzen en meer, zodat je een weloverwogen keuze kunt maken voor jouw persoonlijke behoeften. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 + + + Starting from / year + Vanaf / jaar apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 - - - Starting from / year - Vanaf / jaar apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 - - - Starting from / year - Vanaf / jaar apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 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 + + + 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 - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 - - - 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/product-page-template.html + 203 - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 203 - - - 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 - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 + + + 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 - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 - - - 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 - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 + + + Get Started + Aan de slag apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 - - - Get Started - Aan de slag apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 @@ -10441,23 +12037,23 @@ Zwitserland apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 54 + 64 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 66 + 86 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 375 + 465 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 398 + 498 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 399 + 499 @@ -10465,15 +12061,15 @@ Wereldwijd apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 56 + 66 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 217 + 287 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 318 + 408 @@ -10481,35 +12077,67 @@ Verenigde Staten apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 106 + 77 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 140 + 135 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 150 + 168 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 203 + 178 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 228 + 188 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 230 + 240 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 294 + 262 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 305 + 273 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 298 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 300 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 310 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 375 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 385 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 395 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 476 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 509 @@ -10517,7 +12145,7 @@ België apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 118 + 147 @@ -10525,31 +12153,31 @@ Duitsland apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 95 + 124 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 129 + 158 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 172 + 220 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 182 + 230 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 192 + 251 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 215 + 285 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 250 + 331 @@ -10557,7 +12185,7 @@ Oostenrijk apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 160 + 208 @@ -10565,7 +12193,7 @@ Italië apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 261 + 342 @@ -10573,7 +12201,7 @@ Nederland apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 271 + 352 @@ -10581,7 +12209,7 @@ Thailand apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 283 + 364 @@ -10589,7 +12217,7 @@ Nieuw-Zeeland apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 316 + 406 @@ -10597,11 +12225,11 @@ Tsjechië apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 327 + 417 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 364 + 454 @@ -10677,7 +12305,7 @@ 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 - 187,188 + 198 @@ -10709,7 +12337,7 @@ Add Tag apps/client/src/app/components/admin-tag/admin-tag.component.html - 11,13 + 11 @@ -10741,15 +12369,15 @@ France apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 76 + 105 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 338 + 428 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 354 + 444 @@ -10757,7 +12385,7 @@ 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,101 + 100 @@ -10793,7 +12421,7 @@ Benchmark apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 220 + 219 @@ -10825,7 +12453,7 @@ To apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 21 + 29 @@ -10833,7 +12461,7 @@ Transfer apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 50 + 66 @@ -10841,7 +12469,7 @@ Finland apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 346 + 436 @@ -10893,7 +12521,7 @@ Asset Profile apps/client/src/app/components/admin-jobs/admin-jobs.html - 31,33 + 31 @@ -10901,7 +12529,7 @@ Do you really want to delete this asset profile? apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 182 + 184 @@ -10925,7 +12553,7 @@ 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,7 + 4 @@ -10941,7 +12569,7 @@ User apps/client/src/app/components/admin-users/admin-users.html - 29,31 + 29 @@ -10949,131 +12577,171 @@ Ghostfolio vs comparison table apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 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,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 @@ -11081,7 +12749,7 @@ Canada apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 388 + 488 @@ -11097,7 +12765,7 @@ app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 apps/client/src/app/pages/i18n/i18n-page.html - 8,11 + 8 @@ -11113,7 +12781,55 @@ Poland apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 86 + 115 + + + + South Africa + South Africa + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 197 + + + + Extreme Fear + Extreme Fear + + libs/ui/src/lib/i18n.ts + 63 + + + + Extreme Greed + Extreme Greed + + libs/ui/src/lib/i18n.ts + 64 + + + + Neutral + Neutral + + libs/ui/src/lib/i18n.ts + 67 + + + + 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 + + + + 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 diff --git a/apps/client/src/locales/messages.pt.xlf b/apps/client/src/locales/messages.pt.xlf index c05728e83..8f4fbb6ac 100644 --- a/apps/client/src/locales/messages.pt.xlf +++ b/apps/client/src/locales/messages.pt.xlf @@ -6,7 +6,7 @@ O risco de perda em investimentos pode ser substancial. Não é aconselhável investir dinheiro que possa vir a precisar a curto prazo. apps/client/src/app/app.component.html - 174,175 + 174 @@ -50,7 +50,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 156 + 164 @@ -110,7 +110,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 111 + 110 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -136,9 +136,13 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html 34 + + apps/client/src/app/components/admin-market-data/admin-market-data.html + 38 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 183 + 182 apps/client/src/app/components/admin-platform/admin-platform.component.html @@ -162,11 +166,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 103 + 114 libs/ui/src/lib/activities-table/activities-table.component.html - 171 + 179 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -182,7 +186,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 151 + 159 @@ -194,7 +198,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 92 + 91 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -202,11 +206,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 109 + 120 libs/ui/src/lib/activities-table/activities-table.component.html - 201 + 209 @@ -238,43 +242,43 @@ apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 31 + 47 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 157 + 168 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 158 + 169 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 160 + 171 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 213 + 224 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 214 + 225 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 215 + 226 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 216 + 227 libs/ui/src/lib/activities-table/activities-table.component.html - 313 + 321 libs/ui/src/lib/activities-table/activities-table.component.html - 348 + 356 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -286,19 +290,27 @@ Editar apps/client/src/app/components/accounts-table/accounts-table.component.html - 258 + 259 + + + apps/client/src/app/components/admin-market-data/admin-market-data.html + 170 + + + apps/client/src/app/components/admin-overview/admin-overview.html + 86 apps/client/src/app/components/admin-platform/admin-platform.component.html - 90 + 91 apps/client/src/app/components/admin-tag/admin-tag.component.html - 70 + 71 libs/ui/src/lib/activities-table/activities-table.component.html - 490 + 507 @@ -306,23 +318,31 @@ Eliminar apps/client/src/app/components/accounts-table/accounts-table.component.html - 266 + 269 apps/client/src/app/components/admin-market-data/admin-market-data.html - 151 + 180 + + + apps/client/src/app/components/admin-overview/admin-overview.html + 99 + + + apps/client/src/app/components/admin-overview/admin-overview.html + 201 apps/client/src/app/components/admin-platform/admin-platform.component.html - 94 + 97 apps/client/src/app/components/admin-tag/admin-tag.component.html - 74 + 77 libs/ui/src/lib/activities-table/activities-table.component.html - 506 + 529 @@ -346,7 +366,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 87 + 86 apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html @@ -362,11 +382,11 @@ apps/client/src/app/components/admin-market-data/admin-market-data.html - 33 + 51 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 119 + 130 @@ -422,7 +442,7 @@ Histórico de Dados de Mercado apps/client/src/app/components/admin-jobs/admin-jobs.html - 37,39 + 37 @@ -466,11 +486,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 125 + 136 libs/ui/src/lib/activities-table/activities-table.component.html - 144 + 152 @@ -494,7 +514,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 261 + 260 apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html @@ -518,11 +538,11 @@ apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 43 + 59 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 351 + 362 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -538,7 +558,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 268 + 267 apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html @@ -562,7 +582,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 358 + 369 @@ -570,7 +590,7 @@ Filtrar por... apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 279 + 281 @@ -578,15 +598,15 @@ Classe do Ativo apps/client/src/app/components/admin-market-data/admin-market-data.html - 42 + 60 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 120 + 119 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 189 + 188 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -594,7 +614,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 280 + 291 @@ -602,15 +622,15 @@ Subclasse do ativo apps/client/src/app/components/admin-market-data/admin-market-data.html - 51 + 69 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 129 + 128 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 202 + 201 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -618,7 +638,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 296 + 307 @@ -626,11 +646,11 @@ Primeira Atividade apps/client/src/app/components/admin-market-data/admin-market-data.html - 60 + 78 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 102 + 101 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -654,7 +674,7 @@ Dados Históricos apps/client/src/app/components/admin-market-data/admin-market-data.html - 78 + 96 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -666,7 +686,7 @@ Contagem de Países apps/client/src/app/components/admin-market-data/admin-market-data.html - 96 + 114 @@ -674,7 +694,7 @@ Contagem de Setores apps/client/src/app/components/admin-market-data/admin-market-data.html - 87 + 105 @@ -682,7 +702,7 @@ Atualizar dados mais recentes apps/client/src/app/components/admin-market-data/admin-market-data.html - 126 + 144 @@ -690,7 +710,7 @@ Recolher Todos os Dados apps/client/src/app/components/admin-market-data/admin-market-data.html - 129 + 147 @@ -698,7 +718,7 @@ Recolher Dados de Perfíl apps/client/src/app/components/admin-market-data/admin-market-data.html - 132 + 150 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -710,7 +730,7 @@ Por favor, adicione uma moeda: apps/client/src/app/components/admin-overview/admin-overview.component.ts - 113 + 119 @@ -718,7 +738,7 @@ Deseja realmente eliminar este cupão? apps/client/src/app/components/admin-overview/admin-overview.component.ts - 127 + 133 @@ -726,7 +746,7 @@ Deseja realmente excluir esta moeda? apps/client/src/app/components/admin-overview/admin-overview.component.ts - 140 + 146 @@ -734,7 +754,7 @@ Deseja realmente limpar a cache? apps/client/src/app/components/admin-overview/admin-overview.component.ts - 157 + 169 @@ -742,7 +762,7 @@ Por favor, defina a sua mensagem do sistema: apps/client/src/app/components/admin-overview/admin-overview.component.ts - 187 + 200 @@ -774,7 +794,7 @@ Adicionar Moeda apps/client/src/app/components/admin-overview/admin-overview.html - 76 + 113 @@ -782,7 +802,7 @@ Mensagem de Sistema apps/client/src/app/components/admin-overview/admin-overview.html - 104 + 141 @@ -790,7 +810,7 @@ Definir Mensagem apps/client/src/app/components/admin-overview/admin-overview.html - 126 + 164 @@ -798,7 +818,7 @@ Modo Somente Leitura apps/client/src/app/components/admin-overview/admin-overview.html - 93 + 130 @@ -806,7 +826,7 @@ Cupões apps/client/src/app/components/admin-overview/admin-overview.html - 134 + 172 @@ -814,7 +834,7 @@ Adicionar apps/client/src/app/components/admin-overview/admin-overview.html - 178 + 233 @@ -822,7 +842,7 @@ Manutenção apps/client/src/app/components/admin-overview/admin-overview.html - 185 + 240 @@ -830,7 +850,7 @@ Limpar Cache apps/client/src/app/components/admin-overview/admin-overview.html - 189 + 244 @@ -894,7 +914,7 @@ Último Pedido apps/client/src/app/components/admin-users/admin-users.html - 169,171 + 169 @@ -1152,6 +1172,46 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 183 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + About @@ -1292,6 +1352,10 @@ apps/client/src/app/components/home-market/home-market.component.ts 24 + + libs/ui/src/lib/i18n.ts + 65 + Greed @@ -1300,6 +1364,10 @@ apps/client/src/app/components/home-market/home-market.component.ts 25 + + libs/ui/src/lib/i18n.ts + 66 + Last Days @@ -1493,7 +1561,7 @@ Taxas para apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 12,15 + 12 @@ -1501,7 +1569,7 @@ {VAR_PLURAL, plural, =1 {transação} other {transações}} apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 13,14 + 13 @@ -1581,7 +1649,7 @@ Desempenho Anual apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 262,264 + 262 @@ -1601,11 +1669,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 155 + 166 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 211 + 222 @@ -1657,11 +1725,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 142 + 153 libs/ui/src/lib/activities-table/activities-table.component.html - 222 + 230 @@ -1669,7 +1737,7 @@ Setor apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 144 + 143 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -1681,7 +1749,7 @@ País apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 153 + 152 apps/client/src/app/components/admin-users/admin-users.html @@ -1697,7 +1765,7 @@ Setores apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 159 + 158 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -1713,7 +1781,7 @@ Países apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 169 + 168 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -1733,7 +1801,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 309 + 320 @@ -1977,16 +2045,12 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 379 + 387 Membership Filiação - - apps/client/src/app/components/user-account-membership/user-account-membership.html - 2 - libs/ui/src/lib/membership-card/membership-card.component.html 18 @@ -1997,7 +2061,7 @@ Atualizar apps/client/src/app/components/user-account-membership/user-account-membership.html - 19 + 18 @@ -2005,7 +2069,7 @@ por ano apps/client/src/app/components/user-account-membership/user-account-membership.html - 34 + 33 apps/client/src/app/pages/pricing/pricing-page.html @@ -2017,7 +2081,7 @@ Experimentar Premium apps/client/src/app/components/user-account-membership/user-account-membership.html - 43 + 42 @@ -2025,7 +2089,7 @@ Resgatar Cupão apps/client/src/app/components/user-account-membership/user-account-membership.html - 56 + 55 @@ -2303,6 +2367,10 @@ apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.html 181 + + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023/hacktoberfest-2023-debriefing-page.html + 270 + apps/client/src/app/pages/blog/blog-page.html 5 @@ -2429,7 +2497,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 91 + 102 @@ -2437,15 +2505,15 @@ Preço por Unidade apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 162 + 173 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 217 + 228 libs/ui/src/lib/activities-table/activities-table.component.html - 251 + 259 @@ -2453,15 +2521,15 @@ Comissão apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 231 + 242 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 256 + 267 libs/ui/src/lib/activities-table/activities-table.component.html - 280 + 288 @@ -2469,7 +2537,7 @@ Nota apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 248 + 247 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -2477,7 +2545,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 265 + 276 @@ -2809,7 +2877,7 @@ Olá, partilhou um Portefólio consigo! apps/client/src/app/pages/public/public-page.html - 4,7 + 4 @@ -2833,7 +2901,7 @@ O Ghostfolio permite-lhe estar a par e gerir a sua riqueza. apps/client/src/app/pages/public/public-page.html - 147,149 + 147 @@ -2901,7 +2969,7 @@ Concordo em como guardei o meu Token de Segurança acima num local seguro. Se o perder, não conseguirei recuperar a minha conta. apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html - 31,34 + 31 @@ -2949,7 +3017,7 @@ Rascunho libs/ui/src/lib/activities-table/activities-table.component.html - 181 + 189 @@ -2965,11 +3033,11 @@ Exportar Atividades libs/ui/src/lib/activities-table/activities-table.component.html - 44 + 47 libs/ui/src/lib/activities-table/activities-table.component.html - 463 + 476 @@ -2977,11 +3045,11 @@ Exportar Rascunhos como ICS libs/ui/src/lib/activities-table/activities-table.component.html - 54 + 59 libs/ui/src/lib/activities-table/activities-table.component.html - 473 + 488 @@ -2989,7 +3057,7 @@ Clonar libs/ui/src/lib/activities-table/activities-table.component.html - 494 + 513 @@ -2997,7 +3065,7 @@ Exportar Rascunho como ICS libs/ui/src/lib/activities-table/activities-table.component.html - 502 + 523 @@ -3297,7 +3365,7 @@ Nº de Atividades apps/client/src/app/components/admin-market-data/admin-market-data.html - 69 + 87 @@ -3313,7 +3381,7 @@ Mapeamento de Símbolo apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 226 + 225 @@ -3321,7 +3389,7 @@ Registo do Utilizador apps/client/src/app/components/admin-overview/admin-overview.html - 82 + 119 @@ -3397,7 +3465,7 @@ Importar apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 80 + 79 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html @@ -3529,7 +3597,7 @@ Proteção para informações sensíveis, como desempenhos absolutos e valores quantitativos apps/client/src/app/components/user-account-settings/user-account-settings.html - 8,11 + 8 @@ -3537,7 +3605,7 @@ Experiência sem distrações para tempos turbulentos apps/client/src/app/components/user-account-settings/user-account-settings.html - 138,140 + 138 @@ -3545,7 +3613,7 @@ Acesso antecipado a funcionalidades futuras apps/client/src/app/components/user-account-settings/user-account-settings.html - 173,175 + 173 @@ -3553,7 +3621,7 @@ É um investidor ambicioso que precisa de ter uma vista completa? apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 15,17 + 15 @@ -3645,7 +3713,7 @@ Para investidores experientes que preferem correr o Ghostfolio na sua própria infraestrutura. apps/client/src/app/pages/pricing/pricing-page.html - 36,39 + 36 @@ -3721,7 +3789,7 @@ Para novos investidores que estão a começar a investir agora. apps/client/src/app/pages/pricing/pricing-page.html - 150,152 + 150 @@ -3741,7 +3809,7 @@ Para investidores ambiciosos que precisam de ter uma visão completa de seus ativos financeiros. apps/client/src/app/pages/pricing/pricing-page.html - 225,228 + 225 @@ -3757,7 +3825,7 @@ Começar apps/client/src/app/pages/pricing/pricing-page.html - 363,365 + 363 @@ -3881,7 +3949,7 @@ Oops! Não foi possível obter a taxa de câmbio histórica de apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 247 + 258 @@ -3925,7 +3993,7 @@ Renovar apps/client/src/app/components/user-account-membership/user-account-membership.html - 22 + 21 @@ -3941,7 +4009,7 @@ A nossa oferta oficial Ghostfolio Premium na nuvem é a maneira mais fácil de começar. Com o tempo que poupa, esta será a melhor opção para a maioria das pessoas. A receita é utilizada para cobrir a infraestrutura de hospedagem e financiar o desenvolvimento contínuo do Ghostfolio. apps/client/src/app/pages/pricing/pricing-page.html - 6,11 + 6 @@ -3949,7 +4017,7 @@ Personificar Utilizador apps/client/src/app/components/admin-users/admin-users.html - 207 + 208 @@ -3957,7 +4025,7 @@ Apagar Utilizador apps/client/src/app/components/admin-users/admin-users.html - 215 + 218 @@ -3981,7 +4049,7 @@ Apagar todas as Atividades libs/ui/src/lib/activities-table/activities-table.component.html - 62 + 69 @@ -4033,7 +4101,7 @@ Atualizar saldo em Dinheiro apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 83 + 94 @@ -4049,7 +4117,7 @@ Atualize para o Ghostfolio Premium e obtenha acesso a recursos exclusivos para aperfeiçoar a sua experiência de investimento: apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 18,21 + 18 @@ -4057,7 +4125,7 @@ Obtenha as ferramentas necessárias para gerir as suas finanças de forma eficaz e aperfeiçoe a sua estratégia de investimento pessoal. apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 48,51 + 48 @@ -4065,7 +4133,7 @@ Adicionar Plataforma apps/client/src/app/components/admin-platform/admin-platform.component.html - 11,13 + 11 @@ -4153,7 +4221,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 444 + 453 @@ -4161,11 +4229,11 @@ Importar Dividendos libs/ui/src/lib/activities-table/activities-table.component.html - 34 + 35 libs/ui/src/lib/activities-table/activities-table.component.html - 453 + 464 @@ -4237,7 +4305,7 @@ Se se reformar-se hoje, teria a possibilidade de efetuar um levantamento por ano ou por mês, com base no seu património total de e uma taxa de levantamento de 4%. apps/client/src/app/pages/portfolio/fire/fire-page.html - 57,90 + 57 @@ -4321,7 +4389,7 @@ Import and Export apps/client/src/app/pages/features/features-page.html - 115,117 + 115 @@ -4393,7 +4461,7 @@ Scraper Configuration apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 237 + 236 @@ -4417,7 +4485,7 @@ Discover Open Source Alternatives for Personal Finance Tools apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 4,6 + 4 @@ -4551,6 +4619,46 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 67 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 67 + Origin @@ -4683,6 +4791,46 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 72 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 72 + Region @@ -4815,137 +4963,217 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 77 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + Available in Available in apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 82 @@ -5079,6 +5307,46 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 104 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 111 @@ -5209,43 +5477,43 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 111 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -5335,6 +5603,102 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 125 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 136 @@ -5463,6 +5827,38 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 136 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 150 @@ -5591,6 +5987,78 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 150 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 157 @@ -5849,43 +6317,43 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -5975,73 +6443,133 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 176 - - - ❌ No - ❌ No apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 176 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 176 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 176 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 176 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 176 + + + + ❌ No + ❌ No + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -6107,6 +6635,70 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 106 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 129 @@ -6235,6 +6827,82 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 129 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 129 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 140 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 140 @@ -6493,43 +7161,43 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -6621,67 +7289,83 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 159 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 159 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 159 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 159 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -6749,107 +7433,107 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -6875,3565 +7559,4477 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 178 - - - ❌ No - ❌ No apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 178 - - - Self-Hosting - Self-Hosting apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 178 + + + ❌ No + ❌ No apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 113 - - - Use anonymously - Use anonymously apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 113 + + + Self-Hosting + Self-Hosting apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 118 - - - Free Plan - Free Plan apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 118 + + + Use anonymously + Use anonymously apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 145 - - - Notes - Notes apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 145 - - - 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 - 220,223 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 145 + + + Free Plan + Free Plan apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 164 - - - Personal Finance Tools - Personal Finance Tools apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 164 + + + Notes + Notes apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 292 + 195 - - - Guides - Guides - apps/client/src/app/pages/resources/resources-page.html - 5 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Glossary - Glossary - apps/client/src/app/pages/resources/resources-page.html - 75 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Stocks, ETFs, bonds, cryptocurrencies, commodities - Stocks, ETFs, bonds, cryptocurrencies, commodities - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 21 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 51 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Mortgages, personal loans, credit cards - Mortgages, personal loans, credit cards - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 45 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Luxury items, real estate, private companies - Luxury items, real estate, private companies - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 57 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Buy - Buy - libs/ui/src/lib/i18n.ts - 30 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Valuable - Valuable - libs/ui/src/lib/i18n.ts - 34 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - ETFs without Countries - ETFs without Countries - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 70 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - ETFs without Sectors - ETFs without Sectors - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 75 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Assets - Assets - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Preset - Preset - libs/ui/src/lib/i18n.ts - 21 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - By Market - By Market - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 177 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Asia-Pacific - Asia-Pacific - libs/ui/src/lib/i18n.ts - 5 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Japan - Japan - libs/ui/src/lib/i18n.ts - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Welcome to Ghostfolio - Welcome to Ghostfolio - apps/client/src/app/components/home-overview/home-overview.html - 9 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Setup your accounts - Setup your accounts - apps/client/src/app/components/home-overview/home-overview.html - 17 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Get a comprehensive financial overview by adding your bank and brokerage accounts. - Get a comprehensive financial overview by adding your bank and brokerage accounts. - apps/client/src/app/components/home-overview/home-overview.html - 19,20 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Capture your activities - Capture your activities - apps/client/src/app/components/home-overview/home-overview.html - 26 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Record your investment activities to keep your portfolio up to date. - Record your investment activities to keep your portfolio up to date. - apps/client/src/app/components/home-overview/home-overview.html - 28,29 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Monitor and analyze your portfolio - Monitor and analyze your portfolio - apps/client/src/app/components/home-overview/home-overview.html - 35 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - - Track your progress in real-time with comprehensive analysis and insights. - Track your progress in real-time with comprehensive analysis and insights. - apps/client/src/app/components/home-overview/home-overview.html - 37,38 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 195 - - No data available - No data available + + Effortlessly track, analyze, and visualize your wealth with Ghostfolio. + Effortlessly track, analyze, and visualize your wealth with Ghostfolio. - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 254 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 - apps/client/src/app/pages/public/public-page.html - 123 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 - - - Ready to take control of your personal finances? - Ready to take control of your personal finances? - apps/client/src/app/components/home-overview/home-overview.html - 10 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 - + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220 + + + + Personal Finance Tools + Personal Finance Tools + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 292 + + + + Guides + Guides + + apps/client/src/app/pages/resources/resources-page.html + 5 + + + + Glossary + Glossary + + apps/client/src/app/pages/resources/resources-page.html + 75 + + + + Stocks, ETFs, bonds, cryptocurrencies, commodities + Stocks, ETFs, bonds, cryptocurrencies, commodities + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 21 + + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 51 + + + + Mortgages, personal loans, credit cards + Mortgages, personal loans, credit cards + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 45 + + + + Luxury items, real estate, private companies + Luxury items, real estate, private companies + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 57 + + + + Buy + Buy + + libs/ui/src/lib/i18n.ts + 30 + + + + Valuable + Valuable + + libs/ui/src/lib/i18n.ts + 34 + + + + ETFs without Countries + ETFs without Countries + + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 71 + + + + ETFs without Sectors + ETFs without Sectors + + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 76 + + + + Assets + Assets + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 190 + + + + Preset + Preset + + libs/ui/src/lib/i18n.ts + 21 + + + + By Market + By Market + + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 177 + + + + Asia-Pacific + Asia-Pacific + + libs/ui/src/lib/i18n.ts + 5 + + + + Japan + Japan + + libs/ui/src/lib/i18n.ts + 16 + + + + Welcome to Ghostfolio + Welcome to Ghostfolio + + apps/client/src/app/components/home-overview/home-overview.html + 9 + + + + Setup your accounts + Setup your accounts + + apps/client/src/app/components/home-overview/home-overview.html + 17 + + + + Get a comprehensive financial overview by adding your bank and brokerage accounts. + Get a comprehensive financial overview by adding your bank and brokerage accounts. + + apps/client/src/app/components/home-overview/home-overview.html + 19 + + + + Capture your activities + Capture your activities + + apps/client/src/app/components/home-overview/home-overview.html + 26 + + + + Record your investment activities to keep your portfolio up to date. + Record your investment activities to keep your portfolio up to date. + + apps/client/src/app/components/home-overview/home-overview.html + 28 + + + + Monitor and analyze your portfolio + Monitor and analyze your portfolio + + apps/client/src/app/components/home-overview/home-overview.html + 35 + + + + Track your progress in real-time with comprehensive analysis and insights. + Track your progress in real-time with comprehensive analysis and insights. + + apps/client/src/app/components/home-overview/home-overview.html + 37 + + + + No data available + No data available + + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 254 + + + apps/client/src/app/pages/public/public-page.html + 123 + + + + Ready to take control of your personal finances? + Ready to take control of your personal finances? + + apps/client/src/app/components/home-overview/home-overview.html + 10 + + Setup accounts Setup accounts - apps/client/src/app/components/home-overview/home-overview.html - 50 + apps/client/src/app/components/home-overview/home-overview.html + 50 + + + + Biometric Authentication + Biometric Authentication + + apps/client/src/app/components/user-account-settings/user-account-settings.html + 154 + + + + At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. + At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. + + apps/client/src/app/pages/open/open-page.html + 6 + + + + Active Users + Active Users + + apps/client/src/app/pages/open/open-page.html + 40 + + + apps/client/src/app/pages/open/open-page.html + 62 + + + + New Users + New Users + + apps/client/src/app/pages/open/open-page.html + 51 + + + + Users in Slack community + Users in Slack community + + apps/client/src/app/pages/open/open-page.html + 75 + + + + Contributors on GitHub + Contributors on GitHub + + apps/client/src/app/pages/open/open-page.html + 89 + + + + Stars on GitHub + Stars on GitHub + + apps/client/src/app/pages/landing/landing-page.html + 93 + + + apps/client/src/app/pages/open/open-page.html + 103 + + + + Pulls on Docker Hub + Pulls on Docker Hub + + apps/client/src/app/pages/landing/landing-page.html + 111 + + + apps/client/src/app/pages/open/open-page.html + 117 + + + + Uptime + Uptime + + apps/client/src/app/pages/open/open-page.html + 132 + + + + Export Data + Export Data + + apps/client/src/app/components/user-account-settings/user-account-settings.html + 195 + + + + Currencies + Currencies + + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 66 + + + + Our + Our + + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 6 + + + + Visit + Visit + + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 28 + + + + Discover other exciting Open Source Software projects + Discover other exciting Open Source Software projects + + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 9 + + + + Frequently Asked Questions (FAQ) + Frequently Asked Questions (FAQ) + + apps/client/src/app/pages/faq/faq-page.html + 4 + + + + Check out the numerous features of Ghostfolio to manage your wealth + Check out the numerous features of Ghostfolio to manage your wealth + + apps/client/src/app/pages/features/features-page.html + 6 + + + + Discover the latest Ghostfolio updates and insights on personal finance + Discover the latest Ghostfolio updates and insights on personal finance + + apps/client/src/app/pages/blog/blog-page.html + 7 + + + + If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. + If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. + + apps/client/src/app/pages/pricing/pricing-page.html + 24 + + + + Manage your wealth like a boss + Manage your wealth like a boss + + apps/client/src/app/pages/landing/landing-page.html + 11 + + + + Ghostfolio is a privacy-first, open source dashboard for your personal finances. Break down your asset allocation, know your net worth and make solid, data-driven investment decisions. + Ghostfolio is a privacy-first, open source dashboard for your personal finances. Break down your asset allocation, know your net worth and make solid, data-driven investment decisions. + + apps/client/src/app/pages/landing/landing-page.html + 15 + + + + Get Started + Get Started + + apps/client/src/app/pages/landing/landing-page.html + 47 + + + apps/client/src/app/pages/landing/landing-page.html + 431 + + + + or + or + + apps/client/src/app/pages/landing/landing-page.html + 52 + + + + Monthly Active Users + Monthly Active Users + + apps/client/src/app/pages/landing/landing-page.html + 75 + + + + As seen in + As seen in + + apps/client/src/app/pages/landing/landing-page.html + 119 + + + + Protect your assets. Refine your personal investment strategy. + Protect your assets. Refine your personal investment strategy. + + apps/client/src/app/pages/landing/landing-page.html + 221 + + + + Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. + Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. + + apps/client/src/app/pages/landing/landing-page.html + 225 + + + + 360° View + 360° View + + apps/client/src/app/pages/landing/landing-page.html + 236 + + + + Web3 Ready + Web3 Ready + + apps/client/src/app/pages/landing/landing-page.html + 247 + + + + Use Ghostfolio anonymously and own your financial data. + Use Ghostfolio anonymously and own your financial data. + + apps/client/src/app/pages/landing/landing-page.html + 249 + + + + Open Source + Open Source + + apps/client/src/app/pages/landing/landing-page.html + 257 + + + + Benefit from continuous improvements through a strong community. + Benefit from continuous improvements through a strong community. + + apps/client/src/app/pages/landing/landing-page.html + 259 + + + + Why Ghostfolio? + Why Ghostfolio? + + apps/client/src/app/pages/landing/landing-page.html + 268 + + + + Ghostfolio is for you if you are... + Ghostfolio is for you if you are... + + apps/client/src/app/pages/landing/landing-page.html + 269 + + + + trading stocks, ETFs or cryptocurrencies on multiple platforms + trading stocks, ETFs or cryptocurrencies on multiple platforms + + apps/client/src/app/pages/landing/landing-page.html + 276 + + + + pursuing a buy & hold strategy + pursuing a buy & hold strategy + + apps/client/src/app/pages/landing/landing-page.html + 282 + + + + interested in getting insights of your portfolio composition + interested in getting insights of your portfolio composition + + apps/client/src/app/pages/landing/landing-page.html + 287 + + + + valuing privacy and data ownership + valuing privacy and data ownership + + apps/client/src/app/pages/landing/landing-page.html + 292 + + + + into minimalism + into minimalism + + apps/client/src/app/pages/landing/landing-page.html + 295 + + + + caring about diversifying your financial resources + caring about diversifying your financial resources + + apps/client/src/app/pages/landing/landing-page.html + 299 + + + + interested in financial independence + interested in financial independence + + apps/client/src/app/pages/landing/landing-page.html + 303 + + + + saying no to spreadsheets in + saying no to spreadsheets in + + apps/client/src/app/pages/landing/landing-page.html + 307 + + + + still reading this list + still reading this list + + apps/client/src/app/pages/landing/landing-page.html + 310 + + + + Learn more about Ghostfolio + Learn more about Ghostfolio + + apps/client/src/app/pages/landing/landing-page.html + 315 + + + + What our users are saying + What our users are saying + + apps/client/src/app/pages/landing/landing-page.html + 323 + + + + Members from around the globe are using Ghostfolio Premium + Members from around the globe are using Ghostfolio Premium + + apps/client/src/app/pages/landing/landing-page.html + 358 + + + + How does Ghostfolio work? + How does Ghostfolio work? + + apps/client/src/app/pages/landing/landing-page.html + 373 + + + + Sign up anonymously* + Sign up anonymously* + + apps/client/src/app/pages/landing/landing-page.html + 382 + + + + * no e-mail address nor credit card required + * no e-mail address nor credit card required + + apps/client/src/app/pages/landing/landing-page.html + 384 + + + + Add any of your historical transactions + Add any of your historical transactions + + apps/client/src/app/pages/landing/landing-page.html + 395 + + + + Get valuable insights of your portfolio composition + Get valuable insights of your portfolio composition + + apps/client/src/app/pages/landing/landing-page.html + 407 + + + + Are you ready? + Are you ready? + + apps/client/src/app/pages/landing/landing-page.html + 419 + + + + Join now or check out the example account + Join now or check out the example account + + apps/client/src/app/pages/landing/landing-page.html + 420 + + + + Live Demo + Live Demo + + apps/client/src/app/pages/landing/landing-page.html + 55 + + + apps/client/src/app/pages/landing/landing-page.html + 436 + + + + Get the full picture of your personal finances across multiple platforms. + Get the full picture of your personal finances across multiple platforms. + + apps/client/src/app/pages/landing/landing-page.html + 238 + + + + Get started in only 3 steps + Get started in only 3 steps + + apps/client/src/app/pages/landing/landing-page.html + 376 + + + + faq + perguntas-mais-frequentes + + apps/client/src/app/app-routing.module.ts + 9 + + + apps/client/src/app/app.component.ts + 54 + + + apps/client/src/app/pages/about/overview/about-overview-page.component.ts + 19 + + + + features + funcionalidades + + apps/client/src/app/app-routing.module.ts + 10 + + + apps/client/src/app/app.component.ts + 55 + + + apps/client/src/app/components/header/header.component.ts + 72 + + + apps/client/src/app/components/header/header.component.ts + 77 + + + apps/client/src/app/pages/about/overview/about-overview-page.component.ts + 20 + + + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 14 + + + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 15 + + + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023/hacktoberfest-2023-debriefing-page.component.ts + 14 + + + apps/client/src/app/pages/faq/faq-page.component.ts + 13 + + + apps/client/src/app/pages/pricing/pricing-page.component.ts + 34 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts + 26 - - - Biometric Authentication - Biometric Authentication - apps/client/src/app/components/user-account-settings/user-account-settings.html - 154 + apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts + 26 - - - At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. - At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. - apps/client/src/app/pages/open/open-page.html - 6,22 + apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts + 26 - - - Active Users - Active Users - apps/client/src/app/pages/open/open-page.html - 40 + apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts + 26 - apps/client/src/app/pages/open/open-page.html - 62 + apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts + 26 - - - New Users - New Users - apps/client/src/app/pages/open/open-page.html - 51 + apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts + 26 - - - Users in Slack community - Users in Slack community - apps/client/src/app/pages/open/open-page.html - 75 + apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts + 26 - - - Contributors on GitHub - Contributors on GitHub - apps/client/src/app/pages/open/open-page.html - 89 + apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts + 26 - - - Stars on GitHub - Stars on GitHub - apps/client/src/app/pages/landing/landing-page.html - 93 + apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts + 26 - apps/client/src/app/pages/open/open-page.html - 103 + apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts + 26 - - - Pulls on Docker Hub - Pulls on Docker Hub - apps/client/src/app/pages/landing/landing-page.html - 111 + apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts + 26 - apps/client/src/app/pages/open/open-page.html - 117 + apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts + 26 - - - Uptime - Uptime - apps/client/src/app/pages/open/open-page.html - 132 + apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts + 26 - - - Export Data - Export Data - apps/client/src/app/components/user-account-settings/user-account-settings.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts + 26 - - - Currencies - Currencies - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 65 + apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts + 26 - - - Our - Our - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 6 + apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts + 26 - - - Visit - Visit - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 28 + apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts + 26 - - - Discover other exciting Open Source Software projects - Discover other exciting Open Source Software projects - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 9 + apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts + 26 - - - Frequently Asked Questions (FAQ) - Frequently Asked Questions (FAQ) - apps/client/src/app/pages/faq/faq-page.html - 4,6 + apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts + 26 - - - Check out the numerous features of Ghostfolio to manage your wealth - Check out the numerous features of Ghostfolio to manage your wealth - apps/client/src/app/pages/features/features-page.html - 6,8 + apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts + 26 - - - Discover the latest Ghostfolio updates and insights on personal finance - Discover the latest Ghostfolio updates and insights on personal finance - apps/client/src/app/pages/blog/blog-page.html - 7,8 + apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts + 26 - - - If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. - If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. - apps/client/src/app/pages/pricing/pricing-page.html - 24,28 + apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts + 26 - - - Manage your wealth like a boss - Manage your wealth like a boss - apps/client/src/app/pages/landing/landing-page.html - 11,13 + apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts + 26 - - - Ghostfolio is a privacy-first, open source dashboard for your personal finances. Break down your asset allocation, know your net worth and make solid, data-driven investment decisions. - Ghostfolio is a privacy-first, open source dashboard for your personal finances. Break down your asset allocation, know your net worth and make solid, data-driven investment decisions. - apps/client/src/app/pages/landing/landing-page.html - 15,19 + apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts + 26 - - - Get Started - Get Started - apps/client/src/app/pages/landing/landing-page.html - 47,49 + apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts + 26 - apps/client/src/app/pages/landing/landing-page.html - 431,433 + apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts + 26 - - - or - or - apps/client/src/app/pages/landing/landing-page.html - 52,54 + apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts + 26 - - - Monthly Active Users - Monthly Active Users - apps/client/src/app/pages/landing/landing-page.html - 75 + apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts + 26 - - - As seen in - As seen in - apps/client/src/app/pages/landing/landing-page.html - 119 + apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts + 26 - - - Protect your assets. Refine your personal investment strategy. - Protect your assets. Refine your personal investment strategy. - apps/client/src/app/pages/landing/landing-page.html - 221,224 + apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts + 26 - - Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. - Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. + + about + sobre + + apps/client/src/app/app-routing.module.ts + 8 + + + apps/client/src/app/app.component.ts + 47 + + + apps/client/src/app/app.component.ts + 48 + + + apps/client/src/app/app.component.ts + 49 + + + apps/client/src/app/app.component.ts + 51 + + + apps/client/src/app/components/header/header.component.ts + 71 + + + apps/client/src/app/components/header/header.component.ts + 76 + + + apps/client/src/app/pages/about/about-page.component.ts + 44 + + + apps/client/src/app/pages/about/about-page.component.ts + 49 + + + apps/client/src/app/pages/about/about-page.component.ts + 54 + + + apps/client/src/app/pages/about/about-page.component.ts + 62 + + + apps/client/src/app/pages/about/about-page.component.ts + 73 + - apps/client/src/app/pages/landing/landing-page.html - 225,228 + apps/client/src/app/pages/blog/2023/08/ghostfolio-joins-oss-friends/ghostfolio-joins-oss-friends-page.component.ts + 13 - - - 360° View - 360° View - apps/client/src/app/pages/landing/landing-page.html - 236 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 13 - - - Web3 Ready - Web3 Ready - apps/client/src/app/pages/landing/landing-page.html - 247 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 14 - - - Use Ghostfolio anonymously and own your financial data. - Use Ghostfolio anonymously and own your financial data. - apps/client/src/app/pages/landing/landing-page.html - 249,251 + apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.component.ts + 13 - - - Open Source - Open Source - apps/client/src/app/pages/landing/landing-page.html - 257 + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023/hacktoberfest-2023-debriefing-page.component.ts + 13 - - - Benefit from continuous improvements through a strong community. - Benefit from continuous improvements through a strong community. - apps/client/src/app/pages/landing/landing-page.html - 259,261 + apps/client/src/app/pages/landing/landing-page.component.ts + 25 - - - Why Ghostfolio? - Why Ghostfolio? - apps/client/src/app/pages/landing/landing-page.html - 268 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 22 - - - Ghostfolio is for you if you are... - Ghostfolio is for you if you are... - apps/client/src/app/pages/landing/landing-page.html - 269,271 + apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts + 25 - - - trading stocks, ETFs or cryptocurrencies on multiple platforms - trading stocks, ETFs or cryptocurrencies on multiple platforms - apps/client/src/app/pages/landing/landing-page.html - 276,277 + apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts + 25 - - - pursuing a buy & hold strategy - pursuing a buy & hold strategy - apps/client/src/app/pages/landing/landing-page.html - 282 + apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts + 25 - - - interested in getting insights of your portfolio composition - interested in getting insights of your portfolio composition - apps/client/src/app/pages/landing/landing-page.html - 287 + apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts + 25 - - - valuing privacy and data ownership - valuing privacy and data ownership - apps/client/src/app/pages/landing/landing-page.html - 292 + apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts + 25 - - - into minimalism - into minimalism - apps/client/src/app/pages/landing/landing-page.html - 295 + apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts + 25 - - - caring about diversifying your financial resources - caring about diversifying your financial resources - apps/client/src/app/pages/landing/landing-page.html - 299 + apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts + 25 - - - interested in financial independence - interested in financial independence - apps/client/src/app/pages/landing/landing-page.html - 303 + apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts + 25 - - - saying no to spreadsheets in - saying no to spreadsheets in - apps/client/src/app/pages/landing/landing-page.html - 307 + apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts + 25 - - - still reading this list - still reading this list - apps/client/src/app/pages/landing/landing-page.html - 310 + apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts + 25 - - - Learn more about Ghostfolio - Learn more about Ghostfolio - apps/client/src/app/pages/landing/landing-page.html - 315 + apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts + 25 - - - What our users are saying - What our users are saying - apps/client/src/app/pages/landing/landing-page.html - 323,325 + apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts + 25 - - - Members from around the globe are using Ghostfolio Premium - Members from around the globe are using Ghostfolio Premium - apps/client/src/app/pages/landing/landing-page.html - 358,360 + apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts + 25 - - - How does Ghostfolio work? - How does Ghostfolio work? - apps/client/src/app/pages/landing/landing-page.html - 373,375 + apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts + 25 - - - Sign up anonymously* - Sign up anonymously* - apps/client/src/app/pages/landing/landing-page.html - 382 + apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts + 25 - - - * no e-mail address nor credit card required - * no e-mail address nor credit card required - apps/client/src/app/pages/landing/landing-page.html - 384 + apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts + 25 - - - Add any of your historical transactions - Add any of your historical transactions - apps/client/src/app/pages/landing/landing-page.html - 395,397 + apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts + 25 - - - Get valuable insights of your portfolio composition - Get valuable insights of your portfolio composition - apps/client/src/app/pages/landing/landing-page.html - 407,409 + apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts + 25 - - - Are you ready? - Are you ready? - apps/client/src/app/pages/landing/landing-page.html - 419 + apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts + 25 - - - Join now or check out the example account - Join now or check out the example account - apps/client/src/app/pages/landing/landing-page.html - 420,423 + apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts + 25 - - - Live Demo - Live Demo - apps/client/src/app/pages/landing/landing-page.html - 55 + apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts + 25 - apps/client/src/app/pages/landing/landing-page.html - 436 + apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts + 25 - - - Get the full picture of your personal finances across multiple platforms. - Get the full picture of your personal finances across multiple platforms. - apps/client/src/app/pages/landing/landing-page.html - 238,241 + apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts + 25 - - - Get started in only 3 steps - Get started in only 3 steps - apps/client/src/app/pages/landing/landing-page.html - 376 + apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts + 25 - - - faq - perguntas-mais-frequentes - apps/client/src/app/app-routing.module.ts - 9 + apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts + 25 - apps/client/src/app/app.component.ts - 54 + apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts + 25 - apps/client/src/app/pages/about/overview/about-overview-page.component.ts - 19 + apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts + 25 - - - features - funcionalidades - apps/client/src/app/app-routing.module.ts - 10 + apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts + 25 - apps/client/src/app/app.component.ts - 55 + apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts + 25 - apps/client/src/app/components/header/header.component.ts - 72 + apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts + 25 - apps/client/src/app/components/header/header.component.ts - 77 + apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts + 25 - apps/client/src/app/pages/about/overview/about-overview-page.component.ts - 20 + apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts + 25 - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts + 25 - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts + 25 - apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts + 25 - apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts + 25 - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 15 + apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts + 25 - apps/client/src/app/pages/faq/faq-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts + 25 - apps/client/src/app/pages/pricing/pricing-page.component.ts - 34 + apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts + 25 - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts + 25 - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts + 25 - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts + 25 + + + privacy-policy + politica-de-privacidade - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 26 + apps/client/src/app/app-routing.module.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 26 + apps/client/src/app/app.component.ts + 52 - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 26 + apps/client/src/app/pages/about/about-page.component.ts + 62 + + + license + licenca - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 26 + apps/client/src/app/app-routing.module.ts + 11 - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 26 + apps/client/src/app/app.component.ts + 49 - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 26 + apps/client/src/app/pages/about/about-page.component.ts + 54 + + + markets + mercados - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 26 + apps/client/src/app/app-routing.module.ts + 12 - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 26 + apps/client/src/app/app.component.ts + 56 - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 73 - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 78 - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 26 + apps/client/src/app/pages/faq/faq-page.component.ts + 14 + + + pricing + precos - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 26 + apps/client/src/app/app-routing.module.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 26 + apps/client/src/app/app.component.ts + 57 - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 74 - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 79 - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 26 + apps/client/src/app/components/home-summary/home-summary.component.ts + 124 - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 26 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 26 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 37 - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 26 + apps/client/src/app/core/http-response.interceptor.ts + 80 - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 26 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 26 + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 26 + apps/client/src/app/pages/faq/faq-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 26 + libs/ui/src/lib/membership-card/membership-card.component.ts + 13 - - about - sobre + + register + registo apps/client/src/app/app-routing.module.ts - 8 + 15 apps/client/src/app/app.component.ts - 47 + 58 - apps/client/src/app/app.component.ts - 48 + apps/client/src/app/components/header/header.component.ts + 80 - apps/client/src/app/app.component.ts - 49 + apps/client/src/app/core/auth.guard.ts + 53 - apps/client/src/app/app.component.ts - 51 + apps/client/src/app/pages/faq/faq-page.component.ts + 16 - apps/client/src/app/components/header/header.component.ts - 71 + apps/client/src/app/pages/features/features-page.component.ts + 17 - apps/client/src/app/components/header/header.component.ts - 76 + apps/client/src/app/pages/landing/landing-page.component.ts + 26 - apps/client/src/app/pages/about/about-page.component.ts - 44 + apps/client/src/app/pages/pricing/pricing-page.component.ts + 35 + + + resources + recursos - apps/client/src/app/pages/about/about-page.component.ts - 49 + apps/client/src/app/app-routing.module.ts + 16 - apps/client/src/app/pages/about/about-page.component.ts - 54 + apps/client/src/app/app.component.ts + 59 - apps/client/src/app/pages/about/about-page.component.ts - 62 + apps/client/src/app/components/header/header.component.ts + 75 - apps/client/src/app/pages/about/about-page.component.ts - 73 + apps/client/src/app/components/header/header.component.ts + 81 - apps/client/src/app/pages/blog/2023/08/ghostfolio-joins-oss-friends/ghostfolio-joins-oss-friends-page.component.ts - 13 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 14 - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 14 + + + apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts 13 - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts 14 - apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.component.ts - 13 + apps/client/src/app/pages/features/features-page.component.ts + 18 - apps/client/src/app/pages/landing/landing-page.component.ts - 25 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 18 + apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 25 + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 25 + 28 apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 25 + 28 - - - privacy-policy - politica-de-privacidade - apps/client/src/app/app-routing.module.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts + 28 - apps/client/src/app/app.component.ts - 52 + apps/client/src/app/pages/resources/resources-page.component.ts + 17 + + + This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. + This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. - apps/client/src/app/pages/about/about-page.component.ts - 62 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 8 - - license - licenca + + Explore the links below to compare a variety of personal finance tools with Ghostfolio. + Explore the links below to compare a variety of personal finance tools with Ghostfolio. - apps/client/src/app/app-routing.module.ts - 11 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 16 + + + Open Source Alternative to + Open Source Alternative to - apps/client/src/app/app.component.ts - 49 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 35 + + + Open Source Alternative to + Open Source Alternative to - apps/client/src/app/pages/about/about-page.component.ts - 54 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 25 - - markets - mercados + + The Open Source Alternative to + The Open Source Alternative to - apps/client/src/app/app-routing.module.ts - 12 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/app.component.ts - 56 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/header/header.component.ts - 73 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/header/header.component.ts - 78 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/faq/faq-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - - - pricing - precos - apps/client/src/app/app-routing.module.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/app.component.ts - 57 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/header/header.component.ts - 74 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/header/header.component.ts - 79 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/home-summary/home-summary.component.ts - 124 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 37 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/core/http-response.interceptor.ts - 80 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts - 15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/faq/faq-page.component.ts - 15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - libs/ui/src/lib/membership-card/membership-card.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - - - register - registo - apps/client/src/app/app-routing.module.ts - 15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/app.component.ts - 58 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/components/header/header.component.ts - 80 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/core/auth.guard.ts - 53 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/faq/faq-page.component.ts - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/features/features-page.component.ts - 17 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/landing/landing-page.component.ts - 26 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/pages/pricing/pricing-page.component.ts - 35 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - - - resources - recursos - apps/client/src/app/app-routing.module.ts - 16 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 - apps/client/src/app/app.component.ts - 59 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 8 + + + Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. + Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. - apps/client/src/app/components/header/header.component.ts - 75 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/components/header/header.component.ts - 81 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 13 - apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/features/features-page.component.ts - 18 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 14 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 28 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - apps/client/src/app/pages/resources/resources-page.component.ts - 17 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - - - This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. - This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 8,15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13 - - Explore the links below to compare a variety of personal finance tools with Ghostfolio. - Explore the links below to compare a variety of personal finance tools with Ghostfolio. + + Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. + Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 16,19 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26 - - - Open Source Alternative to - Open Source Alternative to - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 35,37 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26 - - - Open Source Alternative to - Open Source Alternative to - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 25 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26 - - - The Open Source Alternative to - The Open Source Alternative to apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 + 26 - - - Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. - Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 26 + + + Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. + Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 37 - - - Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. - Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 37 + + + Starting from / year + Starting from / year apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 184 - - - Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. - Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 184 + + + Starting from / year + Starting from / year apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 189 - - - Starting from / year - Starting from / year apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 - - - Starting from / year - Starting from / year apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 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 + + + 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,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 - - - 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/product-page-template.html + 203 - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 13 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 203 - - - 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 - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 203 + + + 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 - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 - - - 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 - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 + + + Get Started + Get Started apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 225 - - - Get Started - Get Started apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 @@ -10441,23 +12037,23 @@ Switzerland apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 54 + 64 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 66 + 86 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 375 + 465 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 398 + 498 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 399 + 499 @@ -10465,15 +12061,15 @@ Global apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 56 + 66 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 217 + 287 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 318 + 408 @@ -10481,35 +12077,67 @@ United States apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 106 + 77 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 140 + 135 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 150 + 168 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 203 + 178 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 228 + 188 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 230 + 240 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 294 + 262 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 305 + 273 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 298 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 300 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 310 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 375 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 385 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 395 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 476 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 509 @@ -10517,7 +12145,7 @@ Belgium apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 118 + 147 @@ -10525,31 +12153,31 @@ Germany apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 95 + 124 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 129 + 158 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 172 + 220 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 182 + 230 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 192 + 251 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 215 + 285 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 250 + 331 @@ -10557,7 +12185,7 @@ Austria apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 160 + 208 @@ -10565,7 +12193,7 @@ Italy apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 261 + 342 @@ -10573,7 +12201,7 @@ Netherlands apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 271 + 352 @@ -10581,7 +12209,7 @@ Thailand apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 283 + 364 @@ -10589,7 +12217,7 @@ New Zealand apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 316 + 406 @@ -10597,11 +12225,11 @@ Czech Republic apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 327 + 417 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 364 + 454 @@ -10677,7 +12305,7 @@ 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 - 187,188 + 198 @@ -10709,7 +12337,7 @@ Add Tag apps/client/src/app/components/admin-tag/admin-tag.component.html - 11,13 + 11 @@ -10741,15 +12369,15 @@ France apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 76 + 105 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 338 + 428 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 354 + 444 @@ -10757,7 +12385,7 @@ 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,101 + 100 @@ -10793,7 +12421,7 @@ Benchmark apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 220 + 219 @@ -10825,7 +12453,7 @@ To apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 21 + 29 @@ -10833,7 +12461,7 @@ Transfer apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 50 + 66 @@ -10841,7 +12469,7 @@ Finland apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 346 + 436 @@ -10893,7 +12521,7 @@ Asset Profile apps/client/src/app/components/admin-jobs/admin-jobs.html - 31,33 + 31 @@ -10901,7 +12529,7 @@ Do you really want to delete this asset profile? apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 182 + 184 @@ -10925,7 +12553,7 @@ 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,7 + 4 @@ -10941,7 +12569,7 @@ User apps/client/src/app/components/admin-users/admin-users.html - 29,31 + 29 @@ -10949,131 +12577,171 @@ Ghostfolio vs comparison table apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 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,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 @@ -11081,7 +12749,7 @@ Canada apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 388 + 488 @@ -11097,7 +12765,7 @@ app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 apps/client/src/app/pages/i18n/i18n-page.html - 8,11 + 8 @@ -11113,7 +12781,55 @@ Poland apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 86 + 115 + + + + South Africa + South Africa + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 197 + + + + Extreme Fear + Extreme Fear + + libs/ui/src/lib/i18n.ts + 63 + + + + Extreme Greed + Extreme Greed + + libs/ui/src/lib/i18n.ts + 64 + + + + Neutral + Neutral + + libs/ui/src/lib/i18n.ts + 67 + + + + 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 + + + + 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 diff --git a/apps/client/src/locales/messages.tr.xlf b/apps/client/src/locales/messages.tr.xlf index fade44102..42fe3593a 100644 --- a/apps/client/src/locales/messages.tr.xlf +++ b/apps/client/src/locales/messages.tr.xlf @@ -68,18 +68,30 @@ apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.component.ts 13 + + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023/hacktoberfest-2023-debriefing-page.component.ts + 13 + apps/client/src/app/pages/landing/landing-page.component.ts 25 apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 18 + 22 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts + 25 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts 25 + + apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts + 25 + apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts 25 @@ -104,6 +116,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts 25 + + apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts + 25 + apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts 25 @@ -112,6 +128,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts 25 + + apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts + 25 + apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts 25 @@ -124,6 +144,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts 25 + + apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts + 25 + apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts 25 @@ -132,6 +156,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts 25 + + apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts + 25 + apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts 25 @@ -140,6 +168,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts 25 + + apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts + 25 + apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts 25 @@ -164,6 +196,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts 25 + + apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts + 25 + apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts 25 @@ -196,6 +232,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts 25 + + apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts + 25 + apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts 25 @@ -204,6 +244,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts 25 + + apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts + 25 + faq @@ -264,6 +308,10 @@ apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts 15 + + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023/hacktoberfest-2023-debriefing-page.component.ts + 14 + apps/client/src/app/pages/faq/faq-page.component.ts 13 @@ -272,10 +320,18 @@ apps/client/src/app/pages/pricing/pricing-page.component.ts 34 + + apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts + 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts 26 + + apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts + 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts 26 @@ -300,6 +356,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts 26 + + apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts + 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts 26 @@ -308,6 +368,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts 26 + + apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts + 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts 26 @@ -320,6 +384,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts 26 + + apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts + 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts 26 @@ -328,6 +396,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts 26 + + apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts + 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts 26 @@ -336,6 +408,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts 26 + + apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts + 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts 26 @@ -360,6 +436,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts 26 + + apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts + 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts 26 @@ -392,6 +472,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts 26 + + apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts + 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts 26 @@ -400,6 +484,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts 26 + + apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts + 26 + license @@ -612,10 +700,18 @@ apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts 14 + + apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts + 28 + apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts 28 + + apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts + 28 + apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts 28 @@ -640,6 +736,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts 28 + + apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts + 28 + apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts 28 @@ -648,6 +748,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts 28 + + apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts + 28 + apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts 28 @@ -660,6 +764,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts 28 + + apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts + 28 + apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts 28 @@ -668,6 +776,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts 28 + + apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts + 28 + apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts 28 @@ -676,6 +788,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts 28 + + apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts + 28 + apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts 28 @@ -700,6 +816,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts 28 + + apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts + 28 + apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts 28 @@ -732,6 +852,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts 28 + + apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts + 28 + apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts 28 @@ -740,6 +864,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts 28 + + apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts + 28 + apps/client/src/app/pages/resources/resources-page.component.ts 17 @@ -884,6 +1012,10 @@ apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.html 181 + + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023/hacktoberfest-2023-debriefing-page.html + 270 + apps/client/src/app/pages/blog/blog-page.html 5 @@ -1084,6 +1216,46 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 183 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + Privacy Policy @@ -1138,7 +1310,7 @@ Alım satımda kayıp riski büyük boyutta olabilir. Kısa vadede ihtiyaç duyabileceğiniz parayla yatırım yapmak tavsiye edilmez. apps/client/src/app/app.component.html - 174,175 + 174 @@ -1182,7 +1354,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 156 + 164 @@ -1266,7 +1438,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 111 + 110 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -1292,9 +1464,13 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html 34 + + apps/client/src/app/components/admin-market-data/admin-market-data.html + 38 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 183 + 182 apps/client/src/app/components/admin-platform/admin-platform.component.html @@ -1318,11 +1494,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 103 + 114 libs/ui/src/lib/activities-table/activities-table.component.html - 171 + 179 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -1338,7 +1514,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 151 + 159 @@ -1350,7 +1526,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 92 + 91 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -1358,11 +1534,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 109 + 120 libs/ui/src/lib/activities-table/activities-table.component.html - 201 + 209 @@ -1378,43 +1554,43 @@ apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 31 + 47 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 157 + 168 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 158 + 169 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 160 + 171 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 213 + 224 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 214 + 225 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 215 + 226 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 216 + 227 libs/ui/src/lib/activities-table/activities-table.component.html - 313 + 321 libs/ui/src/lib/activities-table/activities-table.component.html - 348 + 356 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -1426,19 +1602,27 @@ Düzenle apps/client/src/app/components/accounts-table/accounts-table.component.html - 258 + 259 + + + apps/client/src/app/components/admin-market-data/admin-market-data.html + 170 + + + apps/client/src/app/components/admin-overview/admin-overview.html + 86 apps/client/src/app/components/admin-platform/admin-platform.component.html - 90 + 91 apps/client/src/app/components/admin-tag/admin-tag.component.html - 70 + 71 libs/ui/src/lib/activities-table/activities-table.component.html - 490 + 507 @@ -1446,23 +1630,31 @@ Sil apps/client/src/app/components/accounts-table/accounts-table.component.html - 266 + 269 apps/client/src/app/components/admin-market-data/admin-market-data.html - 151 + 180 + + + apps/client/src/app/components/admin-overview/admin-overview.html + 99 + + + apps/client/src/app/components/admin-overview/admin-overview.html + 201 apps/client/src/app/components/admin-platform/admin-platform.component.html - 94 + 97 apps/client/src/app/components/admin-tag/admin-tag.component.html - 74 + 77 libs/ui/src/lib/activities-table/activities-table.component.html - 506 + 529 @@ -1486,7 +1678,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 87 + 86 apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html @@ -1502,11 +1694,11 @@ apps/client/src/app/components/admin-market-data/admin-market-data.html - 33 + 51 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 119 + 130 @@ -1562,7 +1754,7 @@ Tarihsel Piyasa Verisi apps/client/src/app/components/admin-jobs/admin-jobs.html - 37,39 + 37 @@ -1606,11 +1798,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 125 + 136 libs/ui/src/lib/activities-table/activities-table.component.html - 144 + 152 @@ -1634,7 +1826,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 261 + 260 apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html @@ -1658,11 +1850,11 @@ apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 43 + 59 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 351 + 362 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -1678,7 +1870,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 268 + 267 apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html @@ -1702,7 +1894,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 358 + 369 @@ -1710,7 +1902,7 @@ Para Birimleri apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 65 + 66 @@ -1718,7 +1910,7 @@ Ülkesi Olmayan ETF'ler apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 70 + 71 @@ -1726,7 +1918,7 @@ Sektörü Olmayan ETF'ler apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 75 + 76 @@ -1734,7 +1926,7 @@ Filtrele... apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 279 + 281 @@ -1742,15 +1934,15 @@ Varlık Sınıfı apps/client/src/app/components/admin-market-data/admin-market-data.html - 42 + 60 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 120 + 119 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 189 + 188 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -1758,7 +1950,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 280 + 291 @@ -1766,15 +1958,15 @@ Varlık Alt Sınıfı apps/client/src/app/components/admin-market-data/admin-market-data.html - 51 + 69 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 129 + 128 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 202 + 201 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -1782,7 +1974,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 296 + 307 @@ -1790,11 +1982,11 @@ İlk İşlem apps/client/src/app/components/admin-market-data/admin-market-data.html - 60 + 78 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 102 + 101 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -1810,7 +2002,7 @@ İşlem Sayısı apps/client/src/app/components/admin-market-data/admin-market-data.html - 69 + 87 @@ -1818,7 +2010,7 @@ Tarihsel Veri apps/client/src/app/components/admin-market-data/admin-market-data.html - 78 + 96 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1830,7 +2022,7 @@ Sektör Sayısı apps/client/src/app/components/admin-market-data/admin-market-data.html - 87 + 105 @@ -1838,7 +2030,7 @@ Ülke Sayısı apps/client/src/app/components/admin-market-data/admin-market-data.html - 96 + 114 @@ -1846,7 +2038,7 @@ Son Veriyi Getir apps/client/src/app/components/admin-market-data/admin-market-data.html - 126 + 144 @@ -1854,7 +2046,7 @@ Tüm Veriyi Getir apps/client/src/app/components/admin-market-data/admin-market-data.html - 129 + 147 @@ -1862,7 +2054,7 @@ Profil Verisini Getir apps/client/src/app/components/admin-market-data/admin-market-data.html - 132 + 150 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1890,7 +2082,7 @@ Sektör apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 144 + 143 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -1902,7 +2094,7 @@ Ülke apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 153 + 152 apps/client/src/app/components/admin-users/admin-users.html @@ -1918,7 +2110,7 @@ Sektörler apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 159 + 158 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -1934,7 +2126,7 @@ Ülkeler apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 169 + 168 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -1946,7 +2138,7 @@ Sembol Eşleştirme apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 226 + 225 @@ -1954,7 +2146,7 @@ Veri Toplayıcı Yapılandırması apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 237 + 236 @@ -1962,7 +2154,7 @@ Not apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 248 + 247 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -1970,7 +2162,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 265 + 276 @@ -1990,7 +2182,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 91 + 102 @@ -1998,7 +2190,7 @@ Lütfen bir para birimi giriniz: apps/client/src/app/components/admin-overview/admin-overview.component.ts - 113 + 119 @@ -2006,7 +2198,7 @@ Önbelleği temizlemeyi gerçekten istiyor musunuz? apps/client/src/app/components/admin-overview/admin-overview.component.ts - 127 + 133 @@ -2014,7 +2206,7 @@ Bu para birimini silmeyi gerçekten istiyor musunuz? apps/client/src/app/components/admin-overview/admin-overview.component.ts - 140 + 146 @@ -2022,7 +2214,7 @@ Önbelleği temizlemeyi gerçekten istiyor musunuz apps/client/src/app/components/admin-overview/admin-overview.component.ts - 157 + 169 @@ -2030,7 +2222,7 @@ Lütfen sistem mesajınızı belirleyin: apps/client/src/app/components/admin-overview/admin-overview.component.ts - 187 + 200 @@ -2070,7 +2262,7 @@ Para Birimi Ekle apps/client/src/app/components/admin-overview/admin-overview.html - 76 + 113 @@ -2086,7 +2278,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 309 + 320 @@ -2094,7 +2286,7 @@ Kullanıcı Kaydı apps/client/src/app/components/admin-overview/admin-overview.html - 82 + 119 @@ -2102,7 +2294,7 @@ Salt okunur mod apps/client/src/app/components/admin-overview/admin-overview.html - 93 + 130 @@ -2110,7 +2302,7 @@ Sistem Mesajı apps/client/src/app/components/admin-overview/admin-overview.html - 104 + 141 @@ -2118,7 +2310,7 @@ Mesaj Belirle apps/client/src/app/components/admin-overview/admin-overview.html - 126 + 164 @@ -2126,7 +2318,7 @@ Kupon apps/client/src/app/components/admin-overview/admin-overview.html - 134 + 172 @@ -2134,7 +2326,7 @@ Ekle apps/client/src/app/components/admin-overview/admin-overview.html - 178 + 233 @@ -2142,7 +2334,7 @@ Genel Ayarlar apps/client/src/app/components/admin-overview/admin-overview.html - 185 + 240 @@ -2150,7 +2342,7 @@ Önbelleği temizle apps/client/src/app/components/admin-overview/admin-overview.html - 189 + 244 @@ -2158,7 +2350,7 @@ Platform Ekle apps/client/src/app/components/admin-platform/admin-platform.component.html - 11,13 + 11 @@ -2266,7 +2458,7 @@ Son Talep apps/client/src/app/components/admin-users/admin-users.html - 169,171 + 169 @@ -2274,7 +2466,7 @@ Kullanıcıyı Taklit Et apps/client/src/app/components/admin-users/admin-users.html - 207 + 208 @@ -2282,7 +2474,7 @@ Kullanıcıyı Sil apps/client/src/app/components/admin-users/admin-users.html - 215 + 218 @@ -2468,6 +2660,10 @@ apps/client/src/app/components/home-market/home-market.component.ts 24 + + libs/ui/src/lib/i18n.ts + 65 + Greed @@ -2476,6 +2672,10 @@ apps/client/src/app/components/home-market/home-market.component.ts 25 + + libs/ui/src/lib/i18n.ts + 66 + Last Days @@ -2514,7 +2714,7 @@ Banka ve yatırım hesaplarınızı ekleyerek kapsamlı finansal durumunuzu görün. apps/client/src/app/components/home-overview/home-overview.html - 19,20 + 19 @@ -2530,7 +2730,7 @@ Yatırım işlemlerinizi kaydederek portföyünüzü güncel tutun. apps/client/src/app/components/home-overview/home-overview.html - 28,29 + 28 @@ -2546,7 +2746,7 @@ Kapsamlı analiz ve içgörülerle ilerleme durumunuzu gerçek zamanlı olarak takip edin. apps/client/src/app/components/home-overview/home-overview.html - 37,38 + 37 @@ -2737,7 +2937,7 @@ için komisyon tutarı apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 12,15 + 12 @@ -2745,7 +2945,7 @@ {VAR_PLURAL, plural, =1 {transaction} other {transactions}} apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 13,14 + 13 @@ -2853,7 +3053,7 @@ Annualized Performance apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 262,264 + 262 @@ -2873,11 +3073,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 155 + 166 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 211 + 222 @@ -2929,11 +3129,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 142 + 153 libs/ui/src/lib/activities-table/activities-table.component.html - 222 + 230 @@ -2965,7 +3165,7 @@ Are you an ambitious investor who needs the full picture? apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 15,17 + 15 @@ -2973,7 +3173,7 @@ Upgrade to Ghostfolio Premium today and gain access to exclusive features to enhance your investment experience: apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 18,21 + 18 @@ -3077,7 +3277,7 @@ Get the tools to effectively manage your finances and refine your personal investment strategy. apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 48,51 + 48 @@ -3393,7 +3593,7 @@ Discover the latest Ghostfolio updates and insights on personal finance apps/client/src/app/pages/blog/blog-page.html - 7,8 + 7 @@ -3417,7 +3617,7 @@ Frequently Asked Questions (FAQ) apps/client/src/app/pages/faq/faq-page.html - 4,6 + 4 @@ -3433,7 +3633,7 @@ Check out the numerous features of Ghostfolio to manage your wealth apps/client/src/app/pages/features/features-page.html - 6,8 + 6 @@ -3481,7 +3681,7 @@ Import and Export apps/client/src/app/pages/features/features-page.html - 115,117 + 115 @@ -3621,7 +3821,7 @@ Manage your wealth like a boss apps/client/src/app/pages/landing/landing-page.html - 11,13 + 11 @@ -3629,7 +3829,7 @@ Ghostfolio is a privacy-first, open source dashboard for your personal finances. Break down your asset allocation, know your net worth and make solid, data-driven investment decisions. apps/client/src/app/pages/landing/landing-page.html - 15,19 + 15 @@ -3637,11 +3837,11 @@ Get Started apps/client/src/app/pages/landing/landing-page.html - 47,49 + 47 apps/client/src/app/pages/landing/landing-page.html - 431,433 + 431 @@ -3649,7 +3849,7 @@ or apps/client/src/app/pages/landing/landing-page.html - 52,54 + 52 @@ -3709,7 +3909,7 @@ Protect your assets. Refine your personal investment strategy. apps/client/src/app/pages/landing/landing-page.html - 221,224 + 221 @@ -3717,7 +3917,7 @@ Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. apps/client/src/app/pages/landing/landing-page.html - 225,228 + 225 @@ -3733,7 +3933,7 @@ Get the full picture of your personal finances across multiple platforms. apps/client/src/app/pages/landing/landing-page.html - 238,241 + 238 @@ -3749,7 +3949,7 @@ Use Ghostfolio anonymously and own your financial data. apps/client/src/app/pages/landing/landing-page.html - 249,251 + 249 @@ -3765,7 +3965,7 @@ Benefit from continuous improvements through a strong community. apps/client/src/app/pages/landing/landing-page.html - 259,261 + 259 @@ -3781,7 +3981,7 @@ Ghostfolio is for you if you are... apps/client/src/app/pages/landing/landing-page.html - 269,271 + 269 @@ -3789,7 +3989,7 @@ trading stocks, ETFs or cryptocurrencies on multiple platforms apps/client/src/app/pages/landing/landing-page.html - 276,277 + 276 @@ -3869,7 +4069,7 @@ What our users are saying apps/client/src/app/pages/landing/landing-page.html - 323,325 + 323 @@ -3877,7 +4077,7 @@ Members from around the globe are using Ghostfolio Premium apps/client/src/app/pages/landing/landing-page.html - 358,360 + 358 @@ -3885,7 +4085,7 @@ How does Ghostfolio work? apps/client/src/app/pages/landing/landing-page.html - 373,375 + 373 @@ -3917,7 +4117,7 @@ Add any of your historical transactions apps/client/src/app/pages/landing/landing-page.html - 395,397 + 395 @@ -3925,7 +4125,7 @@ Get valuable insights of your portfolio composition apps/client/src/app/pages/landing/landing-page.html - 407,409 + 407 @@ -3941,7 +4141,7 @@ Join now or check out the example account apps/client/src/app/pages/landing/landing-page.html - 420,423 + 420 @@ -3949,7 +4149,7 @@ At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. apps/client/src/app/pages/open/open-page.html - 6,22 + 6 @@ -4061,7 +4261,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 379 + 387 @@ -4069,7 +4269,7 @@ Update Cash Balance apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 83 + 94 @@ -4077,15 +4277,15 @@ Unit Price apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 162 + 173 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 217 + 228 libs/ui/src/lib/activities-table/activities-table.component.html - 251 + 259 @@ -4093,7 +4293,7 @@ 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 - 247 + 258 @@ -4101,15 +4301,15 @@ Fee apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 231 + 242 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 256 + 267 libs/ui/src/lib/activities-table/activities-table.component.html - 280 + 288 @@ -4225,7 +4425,7 @@ Import apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 80 + 79 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html @@ -4577,7 +4777,7 @@ If you retire today, you would be able to withdraw per year or per month, based on your total assets of and a withdrawal rate of 4%. apps/client/src/app/pages/portfolio/fire/fire-page.html - 57,90 + 57 @@ -4617,7 +4817,7 @@ Our official Ghostfolio Premium cloud offering is the easiest way to get started. Due to the time it saves, this will be the best option for most people. Revenue is used to cover the costs of the hosting infrastructure and to fund ongoing development. apps/client/src/app/pages/pricing/pricing-page.html - 6,11 + 6 @@ -4625,7 +4825,7 @@ If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. apps/client/src/app/pages/pricing/pricing-page.html - 24,28 + 24 @@ -4633,7 +4833,7 @@ For tech-savvy investors who prefer to run Ghostfolio on their own infrastructure. apps/client/src/app/pages/pricing/pricing-page.html - 36,39 + 36 @@ -4733,7 +4933,7 @@ For new investors who are just getting started with trading. apps/client/src/app/pages/pricing/pricing-page.html - 150,152 + 150 @@ -4753,7 +4953,7 @@ For ambitious investors who need the full picture of their financial assets. apps/client/src/app/pages/pricing/pricing-page.html - 225,228 + 225 @@ -4785,7 +4985,7 @@ Get Started apps/client/src/app/pages/pricing/pricing-page.html - 363,365 + 363 @@ -4801,7 +5001,7 @@ Hello, has shared a Portfolio with you! apps/client/src/app/pages/public/public-page.html - 4,7 + 4 @@ -4825,7 +5025,7 @@ Ghostfolio empowers you to keep track of your wealth. apps/client/src/app/pages/public/public-page.html - 147,149 + 147 @@ -4881,7 +5081,7 @@ I agree to have stored my Security Token from above in a secure place. If I lose it, I cannot get my account back. apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html - 31,34 + 31 @@ -4925,7 +5125,7 @@ Discover Open Source Alternatives for Personal Finance Tools apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 4,6 + 4 @@ -4933,7 +5133,7 @@ This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 8,15 + 8 @@ -4941,7 +5141,7 @@ Explore the links below to compare a variety of personal finance tools with Ghostfolio. apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 16,19 + 16 @@ -4949,7 +5149,7 @@ Open Source Alternative to apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 35,37 + 35 @@ -5083,1009 +5283,1257 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 8 - - - Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. - Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 8 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 8 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 8 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 8 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 8 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 8 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 8 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 8 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 8 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 8 + + + Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. + Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 - - - Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. - Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 + + + Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. + Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 26 - - - Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. - Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 + + + Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. + Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 37 - - - Founded - Founded apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 - - - Origin - Origin apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 37 + + + Founded + Founded apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 - - - Region - Region apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 + + + Origin + Origin apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 72 - - - Available in - Available in apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 + + + Region + Region apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 77 - - - ✅ Yes - ✅ Yes apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + + Available in + Available in + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + + ✅ Yes + ✅ Yes + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -6093,3304 +6541,4456 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 + + + ❌ No + ❌ No apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 - - - ❌ No - ❌ No apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 178 + + + ❌ No + ❌ No apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 + + + Self-Hosting + Self-Hosting apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 + + + Use anonymously + Use anonymously apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 - - - ❌ No - ❌ No apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 145 + + + Free Plan + Free Plan apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 - - - Self-Hosting - Self-Hosting apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 164 + + + Starting from / year + Starting from / year apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 184 - - - Use anonymously - Use anonymously apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 + + + Starting from / year + Starting from / year apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 189 - - - Free Plan - Free Plan apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 - - - Starting from / year - Starting from / year apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 + + + Notes + Notes apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 - - - Starting from / year - Starting from / year apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 195 + + + 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,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 - - - Notes - Notes apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 + + + 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 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 216 - - - 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 - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 - - - 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 - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 + + + 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 - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 - - - - Effortlessly track, analyze, and visualize your wealth with Ghostfolio. - Effortlessly track, analyze, and visualize your wealth with Ghostfolio. + 220 + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 220 + + + Get Started + Get Started apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 - - - Get Started - Get Started apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 + + + Personal Finance Tools + Personal Finance Tools apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 292 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 292 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 292 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 292 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 292 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 292 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 292 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 292 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 292 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 292 - - - Personal Finance Tools - Personal Finance Tools apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 292 @@ -9525,23 +11125,23 @@ Switzerland apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 54 + 64 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 66 + 86 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 375 + 465 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 398 + 498 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 399 + 499 @@ -9549,15 +11149,15 @@ Global apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 56 + 66 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 217 + 287 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 318 + 408 @@ -9565,35 +11165,67 @@ United States apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 106 + 77 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 140 + 135 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 150 + 168 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 203 + 178 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 228 + 188 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 230 + 240 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 294 + 262 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 305 + 273 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 298 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 300 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 310 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 375 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 385 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 395 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 476 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 509 @@ -9601,7 +11233,7 @@ Belgium apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 118 + 147 @@ -9609,31 +11241,31 @@ Germany apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 95 + 124 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 129 + 158 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 172 + 220 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 182 + 230 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 192 + 251 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 215 + 285 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 250 + 331 @@ -9641,7 +11273,7 @@ Austria apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 160 + 208 @@ -9649,7 +11281,7 @@ Italy apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 261 + 342 @@ -9657,7 +11289,7 @@ Netherlands apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 271 + 352 @@ -9665,7 +11297,7 @@ Thailand apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 283 + 364 @@ -9673,7 +11305,7 @@ New Zealand apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 316 + 406 @@ -9681,11 +11313,11 @@ Czech Republic apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 327 + 417 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 364 + 454 @@ -9787,10 +11419,6 @@ Membership Membership - - apps/client/src/app/components/user-account-membership/user-account-membership.html - 2 - libs/ui/src/lib/membership-card/membership-card.component.html 18 @@ -9809,7 +11437,7 @@ Upgrade apps/client/src/app/components/user-account-membership/user-account-membership.html - 19 + 18 @@ -9817,7 +11445,7 @@ Renew apps/client/src/app/components/user-account-membership/user-account-membership.html - 22 + 21 @@ -9825,7 +11453,7 @@ per year apps/client/src/app/components/user-account-membership/user-account-membership.html - 34 + 33 apps/client/src/app/pages/pricing/pricing-page.html @@ -9837,7 +11465,7 @@ Try Premium apps/client/src/app/components/user-account-membership/user-account-membership.html - 43 + 42 @@ -9845,7 +11473,7 @@ Redeem Coupon apps/client/src/app/components/user-account-membership/user-account-membership.html - 56 + 55 @@ -9861,7 +11489,7 @@ Protection for sensitive information like absolute performances and quantity values apps/client/src/app/components/user-account-settings/user-account-settings.html - 8,11 + 8 @@ -9933,7 +11561,7 @@ Distraction-free experience for turbulent times apps/client/src/app/components/user-account-settings/user-account-settings.html - 138,140 + 138 @@ -9965,7 +11593,7 @@ Sneak peek at upcoming functionality apps/client/src/app/components/user-account-settings/user-account-settings.html - 173,175 + 173 @@ -10025,7 +11653,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 444 + 453 @@ -10033,11 +11661,11 @@ Import Dividends libs/ui/src/lib/activities-table/activities-table.component.html - 34 + 35 libs/ui/src/lib/activities-table/activities-table.component.html - 453 + 464 @@ -10045,11 +11673,11 @@ Export Activities libs/ui/src/lib/activities-table/activities-table.component.html - 44 + 47 libs/ui/src/lib/activities-table/activities-table.component.html - 463 + 476 @@ -10057,11 +11685,11 @@ Export Drafts as ICS libs/ui/src/lib/activities-table/activities-table.component.html - 54 + 59 libs/ui/src/lib/activities-table/activities-table.component.html - 473 + 488 @@ -10069,7 +11697,7 @@ Delete all Activities libs/ui/src/lib/activities-table/activities-table.component.html - 62 + 69 @@ -10077,7 +11705,7 @@ Draft libs/ui/src/lib/activities-table/activities-table.component.html - 181 + 189 @@ -10085,7 +11713,7 @@ Clone libs/ui/src/lib/activities-table/activities-table.component.html - 494 + 513 @@ -10093,7 +11721,7 @@ Export Draft as ICS libs/ui/src/lib/activities-table/activities-table.component.html - 502 + 523 @@ -10685,7 +12313,7 @@ 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 - 187,188 + 198 @@ -10709,7 +12337,7 @@ Add Tag apps/client/src/app/components/admin-tag/admin-tag.component.html - 11,13 + 11 @@ -10741,15 +12369,15 @@ France apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 76 + 105 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 338 + 428 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 354 + 444 @@ -10757,7 +12385,7 @@ 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,101 + 100 @@ -10793,7 +12421,7 @@ Benchmark apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 220 + 219 @@ -10825,7 +12453,7 @@ To apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 21 + 29 @@ -10833,7 +12461,7 @@ Transfer apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 50 + 66 @@ -10841,7 +12469,7 @@ Finland apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 346 + 436 @@ -10893,7 +12521,7 @@ Asset Profile apps/client/src/app/components/admin-jobs/admin-jobs.html - 31,33 + 31 @@ -10901,7 +12529,7 @@ Do you really want to delete this asset profile? apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 182 + 184 @@ -10925,7 +12553,7 @@ 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,7 + 4 @@ -10941,7 +12569,7 @@ User apps/client/src/app/components/admin-users/admin-users.html - 29,31 + 29 @@ -10949,131 +12577,171 @@ Ghostfolio vs comparison table apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 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,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 @@ -11081,7 +12749,7 @@ Canada apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 388 + 488 @@ -11097,7 +12765,7 @@ app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 apps/client/src/app/pages/i18n/i18n-page.html - 8,11 + 8 @@ -11113,7 +12781,55 @@ Poland apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 86 + 115 + + + + South Africa + South Africa + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 197 + + + + Extreme Fear + Extreme Fear + + libs/ui/src/lib/i18n.ts + 63 + + + + Extreme Greed + Extreme Greed + + libs/ui/src/lib/i18n.ts + 64 + + + + Neutral + Neutral + + libs/ui/src/lib/i18n.ts + 67 + + + + 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 + + + + 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 diff --git a/apps/client/src/locales/messages.xlf b/apps/client/src/locales/messages.xlf index c4af70702..4df1111f0 100644 --- a/apps/client/src/locales/messages.xlf +++ b/apps/client/src/locales/messages.xlf @@ -68,18 +68,30 @@ apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.component.ts 13 + + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023/hacktoberfest-2023-debriefing-page.component.ts + 13 + apps/client/src/app/pages/landing/landing-page.component.ts 25 apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 18 + 22 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts + 25 apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts 25 + + apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts + 25 + apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts 25 @@ -104,6 +116,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts 25 + + apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts + 25 + apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts 25 @@ -112,6 +128,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts 25 + + apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts + 25 + apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts 25 @@ -124,6 +144,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts 25 + + apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts + 25 + apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts 25 @@ -132,6 +156,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts 25 + + apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts + 25 + apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts 25 @@ -140,6 +168,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts 25 + + apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts + 25 + apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts 25 @@ -164,6 +196,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts 25 + + apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts + 25 + apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts 25 @@ -196,6 +232,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts 25 + + apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts + 25 + apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts 25 @@ -204,6 +244,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts 25 + + apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts + 25 + faq @@ -262,6 +306,10 @@ apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts 15 + + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023/hacktoberfest-2023-debriefing-page.component.ts + 14 + apps/client/src/app/pages/faq/faq-page.component.ts 13 @@ -270,10 +318,18 @@ apps/client/src/app/pages/pricing/pricing-page.component.ts 34 + + apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts + 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts 26 + + apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts + 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts 26 @@ -298,6 +354,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts 26 + + apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts + 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts 26 @@ -306,6 +366,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts 26 + + apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts + 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts 26 @@ -318,6 +382,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts 26 + + apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts + 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts 26 @@ -326,6 +394,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts 26 + + apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts + 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts 26 @@ -334,6 +406,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts 26 + + apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts + 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts 26 @@ -358,6 +434,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts 26 + + apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts + 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts 26 @@ -390,6 +470,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts 26 + + apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts + 26 + apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts 26 @@ -398,6 +482,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts 26 + + apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts + 26 + license @@ -604,10 +692,18 @@ apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts 14 + + apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts + 28 + apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts 28 + + apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts + 28 + apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts 28 @@ -632,6 +728,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts 28 + + apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts + 28 + apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts 28 @@ -640,6 +740,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts 28 + + apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts + 28 + apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts 28 @@ -652,6 +756,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts 28 + + apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts + 28 + apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts 28 @@ -660,6 +768,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts 28 + + apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts + 28 + apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts 28 @@ -668,6 +780,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts 28 + + apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts + 28 + apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts 28 @@ -692,6 +808,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts 28 + + apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts + 28 + apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts 28 @@ -724,6 +844,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts 28 + + apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts + 28 + apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts 28 @@ -732,6 +856,10 @@ apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts 28 + + apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts + 28 + apps/client/src/app/pages/resources/resources-page.component.ts 17 @@ -871,6 +999,10 @@ apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.html 181 + + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023/hacktoberfest-2023-debriefing-page.html + 270 + apps/client/src/app/pages/blog/blog-page.html 5 @@ -1066,6 +1198,46 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 183 + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 183 + Privacy Policy @@ -1117,7 +1289,7 @@ The risk of loss in trading can be substantial. It is not advisable to invest money you may need in the short term. apps/client/src/app/app.component.html - 174,175 + 174 @@ -1158,7 +1330,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 156 + 164 @@ -1235,7 +1407,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 111 + 110 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -1260,9 +1432,13 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html 34 + + apps/client/src/app/components/admin-market-data/admin-market-data.html + 38 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 183 + 182 apps/client/src/app/components/admin-platform/admin-platform.component.html @@ -1286,11 +1462,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 103 + 114 libs/ui/src/lib/activities-table/activities-table.component.html - 171 + 179 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -1305,7 +1481,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 151 + 159 @@ -1316,7 +1492,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 92 + 91 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -1324,11 +1500,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 109 + 120 libs/ui/src/lib/activities-table/activities-table.component.html - 201 + 209 @@ -1343,43 +1519,43 @@ apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 31 + 47 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 157 + 168 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 158 + 169 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 160 + 171 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 213 + 224 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 214 + 225 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 215 + 226 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 216 + 227 libs/ui/src/lib/activities-table/activities-table.component.html - 313 + 321 libs/ui/src/lib/activities-table/activities-table.component.html - 348 + 356 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -1390,42 +1566,58 @@ Edit apps/client/src/app/components/accounts-table/accounts-table.component.html - 258 + 259 + + + apps/client/src/app/components/admin-market-data/admin-market-data.html + 170 + + + apps/client/src/app/components/admin-overview/admin-overview.html + 86 apps/client/src/app/components/admin-platform/admin-platform.component.html - 90 + 91 apps/client/src/app/components/admin-tag/admin-tag.component.html - 70 + 71 libs/ui/src/lib/activities-table/activities-table.component.html - 490 + 507 Delete apps/client/src/app/components/accounts-table/accounts-table.component.html - 266 + 269 apps/client/src/app/components/admin-market-data/admin-market-data.html - 151 + 180 + + + apps/client/src/app/components/admin-overview/admin-overview.html + 99 + + + apps/client/src/app/components/admin-overview/admin-overview.html + 201 apps/client/src/app/components/admin-platform/admin-platform.component.html - 94 + 97 apps/client/src/app/components/admin-tag/admin-tag.component.html - 74 + 77 libs/ui/src/lib/activities-table/activities-table.component.html - 506 + 529 @@ -1447,7 +1639,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 87 + 86 apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html @@ -1462,11 +1654,11 @@ apps/client/src/app/components/admin-market-data/admin-market-data.html - 33 + 51 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 119 + 130 @@ -1515,7 +1707,7 @@ Historical Market Data apps/client/src/app/components/admin-jobs/admin-jobs.html - 37,39 + 37 @@ -1554,11 +1746,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 125 + 136 libs/ui/src/lib/activities-table/activities-table.component.html - 144 + 152 @@ -1580,7 +1772,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 261 + 260 apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html @@ -1604,11 +1796,11 @@ apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 43 + 59 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 351 + 362 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -1623,7 +1815,7 @@ apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 268 + 267 apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html @@ -1647,50 +1839,50 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 358 + 369 Currencies apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 65 + 66 ETFs without Countries apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 70 + 71 ETFs without Sectors apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 75 + 76 Filter by... apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 279 + 281 Asset Class apps/client/src/app/components/admin-market-data/admin-market-data.html - 42 + 60 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 120 + 119 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 189 + 188 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -1698,22 +1890,22 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 280 + 291 Asset Sub Class apps/client/src/app/components/admin-market-data/admin-market-data.html - 51 + 69 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 129 + 128 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 202 + 201 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -1721,18 +1913,18 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 296 + 307 First Activity apps/client/src/app/components/admin-market-data/admin-market-data.html - 60 + 78 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 102 + 101 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -1747,14 +1939,14 @@ Activities Count apps/client/src/app/components/admin-market-data/admin-market-data.html - 69 + 87 Historical Data apps/client/src/app/components/admin-market-data/admin-market-data.html - 78 + 96 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1765,35 +1957,35 @@ Sectors Count apps/client/src/app/components/admin-market-data/admin-market-data.html - 87 + 105 Countries Count apps/client/src/app/components/admin-market-data/admin-market-data.html - 96 + 114 Gather Recent Data apps/client/src/app/components/admin-market-data/admin-market-data.html - 126 + 144 Gather All Data apps/client/src/app/components/admin-market-data/admin-market-data.html - 129 + 147 Gather Profile Data apps/client/src/app/components/admin-market-data/admin-market-data.html - 132 + 150 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1818,7 +2010,7 @@ Sector apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 144 + 143 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -1829,7 +2021,7 @@ Country apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 153 + 152 apps/client/src/app/components/admin-users/admin-users.html @@ -1844,7 +2036,7 @@ Sectors apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 159 + 158 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -1859,7 +2051,7 @@ Countries apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 169 + 168 apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html @@ -1870,21 +2062,21 @@ Symbol Mapping apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 226 + 225 Scraper Configuration apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 237 + 236 Note apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 248 + 247 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -1892,7 +2084,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 265 + 276 @@ -1910,42 +2102,42 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 91 + 102 Please add a currency: apps/client/src/app/components/admin-overview/admin-overview.component.ts - 113 + 119 Do you really want to delete this coupon? apps/client/src/app/components/admin-overview/admin-overview.component.ts - 127 + 133 Do you really want to delete this currency? apps/client/src/app/components/admin-overview/admin-overview.component.ts - 140 + 146 Do you really want to flush the cache? apps/client/src/app/components/admin-overview/admin-overview.component.ts - 157 + 169 Please set your system message: apps/client/src/app/components/admin-overview/admin-overview.component.ts - 187 + 200 @@ -1980,7 +2172,7 @@ Add Currency apps/client/src/app/components/admin-overview/admin-overview.html - 76 + 113 @@ -1995,70 +2187,70 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 309 + 320 User Signup apps/client/src/app/components/admin-overview/admin-overview.html - 82 + 119 Read-only Mode apps/client/src/app/components/admin-overview/admin-overview.html - 93 + 130 System Message apps/client/src/app/components/admin-overview/admin-overview.html - 104 + 141 Set Message apps/client/src/app/components/admin-overview/admin-overview.html - 126 + 164 Coupons apps/client/src/app/components/admin-overview/admin-overview.html - 134 + 172 Add apps/client/src/app/components/admin-overview/admin-overview.html - 178 + 233 Housekeeping apps/client/src/app/components/admin-overview/admin-overview.html - 185 + 240 Flush Cache apps/client/src/app/components/admin-overview/admin-overview.html - 189 + 244 Add Platform apps/client/src/app/components/admin-platform/admin-platform.component.html - 11,13 + 11 @@ -2155,21 +2347,21 @@ Last Request apps/client/src/app/components/admin-users/admin-users.html - 169,171 + 169 Impersonate User apps/client/src/app/components/admin-users/admin-users.html - 207 + 208 Delete User apps/client/src/app/components/admin-users/admin-users.html - 215 + 218 @@ -2337,6 +2529,10 @@ apps/client/src/app/components/home-market/home-market.component.ts 24 + + libs/ui/src/lib/i18n.ts + 65 + Greed @@ -2344,6 +2540,10 @@ apps/client/src/app/components/home-market/home-market.component.ts 25 + + libs/ui/src/lib/i18n.ts + 66 + Last Days @@ -2377,7 +2577,7 @@ Get a comprehensive financial overview by adding your bank and brokerage accounts. apps/client/src/app/components/home-overview/home-overview.html - 19,20 + 19 @@ -2391,7 +2591,7 @@ Record your investment activities to keep your portfolio up to date. apps/client/src/app/components/home-overview/home-overview.html - 28,29 + 28 @@ -2405,7 +2605,7 @@ Track your progress in real-time with comprehensive analysis and insights. apps/client/src/app/components/home-overview/home-overview.html - 37,38 + 37 @@ -2577,14 +2777,14 @@ apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 12,15 + 12 {VAR_PLURAL, plural, =1 {transaction} other {transactions}} apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 13,14 + 13 @@ -2680,7 +2880,7 @@ Annualized Performance apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 262,264 + 262 @@ -2699,11 +2899,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 155 + 166 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 211 + 222 @@ -2749,11 +2949,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 142 + 153 libs/ui/src/lib/activities-table/activities-table.component.html - 222 + 230 @@ -2782,14 +2982,14 @@ Are you an ambitious investor who needs the full picture? apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 15,17 + 15 Upgrade to Ghostfolio Premium today and gain access to exclusive features to enhance your investment experience: apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 18,21 + 18 @@ -2886,7 +3086,7 @@ Get the tools to effectively manage your finances and refine your personal investment strategy. apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 48,51 + 48 @@ -3172,7 +3372,7 @@ Discover the latest Ghostfolio updates and insights on personal finance apps/client/src/app/pages/blog/blog-page.html - 7,8 + 7 @@ -3193,7 +3393,7 @@ Frequently Asked Questions (FAQ) apps/client/src/app/pages/faq/faq-page.html - 4,6 + 4 @@ -3207,7 +3407,7 @@ Check out the numerous features of Ghostfolio to manage your wealth apps/client/src/app/pages/features/features-page.html - 6,8 + 6 @@ -3249,7 +3449,7 @@ Import and Export apps/client/src/app/pages/features/features-page.html - 115,117 + 115 @@ -3383,32 +3583,32 @@ Manage your wealth like a boss apps/client/src/app/pages/landing/landing-page.html - 11,13 + 11 Ghostfolio is a privacy-first, open source dashboard for your personal finances. Break down your asset allocation, know your net worth and make solid, data-driven investment decisions. apps/client/src/app/pages/landing/landing-page.html - 15,19 + 15 Get Started apps/client/src/app/pages/landing/landing-page.html - 47,49 + 47 apps/client/src/app/pages/landing/landing-page.html - 431,433 + 431 or apps/client/src/app/pages/landing/landing-page.html - 52,54 + 52 @@ -3462,14 +3662,14 @@ Protect your assets. Refine your personal investment strategy. apps/client/src/app/pages/landing/landing-page.html - 221,224 + 221 Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. apps/client/src/app/pages/landing/landing-page.html - 225,228 + 225 @@ -3483,7 +3683,7 @@ Get the full picture of your personal finances across multiple platforms. apps/client/src/app/pages/landing/landing-page.html - 238,241 + 238 @@ -3497,7 +3697,7 @@ Use Ghostfolio anonymously and own your financial data. apps/client/src/app/pages/landing/landing-page.html - 249,251 + 249 @@ -3511,7 +3711,7 @@ Benefit from continuous improvements through a strong community. apps/client/src/app/pages/landing/landing-page.html - 259,261 + 259 @@ -3525,14 +3725,14 @@ Ghostfolio is for you if you are... apps/client/src/app/pages/landing/landing-page.html - 269,271 + 269 trading stocks, ETFs or cryptocurrencies on multiple platforms apps/client/src/app/pages/landing/landing-page.html - 276,277 + 276 @@ -3602,21 +3802,21 @@ What our users are saying apps/client/src/app/pages/landing/landing-page.html - 323,325 + 323 Members from around the globe are using Ghostfolio Premium apps/client/src/app/pages/landing/landing-page.html - 358,360 + 358 How does Ghostfolio work? apps/client/src/app/pages/landing/landing-page.html - 373,375 + 373 @@ -3644,14 +3844,14 @@ Add any of your historical transactions apps/client/src/app/pages/landing/landing-page.html - 395,397 + 395 Get valuable insights of your portfolio composition apps/client/src/app/pages/landing/landing-page.html - 407,409 + 407 @@ -3665,14 +3865,14 @@ Join now or check out the example account apps/client/src/app/pages/landing/landing-page.html - 420,423 + 420 At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. apps/client/src/app/pages/open/open-page.html - 6,22 + 6 @@ -3797,51 +3997,51 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 379 + 387 Update Cash Balance apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 83 + 94 Unit Price apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 162 + 173 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 217 + 228 libs/ui/src/lib/activities-table/activities-table.component.html - 251 + 259 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 - 247 + 258 Fee apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 231 + 242 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 256 + 267 libs/ui/src/lib/activities-table/activities-table.component.html - 280 + 288 @@ -3943,7 +4143,7 @@ Import apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 80 + 79 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html @@ -4258,7 +4458,7 @@ If you retire today, you would be able to withdraw per year or per month, based on your total assets of and a withdrawal rate of 4%. apps/client/src/app/pages/portfolio/fire/fire-page.html - 57,90 + 57 @@ -4294,21 +4494,21 @@ Our official Ghostfolio Premium cloud offering is the easiest way to get started. Due to the time it saves, this will be the best option for most people. Revenue is used to cover the costs of the hosting infrastructure and to fund ongoing development. apps/client/src/app/pages/pricing/pricing-page.html - 6,11 + 6 If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. apps/client/src/app/pages/pricing/pricing-page.html - 24,28 + 24 For tech-savvy investors who prefer to run Ghostfolio on their own infrastructure. apps/client/src/app/pages/pricing/pricing-page.html - 36,39 + 36 @@ -4400,7 +4600,7 @@ For new investors who are just getting started with trading. apps/client/src/app/pages/pricing/pricing-page.html - 150,152 + 150 @@ -4418,7 +4618,7 @@ For ambitious investors who need the full picture of their financial assets. apps/client/src/app/pages/pricing/pricing-page.html - 225,228 + 225 @@ -4432,7 +4632,7 @@ per year apps/client/src/app/components/user-account-membership/user-account-membership.html - 34 + 33 apps/client/src/app/pages/pricing/pricing-page.html @@ -4457,7 +4657,7 @@ Get Started apps/client/src/app/pages/pricing/pricing-page.html - 363,365 + 363 @@ -4471,7 +4671,7 @@ Hello, has shared a Portfolio with you! apps/client/src/app/pages/public/public-page.html - 4,7 + 4 @@ -4492,7 +4692,7 @@ Ghostfolio empowers you to keep track of your wealth. apps/client/src/app/pages/public/public-page.html - 147,149 + 147 @@ -4542,7 +4742,7 @@ I agree to have stored my Security Token from above in a secure place. If I lose it, I cannot get my account back. apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html - 31,34 + 31 @@ -4581,28 +4781,28 @@ Discover Open Source Alternatives for Personal Finance Tools apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 4,6 + 4 This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 8,15 + 8 Explore the links below to compare a variety of personal finance tools with Ghostfolio. apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 16,19 + 16 Open Source Alternative to apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 35,37 + 35 @@ -4735,1025 +4935,1273 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 8 - - - Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 8 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 8 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 8 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 8 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 8 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 8 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 8 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 8 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 8 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 8 + + + Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13,25 + 13 - - - Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 13 + + + Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 26,36 + 26 - - - Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 26 + + + Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 37,44 + 37 - - - Founded apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 67 + 37 - - - Origin apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 37 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 37 + + + Founded apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + 67 - - - Region apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 67 + + + Origin apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + 72 - - - Available in apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 72 + + + Region apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82,84 + 77 - - - ✅ Yes apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 77 + + + + Available in + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 82 + + + + ✅ Yes + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -5761,3267 +6209,4419 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 104 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 111 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 150 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 157 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 104 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 169 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 176 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 176 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 176 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 176 + + + + ❌ No + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 125 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 106 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 136 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 129 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 + 140 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 169 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 152 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 176 + 159 - - - ❌ No apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 159 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 106 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 171 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 129 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 140 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 178 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 178 + + + ❌ No apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 152 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 113 + + + Self-Hosting apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 159 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 118 + + + Use anonymously apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 171 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 178 + 145 - - - ❌ No apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 145 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 145 + + + Free Plan apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 113,114 + 164 - - - Self-Hosting apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 164 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 164 + + + Starting from / year apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118,120 + 184 - - - Use anonymously apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 184 + + + Starting from / year apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 145,147 + 189 - - - Free Plan apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 164,166 + 189 - - - Starting from / year apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 189 + + + Notes apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 184,186 + 195 - - - Starting from / year apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 195 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 195 + + + 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,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 189,190 + 203 - - - Notes apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 203 + + + Ready to take your investments to the next level? apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + 216 - - - 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 - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 203,213 + 216 - - - Ready to take your investments to the next level? apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 216 + + + Effortlessly track, analyze, and visualize your wealth with Ghostfolio. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 216,219 + 220 - - - Effortlessly track, analyze, and visualize your wealth with Ghostfolio. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 220 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 220 + + + Get Started apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 220,223 + 225 - - - Get Started apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 225 + + + Personal Finance Tools apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 292 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 292 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 292 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 292 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 292 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 292 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 292 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 292 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 292 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 225,227 + 292 - - - Personal Finance Tools apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 292 @@ -9155,157 +10755,189 @@ Switzerland apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 54 + 64 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 66 + 86 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 375 + 465 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 398 + 498 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 399 + 499 Global apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 56 + 66 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 217 + 287 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 318 + 408 United States apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 106 + 77 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 140 + 135 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 150 + 168 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 203 + 178 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 228 + 188 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 230 + 240 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 294 + 262 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 305 + 273 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 298 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 300 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 310 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 375 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 385 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 395 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 476 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 509 Belgium apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 118 + 147 Germany apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 95 + 124 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 129 + 158 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 172 + 220 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 182 + 230 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 192 + 251 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 215 + 285 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 250 + 331 Austria apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 160 + 208 Italy apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 261 + 342 Netherlands apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 271 + 352 Thailand apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 283 + 364 New Zealand apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 316 + 406 Czech Republic apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 327 + 417 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 364 + 454 @@ -9394,10 +11026,6 @@ Membership - - apps/client/src/app/components/user-account-membership/user-account-membership.html - 2 - libs/ui/src/lib/membership-card/membership-card.component.html 18 @@ -9414,28 +11042,28 @@ Upgrade apps/client/src/app/components/user-account-membership/user-account-membership.html - 19 + 18 Renew apps/client/src/app/components/user-account-membership/user-account-membership.html - 22 + 21 Try Premium apps/client/src/app/components/user-account-membership/user-account-membership.html - 43 + 42 Redeem Coupon apps/client/src/app/components/user-account-membership/user-account-membership.html - 56 + 55 @@ -9449,7 +11077,7 @@ Protection for sensitive information like absolute performances and quantity values apps/client/src/app/components/user-account-settings/user-account-settings.html - 8,11 + 8 @@ -9512,7 +11140,7 @@ Distraction-free experience for turbulent times apps/client/src/app/components/user-account-settings/user-account-settings.html - 138,140 + 138 @@ -9540,7 +11168,7 @@ Sneak peek at upcoming functionality apps/client/src/app/components/user-account-settings/user-account-settings.html - 173,175 + 173 @@ -9593,68 +11221,68 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 444 + 453 Import Dividends libs/ui/src/lib/activities-table/activities-table.component.html - 34 + 35 libs/ui/src/lib/activities-table/activities-table.component.html - 453 + 464 Export Activities libs/ui/src/lib/activities-table/activities-table.component.html - 44 + 47 libs/ui/src/lib/activities-table/activities-table.component.html - 463 + 476 Export Drafts as ICS libs/ui/src/lib/activities-table/activities-table.component.html - 54 + 59 libs/ui/src/lib/activities-table/activities-table.component.html - 473 + 488 Delete all Activities libs/ui/src/lib/activities-table/activities-table.component.html - 62 + 69 Draft libs/ui/src/lib/activities-table/activities-table.component.html - 181 + 189 Clone libs/ui/src/lib/activities-table/activities-table.component.html - 494 + 513 Export Draft as ICS libs/ui/src/lib/activities-table/activities-table.component.html - 502 + 523 @@ -10135,7 +11763,7 @@ 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 - 187,188 + 198 @@ -10177,15 +11805,15 @@ France apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 76 + 105 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 338 + 428 apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 354 + 444 @@ -10199,14 +11827,14 @@ Add Tag apps/client/src/app/components/admin-tag/admin-tag.component.html - 11,13 + 11 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,101 + 100 @@ -10227,7 +11855,7 @@ Benchmark apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 220 + 219 @@ -10281,21 +11909,21 @@ To apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 21 + 29 Transfer apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 50 + 66 Finland apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 346 + 436 @@ -10327,7 +11955,7 @@ Asset Profile apps/client/src/app/components/admin-jobs/admin-jobs.html - 31,33 + 31 @@ -10348,7 +11976,7 @@ Do you really want to delete this asset profile? apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 182 + 184 @@ -10362,152 +11990,192 @@ Ghostfolio is a personal finance dashboard to keep track of your assets like stocks, ETFs or cryptocurrencies across multiple platforms. apps/client/src/app/pages/i18n/i18n-page.html - 4,7 + 4 User apps/client/src/app/components/admin-users/admin-users.html - 29,31 + 29 Ghostfolio vs comparison table apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 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,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 48,50 + 48 Canada apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 388 + 488 @@ -10521,7 +12189,7 @@ app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 apps/client/src/app/pages/i18n/i18n-page.html - 8,11 + 8 @@ -10535,7 +12203,49 @@ Poland apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 86 + 115 + + + + Extreme Fear + + libs/ui/src/lib/i18n.ts + 63 + + + + Extreme Greed + + libs/ui/src/lib/i18n.ts + 64 + + + + Neutral + + libs/ui/src/lib/i18n.ts + 67 + + + + South Africa + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 197 + + + + Oops! Could not parse historical data. + + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts + 205 + + + + Do you really want to delete this system message? + + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 159 diff --git a/libs/common/src/lib/helper.ts b/libs/common/src/lib/helper.ts index 4e8d38dd3..5b124c732 100644 --- a/libs/common/src/lib/helper.ts +++ b/libs/common/src/lib/helper.ts @@ -311,15 +311,15 @@ export function resetHours(aDate: Date) { export function resolveFearAndGreedIndex(aValue: number) { if (aValue <= 25) { - return { emoji: '🥵', text: 'Extreme Fear' }; + return { emoji: '🥵', key: 'EXTREME_FEAR', text: 'Extreme Fear' }; } else if (aValue <= 45) { - return { emoji: '😨', text: 'Fear' }; + return { emoji: '😨', key: 'FEAR', text: 'Fear' }; } else if (aValue <= 55) { - return { emoji: '😐', text: 'Neutral' }; + return { emoji: '😐', key: 'NEUTRAL', text: 'Neutral' }; } else if (aValue < 75) { - return { emoji: '😜', text: 'Greed' }; + return { emoji: '😜', key: 'GREED', text: 'Greed' }; } else { - return { emoji: '🤪', text: 'Extreme Greed' }; + return { emoji: '🤪', key: 'EXTREME_GREED', text: 'Extreme Greed' }; } } diff --git a/libs/common/src/lib/interfaces/index.ts b/libs/common/src/lib/interfaces/index.ts index 47df3d2f9..7d76c419e 100644 --- a/libs/common/src/lib/interfaces/index.ts +++ b/libs/common/src/lib/interfaces/index.ts @@ -42,6 +42,7 @@ import type { PortfolioPerformanceResponse } from './responses/portfolio-perform import type { ScraperConfiguration } from './scraper-configuration.interface'; import type { Statistics } from './statistics.interface'; import type { Subscription } from './subscription.interface'; +import { SystemMessage } from './system-message.interface'; import { TabConfiguration } from './tab-configuration.interface'; import type { TimelinePosition } from './timeline-position.interface'; import type { UniqueAsset } from './unique-asset.interface'; @@ -90,6 +91,7 @@ export { ResponseError, ScraperConfiguration, Statistics, + SystemMessage, Subscription, TabConfiguration, TimelinePosition, diff --git a/libs/common/src/lib/interfaces/info-item.interface.ts b/libs/common/src/lib/interfaces/info-item.interface.ts index 55ab7d06f..1d3624e24 100644 --- a/libs/common/src/lib/interfaces/info-item.interface.ts +++ b/libs/common/src/lib/interfaces/info-item.interface.ts @@ -17,6 +17,5 @@ export interface InfoItem { statistics: Statistics; stripePublicKey?: string; subscriptions: { [offer in SubscriptionOffer]: Subscription }; - systemMessage?: string; tags: Tag[]; } diff --git a/libs/common/src/lib/interfaces/system-message.interface.ts b/libs/common/src/lib/interfaces/system-message.interface.ts new file mode 100644 index 000000000..253bd5a27 --- /dev/null +++ b/libs/common/src/lib/interfaces/system-message.interface.ts @@ -0,0 +1,7 @@ +import { SubscriptionType } from '@ghostfolio/common/types/subscription-type.type'; + +export interface SystemMessage { + message: string; + routerLink?: string[]; + targetGroups: SubscriptionType[]; +} diff --git a/libs/common/src/lib/interfaces/user.interface.ts b/libs/common/src/lib/interfaces/user.interface.ts index 1009deca2..a88dd2d72 100644 --- a/libs/common/src/lib/interfaces/user.interface.ts +++ b/libs/common/src/lib/interfaces/user.interface.ts @@ -2,6 +2,7 @@ import { SubscriptionOffer } from '@ghostfolio/common/types'; import { SubscriptionType } from '@ghostfolio/common/types/subscription-type.type'; import { Account, Tag } from '@prisma/client'; +import { SystemMessage } from './system-message.interface'; import { UserSettings } from './user-settings.interface'; // TODO: Compare with UserWithSettings @@ -14,6 +15,7 @@ export interface User { id: string; permissions: string[]; settings: UserSettings; + systemMessage?: SystemMessage; subscription: { expiresAt?: Date; offer: SubscriptionOffer; diff --git a/libs/ui/src/lib/carousel/carousel.component.html b/libs/ui/src/lib/carousel/carousel.component.html index 59966b8a6..97f2e1b6e 100644 --- a/libs/ui/src/lib/carousel/carousel.component.html +++ b/libs/ui/src/lib/carousel/carousel.component.html @@ -2,8 +2,8 @@ *ngIf="this.showPrevArrow" aria-hidden="true" aria-label="previous" - class="carousel-nav carousel-nav-prev no-min-width position-absolute" - mat-stroked-button + class="carousel-nav carousel-nav-prev no-min-width position-absolute px-1" + mat-button tabindex="-1" (click)="previous()" > @@ -25,8 +25,8 @@ *ngIf="this.showNextArrow" aria-hidden="true" aria-label="next" - class="carousel-nav carousel-nav-next no-min-width position-absolute" - mat-stroked-button + class="carousel-nav carousel-nav-next no-min-width position-absolute px-1" + mat-button tabindex="-1" (click)="next()" > diff --git a/libs/ui/src/lib/carousel/carousel.component.scss b/libs/ui/src/lib/carousel/carousel.component.scss index 38da7c100..546c92194 100644 --- a/libs/ui/src/lib/carousel/carousel.component.scss +++ b/libs/ui/src/lib/carousel/carousel.component.scss @@ -12,13 +12,14 @@ button { top: 50%; transform: translateY(-50%); + z-index: 1; &.carousel-nav-prev { - left: -50px; + left: -0.5rem; } &.carousel-nav-next { - right: -50px; + right: -0.5rem; } } diff --git a/libs/ui/src/lib/i18n.ts b/libs/ui/src/lib/i18n.ts index 6be2833f7..9bc965bfd 100644 --- a/libs/ui/src/lib/i18n.ts +++ b/libs/ui/src/lib/i18n.ts @@ -58,7 +58,14 @@ const locales = { Europe: $localize`Europe`, 'North America': $localize`North America`, Oceania: $localize`Oceania`, - 'South America': $localize`South America` + 'South America': $localize`South America`, + + // Fear and Greed Index + EXTREME_FEAR: $localize`Extreme Fear`, + EXTREME_GREED: $localize`Extreme Greed`, + FEAR: $localize`Fear`, + GREED: $localize`Greed`, + NEUTRAL: $localize`Neutral` }; export function translate(aKey: string): string { diff --git a/package.json b/package.json index 05847f8d8..a7d7cd90b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ghostfolio", - "version": "2.18.0", + "version": "2.22.0", "homepage": "https://ghostfol.io", "license": "AGPL-3.0", "repository": "https://github.com/ghostfolio/ghostfolio", @@ -113,7 +113,7 @@ "lodash": "4.17.21", "marked": "4.2.12", "ms": "3.0.0-canary.1", - "ng-extract-i18n-merge": "2.7.0", + "ng-extract-i18n-merge": "2.8.3", "ngx-device-detector": "5.0.1", "ngx-markdown": "15.1.0", "ngx-skeleton-loader": "7.0.0", diff --git a/prisma/migrations/20231107080536_removed_account_type_from_account/migration.sql b/prisma/migrations/20231107080536_removed_account_type_from_account/migration.sql new file mode 100644 index 000000000..e25b06ad8 --- /dev/null +++ b/prisma/migrations/20231107080536_removed_account_type_from_account/migration.sql @@ -0,0 +1,2 @@ +-- AlterTable +ALTER TABLE "Account" DROP COLUMN "accountType"; diff --git a/prisma/schema.prisma b/prisma/schema.prisma index c7579b9cc..70d186be4 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -21,7 +21,6 @@ model Access { } model Account { - accountType AccountType? balance Float @default(0) balances AccountBalance[] comment String? diff --git a/yarn.lock b/yarn.lock index 860d9ff16..6e22a8d97 100644 --- a/yarn.lock +++ b/yarn.lock @@ -28,12 +28,12 @@ "@angular-devkit/core" "16.2.9" rxjs "7.8.1" -"@angular-devkit/architect@^0.1600.0-next.6": - version "0.1600.6" - resolved "https://registry.yarnpkg.com/@angular-devkit/architect/-/architect-0.1600.6.tgz#216f4d89086b8b4ef562b2066e430a44f7a2cf57" - integrity sha512-Mk/pRujuer5qRMrgC7DPwLQ88wTAEKhbs0yJ/1prm4cx+VkxX9MMf6Y4AHKRmduKmFmd2LmX21/ACiU65acH8w== +"@angular-devkit/architect@^0.1301.0 || ^0.1401.0 || ^0.1501.0 || ^0.1601.0 || ^0.1700.0": + version "0.1700.0" + resolved "https://registry.yarnpkg.com/@angular-devkit/architect/-/architect-0.1700.0.tgz#419d59be6f8bc0068f8d495d7e28f4f47cfdb2ce" + integrity sha512-whi7HvOjv1J3He9f+H8xNJWKyjAmWuWNl8gxNW6EZP/XLcrOu+/5QT4bPtXQBRIL/avZuc++5sNQS+kReaNCig== dependencies: - "@angular-devkit/core" "16.0.6" + "@angular-devkit/core" "17.0.0" rxjs "7.8.1" "@angular-devkit/build-angular@16.2.9": @@ -127,17 +127,6 @@ rxjs "7.8.1" source-map "0.7.4" -"@angular-devkit/core@16.0.6": - version "16.0.6" - resolved "https://registry.yarnpkg.com/@angular-devkit/core/-/core-16.0.6.tgz#6bedee38bb070e9203e60c9eeda38247ef39f57d" - integrity sha512-pHbDUwXDMTWTnX/vafkFnzvYDQD8lz+w8FvMQE23Q/vN6/Q0BRf0PWTAGla6Wt+E4HaqqrbQS5P0YBwS4te2Pw== - dependencies: - ajv "8.12.0" - ajv-formats "2.1.1" - jsonc-parser "3.2.0" - rxjs "7.8.1" - source-map "0.7.4" - "@angular-devkit/core@16.1.0": version "16.1.0" resolved "https://registry.yarnpkg.com/@angular-devkit/core/-/core-16.1.0.tgz#cb56b19e88fc936fb0b26c5ae62591f1e8906961" @@ -160,10 +149,10 @@ rxjs "7.8.1" source-map "0.7.4" -"@angular-devkit/core@16.2.8", "@angular-devkit/core@^16.0.0-next.6": - version "16.2.8" - resolved "https://registry.yarnpkg.com/@angular-devkit/core/-/core-16.2.8.tgz#db74f3063e7fd573be7dafd022e8dc10e43140c0" - integrity sha512-PTGozYvh1Bin5lB15PwcXa26Ayd17bWGLS3H8Rs0s+04mUDvfNofmweaX1LgumWWy3nCUTDuwHxX10M3G0wE2g== +"@angular-devkit/core@16.2.9": + version "16.2.9" + resolved "https://registry.yarnpkg.com/@angular-devkit/core/-/core-16.2.9.tgz#81c5c95de8c423634bf93f616683045c6cdd4dd0" + integrity sha512-dcHWjHBNGm3yCeNz19y8A1At4KgyC6XHNnbFL0y+nnZYiaESXjUoXJYKASedI6A+Bpl0HNq2URhH6bL6Af3+4w== dependencies: ajv "8.12.0" ajv-formats "2.1.1" @@ -172,15 +161,15 @@ rxjs "7.8.1" source-map "0.7.4" -"@angular-devkit/core@16.2.9": - version "16.2.9" - resolved "https://registry.yarnpkg.com/@angular-devkit/core/-/core-16.2.9.tgz#81c5c95de8c423634bf93f616683045c6cdd4dd0" - integrity sha512-dcHWjHBNGm3yCeNz19y8A1At4KgyC6XHNnbFL0y+nnZYiaESXjUoXJYKASedI6A+Bpl0HNq2URhH6bL6Af3+4w== +"@angular-devkit/core@17.0.0", "@angular-devkit/core@^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0": + version "17.0.0" + resolved "https://registry.yarnpkg.com/@angular-devkit/core/-/core-17.0.0.tgz#99cd048cca37cf4d0cb60a3b6871e19449a8006a" + integrity sha512-QUu3LnEi4A8t733v2+I0sLtyBJx3Q7zdTAhaauCbxbFhDid0cbYm8hYsyG/njor1irTPxSJbn6UoetVkwUQZxg== dependencies: ajv "8.12.0" ajv-formats "2.1.1" jsonc-parser "3.2.0" - picomatch "2.3.1" + picomatch "3.0.1" rxjs "7.8.1" source-map "0.7.4" @@ -217,17 +206,6 @@ ora "5.4.1" rxjs "7.8.1" -"@angular-devkit/schematics@16.2.8", "@angular-devkit/schematics@^16.0.0-next.6": - version "16.2.8" - resolved "https://registry.yarnpkg.com/@angular-devkit/schematics/-/schematics-16.2.8.tgz#cc11cf6d00cd9131adbede9a99f3a617aedd5bc4" - integrity sha512-MBiKZOlR9/YMdflALr7/7w/BGAfo/BGTrlkqsIB6rDWV1dYiCgxI+033HsiNssLS6RQyCFx/e7JA2aBBzu9zEg== - dependencies: - "@angular-devkit/core" "16.2.8" - jsonc-parser "3.2.0" - magic-string "0.30.1" - ora "5.4.1" - rxjs "7.8.1" - "@angular-devkit/schematics@16.2.9": version "16.2.9" resolved "https://registry.yarnpkg.com/@angular-devkit/schematics/-/schematics-16.2.9.tgz#71eed819c1665068d717d75f912f5ea689c201f9" @@ -239,6 +217,17 @@ ora "5.4.1" rxjs "7.8.1" +"@angular-devkit/schematics@17.0.0", "@angular-devkit/schematics@^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0": + version "17.0.0" + resolved "https://registry.yarnpkg.com/@angular-devkit/schematics/-/schematics-17.0.0.tgz#bfcc09a1bd145ef978f92d660df89a11e69468d4" + integrity sha512-LD7fjDORuBf139/oJ/gSwbIzQPfsm6Y67s1FD+XLi0QXaRt6dw4r7BMD08l1r//oPQofNgbEH4coGVO4NdCL/A== + dependencies: + "@angular-devkit/core" "17.0.0" + jsonc-parser "3.2.0" + magic-string "0.30.5" + ora "5.4.1" + rxjs "7.8.1" + "@angular-eslint/bundled-angular-compiler@16.2.0": version "16.2.0" resolved "https://registry.yarnpkg.com/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-16.2.0.tgz#09d0637d738850a2c6f0523f19632e992f790102" @@ -4688,13 +4677,13 @@ "@angular-devkit/schematics" "16.2.9" jsonc-parser "3.2.0" -"@schematics/angular@^16.0.0-next.6": - version "16.2.8" - resolved "https://registry.yarnpkg.com/@schematics/angular/-/angular-16.2.8.tgz#d4c236767e89c536c2c15951394cac20f07bfc1f" - integrity sha512-yxfxJ2IMRIt+dQcqyJR30qd/osb5NwRsi9US3gFIHP1jfjOAs1Nk8ENNd5ycYV+yykCa78KWhmbOw4G1zpR56Q== +"@schematics/angular@^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0": + version "17.0.0" + resolved "https://registry.yarnpkg.com/@schematics/angular/-/angular-17.0.0.tgz#63ddf8bfbb3b117fe7a355bd22b43d2c9ff7f0ee" + integrity sha512-9jKU5x/WzaBsfSkUowK1X74FqtMXa6+A60XgW4ACO8i6fwKfPeS+tIrAieeYOX80/njBh7I5CvcpHmWA2SbcXQ== dependencies: - "@angular-devkit/core" "16.2.8" - "@angular-devkit/schematics" "16.2.8" + "@angular-devkit/core" "17.0.0" + "@angular-devkit/schematics" "17.0.0" jsonc-parser "3.2.0" "@sigstore/bundle@^1.1.0": @@ -8507,16 +8496,11 @@ commander@^6.2.1: resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c" integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA== -commander@^8.3.0, commander@~8.3.0: +commander@^8.3.0: version "8.3.0" resolved "https://registry.yarnpkg.com/commander/-/commander-8.3.0.tgz#4837ea1b2da67b9c616a67afbb0fafee567bca66" integrity sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww== -commander@~7.1.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-7.1.0.tgz#f2eaecf131f10e36e07d894698226e36ae0eb5ff" - integrity sha512-pRxBna3MJe6HKnBGsDyMv8ETbptw3axEdYHoqNh7gu5oDcew8fs0xnivZGm06Ogk8zGAJ9VX+OPEr2GXEQK4dg== - comment-json@4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/comment-json/-/comment-json-4.2.3.tgz#50b487ebbf43abe44431f575ebda07d30d015365" @@ -13271,11 +13255,6 @@ jiti@^1.18.2: resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.20.0.tgz#2d823b5852ee8963585c8dd8b7992ffc1ae83b42" integrity sha512-3TV69ZbrvV6U5DfQimop50jE9Dl6J8O1ja1dvBbMba/sZ3YBEQqJ2VZRoQPVnhlzjNtU1vaXRZVrVjU4qtm8yA== -js-levenshtein@~1.1.6: - version "1.1.6" - resolved "https://registry.yarnpkg.com/js-levenshtein/-/js-levenshtein-1.1.6.tgz#c6cee58eb3550372df8deb85fad5ce66ce01d59d" - integrity sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g== - js-sdsl@^4.1.4: version "4.4.2" resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.4.2.tgz#2e3c031b1f47d3aca8b775532e3ebb0818e7f847" @@ -14005,7 +13984,7 @@ magic-string@0.30.1: dependencies: "@jridgewell/sourcemap-codec" "^1.4.15" -magic-string@~0.30.2: +magic-string@0.30.5, magic-string@~0.30.2: version "0.30.5" resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.5.tgz#1994d980bd1c8835dc6e78db7cbd4ae4f24746f9" integrity sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA== @@ -14554,18 +14533,16 @@ 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.7.0: - version "2.7.0" - resolved "https://registry.yarnpkg.com/ng-extract-i18n-merge/-/ng-extract-i18n-merge-2.7.0.tgz#18e2acd1a7598100300c42887917e16c4782589d" - integrity sha512-HG0Gjg4J8GqkROQSdHeCS1jtqz3ExzswH2zA8nbJNZU5ctA25O8dpfSXVl63PWxNhYtJOnP4rEPXNiyvlHaHwA== +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== dependencies: - "@angular-devkit/architect" "^0.1600.0-next.6" - "@angular-devkit/core" "^16.0.0-next.6" - "@angular-devkit/schematics" "^16.0.0-next.6" - "@schematics/angular" "^16.0.0-next.6" - xliff-simple-merge "~1.0.1" - xml_normalize "^1.0.0" - xmldoc "~1.1.2" + "@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" + "@angular-devkit/schematics" "^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + "@schematics/angular" "^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + xmldoc "^1.1.2" ngx-device-detector@5.0.1: version "5.0.1" @@ -15546,6 +15523,11 @@ picomatch@2.3.1, picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3, picomatch resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== +picomatch@3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-3.0.1.tgz#817033161def55ec9638567a2f3bbc876b3e7516" + integrity sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag== + pify@^2.2.0, pify@^2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" @@ -19091,15 +19073,6 @@ ws@^8.11.0, ws@^8.13.0, ws@^8.2.3: resolved "https://registry.yarnpkg.com/ws/-/ws-8.14.2.tgz#6c249a806eb2db7a20d26d51e7709eab7b2e6c7f" integrity sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g== -xliff-simple-merge@~1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/xliff-simple-merge/-/xliff-simple-merge-1.0.2.tgz#55f88a84630de625db2b3ddfc3d0d741ac940bfd" - integrity sha512-9Dtw/l91o0DeLkNFJrlh5nxJSS8OD+IHeq5rjA6hkVtv6SWf7rJyr4YNSQc/6opDssRI8JgAWcQlj2ZfcvW11Q== - dependencies: - commander "~8.3.0" - js-levenshtein "~1.1.6" - xmldoc "~1.1.2" - xml-name-validator@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" @@ -19110,23 +19083,15 @@ xml-name-validator@^4.0.0: resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz#79a006e2e63149a8600f15430f0a4725d1524835" integrity sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw== -xml_normalize@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/xml_normalize/-/xml_normalize-1.0.0.tgz#e844d8abae27b64fcb4eb0d567ecff278e0b166c" - integrity sha512-VzDbw9DW849WoLor6CP1eIPiVWwbq8CV3dlSrfVfsMqBqvp3VVkmLxA8J55WyLf6CnAf2sV29TQO77BKM/cxBw== - dependencies: - commander "~7.1.0" - xmldoc "~1.1.2" - xmlchars@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== -xmldoc@~1.1.2: - version "1.1.4" - resolved "https://registry.yarnpkg.com/xmldoc/-/xmldoc-1.1.4.tgz#ea4e26dca76b1d218a2f777018bce404ba374a86" - integrity sha512-rQshsBGR5s7pUNENTEncpI2LTCuzicri0DyE4SCV5XmS0q81JS8j1iPijP0Q5c4WLGbKh3W92hlOwY6N9ssW1w== +xmldoc@^1.1.2: + version "1.3.0" + resolved "https://registry.yarnpkg.com/xmldoc/-/xmldoc-1.3.0.tgz#7823225b096c74036347c9ec5924d06b6a3cebab" + integrity sha512-y7IRWW6PvEnYQZNZFMRLNJw+p3pezM4nKYPfr15g4OOW9i8VpeydycFuipE2297OvZnh3jSb2pxOt9QpkZUVng== dependencies: sax "^1.2.4"