Compare commits
110 Commits
Author | SHA1 | Date | |
---|---|---|---|
420f331be9 | |||
e0068c4d5d | |||
85661884a6 | |||
8f6203d296 | |||
2fa723dc3c | |||
a500fb72c5 | |||
02db0db733 | |||
c87b08ca8b | |||
fcc2ab1a48 | |||
7efda2f890 | |||
3794a61d2d | |||
c1d1ea9dde | |||
0d676a46c8 | |||
97db144e01 | |||
cec55127c8 | |||
f3f359bcfb | |||
601e6f4147 | |||
e228b4925c | |||
62e3ffe413 | |||
6af885fde0 | |||
dd15bba359 | |||
43fca7ff43 | |||
faa6af5694 | |||
d2ea7a0bfb | |||
3f6319e00b | |||
5601299648 | |||
6060c7cfe0 | |||
ba78c2783d | |||
48eee5f865 | |||
f4a8acdb46 | |||
1d6ba22598 | |||
e38be8d710 | |||
da5be3fb57 | |||
b5317a7f95 | |||
43afb16808 | |||
d5c56fb16c | |||
b94c1f280b | |||
acc59866a3 | |||
c9fc3e402d | |||
6c1317f978 | |||
89be438e66 | |||
9d6214e93a | |||
0640b24290 | |||
6eb9d9d973 | |||
9ecc3176a5 | |||
96434c5a54 | |||
4063c62a17 | |||
890c5b986c | |||
423bd92b89 | |||
5dc331e386 | |||
744dc51dcd | |||
b0c53d050a | |||
830569b38e | |||
35b4aef06f | |||
bc2fd9c970 | |||
c42a8aebed | |||
fad1adb91b | |||
9cd37f8de0 | |||
d49b90d7a5 | |||
130a9ea062 | |||
ffc6309850 | |||
976cc7f243 | |||
7067aca04b | |||
1c9805bb96 | |||
8227a2d91a | |||
194aee97db | |||
0f77169952 | |||
0f8dc62c53 | |||
554136cdcd | |||
83b5cfff1f | |||
dcec3accf0 | |||
f08b0b570b | |||
8386fec98a | |||
4d3dff3e5b | |||
76890e63fa | |||
4fb2aebf4f | |||
ed5cd3b978 | |||
469c1936b4 | |||
8b3cc5c11a | |||
ee086638f3 | |||
58d1abbd38 | |||
ba979cbae2 | |||
8cda43bb63 | |||
c4499df74c | |||
24bcc15b6a | |||
ff121243e4 | |||
70e633b997 | |||
0780ee4adb | |||
09613f9324 | |||
8642b1a7af | |||
f96f861341 | |||
a201fc7a97 | |||
a97110348c | |||
a25d5b9dc0 | |||
6c2acf2aa6 | |||
519827045a | |||
79a7e12a9f | |||
bf20a5de82 | |||
0adefe14e1 | |||
f24561cc3d | |||
873fd53715 | |||
e5d8faf2dc | |||
65d3bd2802 | |||
ad60373813 | |||
b725e6e2ec | |||
88c420ca5e | |||
118e17f78c | |||
cc92592d86 | |||
46eb3254a9 | |||
2477491f18 |
@ -24,12 +24,18 @@
|
|||||||
{
|
{
|
||||||
"files": ["*.ts", "*.tsx"],
|
"files": ["*.ts", "*.tsx"],
|
||||||
"extends": ["plugin:@nx/typescript"],
|
"extends": ["plugin:@nx/typescript"],
|
||||||
"rules": {}
|
"rules": {
|
||||||
|
"@typescript-eslint/no-extra-semi": "error",
|
||||||
|
"no-extra-semi": "off"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"files": ["*.js", "*.jsx"],
|
"files": ["*.js", "*.jsx"],
|
||||||
"extends": ["plugin:@nx/javascript"],
|
"extends": ["plugin:@nx/javascript"],
|
||||||
"rules": {}
|
"rules": {
|
||||||
|
"@typescript-eslint/no-extra-semi": "error",
|
||||||
|
"no-extra-semi": "off"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"files": ["*.ts"],
|
"files": ["*.ts"],
|
||||||
|
12
.github/workflows/build-code.yml
vendored
12
.github/workflows/build-code.yml
vendored
@ -13,7 +13,7 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
node_version:
|
node_version:
|
||||||
- 18
|
- 20
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
@ -24,16 +24,16 @@ jobs:
|
|||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: ${{ matrix.node_version }}
|
node-version: ${{ matrix.node_version }}
|
||||||
cache: 'yarn'
|
cache: 'npm'
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: yarn install --frozen-lockfile
|
run: npm ci
|
||||||
|
|
||||||
- name: Check formatting
|
- name: Check formatting
|
||||||
run: yarn format:check
|
run: npm run format:check
|
||||||
|
|
||||||
- name: Execute tests
|
- name: Execute tests
|
||||||
run: yarn test
|
run: npm test
|
||||||
|
|
||||||
- name: Build application
|
- name: Build application
|
||||||
run: yarn build:production
|
run: npm run build:production
|
||||||
|
5
.gitignore
vendored
5
.gitignore
vendored
@ -5,8 +5,8 @@
|
|||||||
/tmp
|
/tmp
|
||||||
|
|
||||||
# dependencies
|
# dependencies
|
||||||
/.yarn
|
|
||||||
/node_modules
|
/node_modules
|
||||||
|
npm-debug.log
|
||||||
|
|
||||||
# IDEs and editors
|
# IDEs and editors
|
||||||
/.idea
|
/.idea
|
||||||
@ -28,15 +28,14 @@
|
|||||||
.env
|
.env
|
||||||
.env.prod
|
.env.prod
|
||||||
.nx/cache
|
.nx/cache
|
||||||
|
.nx/workspace-data
|
||||||
/.sass-cache
|
/.sass-cache
|
||||||
/connect.lock
|
/connect.lock
|
||||||
/coverage
|
/coverage
|
||||||
/dist
|
/dist
|
||||||
/libpeerconnection.log
|
/libpeerconnection.log
|
||||||
npm-debug.log
|
|
||||||
testem.log
|
testem.log
|
||||||
/typings
|
/typings
|
||||||
yarn-error.log
|
|
||||||
|
|
||||||
# System Files
|
# System Files
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
/.nx/cache
|
/.nx/cache
|
||||||
|
/.nx/workspace-data
|
||||||
/apps/client/src/polyfills.ts
|
/apps/client/src/polyfills.ts
|
||||||
/dist
|
/dist
|
||||||
/test/import
|
/test/import
|
||||||
|
196
CHANGELOG.md
196
CHANGELOG.md
@ -5,6 +5,200 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## 2.101.0 - 2024-08-03
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Hardened container security by switching to a non-root user, setting the filesystem to read-only, and dropping unnecessary capabilities
|
||||||
|
|
||||||
|
## 2.100.0 - 2024-08-03
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added support to manage tags of holdings in the holding detail dialog
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Improved the color assignment in the chart of the holdings tab on the home page (experimental)
|
||||||
|
- Persisted the view mode of the holdings tab on the home page (experimental)
|
||||||
|
- Improved the language localization for Catalan (`ca`)
|
||||||
|
- Improved the language localization for Spanish (`es`)
|
||||||
|
|
||||||
|
## 2.99.0 - 2024-07-29
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Migrated the usage of `yarn` to `npm`
|
||||||
|
- Upgraded `storybook` from version `7.0.9` to `8.2.5`
|
||||||
|
- Downgraded `marked` from version `13.0.0` to `12.0.2`
|
||||||
|
|
||||||
|
## 2.98.0 - 2024-07-27
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Set up the language localization for Catalan (`ca`)
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Improved the account selector of the create or update activity dialog
|
||||||
|
- Improved the handling of the numerical precision in the value component
|
||||||
|
- Skipped derived currencies in the get quotes functionality of the data provider service
|
||||||
|
- Improved the language localization for Spanish (`es`)
|
||||||
|
- Upgraded `angular` from version `18.0.4` to `18.1.1`
|
||||||
|
- Upgraded `Nx` from version `19.4.3` to `19.5.1`
|
||||||
|
- Upgraded `prisma` from version `5.16.1` to `5.17.0`
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fixed the dividend import from a data provider for holdings without an account
|
||||||
|
- Fixed an issue in the public page related to a non-existent access
|
||||||
|
|
||||||
|
## 2.97.0 - 2024-07-20
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added _selfh.st_ to the _As seen in_ section on the landing page
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Improved the numerical precision in the holding detail dialog
|
||||||
|
- Improved the handling of the numerical precision in the value component
|
||||||
|
- Optimized the 7d data gathering by prioritizing the currencies
|
||||||
|
- Improved the language localization for German (`de`)
|
||||||
|
- Upgraded `Node.js` from version `18` to `20` (`Dockerfile`)
|
||||||
|
- Upgraded `Nx` from version `19.4.0` to `19.4.3`
|
||||||
|
- Upgraded `prettier` from version `3.3.1` to `3.3.3`
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fixed the table sorting of the holdings tab on the home page
|
||||||
|
|
||||||
|
## 2.96.0 - 2024-07-13
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Improved the chart of the holdings tab on the home page (experimental)
|
||||||
|
- Separated the icon purposes in the `site.webmanifest`
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fixed an issue in the portfolio summary with the currency conversion of fees
|
||||||
|
- Fixed an issue in the the search for a holding
|
||||||
|
- Removed the show condition of the experimental features setting in the user settings
|
||||||
|
|
||||||
|
## 2.95.0 - 2024-07-12
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added a chart to the holdings tab of the home page (experimental)
|
||||||
|
|
||||||
|
## 2.94.0 - 2024-07-09
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Improved the language localization for German (`de`)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fixed a pagination issue in the activities endpoint by adding `id` as a secondary sort criterion to `date` to ensure consistent ordering
|
||||||
|
|
||||||
|
## 2.93.0 - 2024-07-07
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added the _Crypto Coins Heatmap_ to the resources section
|
||||||
|
- Added the _Stock Heatmap_ to the resources section
|
||||||
|
- Extended the content of the _Self-Hosting_ section by the platforms concept on the Frequently Asked Questions (FAQ) page
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Improved the allocations by ETF holding on the allocations page for the impersonation mode (experimental)
|
||||||
|
- Improved the detection of REST APIs (`JSON`) used via the scraper configuration
|
||||||
|
- Improved the usability to delete an asset profile of type currency in the historical market data table and the asset profile details dialog of the admin control
|
||||||
|
- Refreshed the cryptocurrencies list
|
||||||
|
- Refactored the thresholds of the rules in the _X-ray_ section
|
||||||
|
- Removed the obsolete `version` from the `docker-compose` files
|
||||||
|
- Upgraded `Nx` from version `19.2.2` to `19.4.0`
|
||||||
|
|
||||||
|
## 2.92.0 - 2024-06-30
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added support for bulk deletion of asset profiles from the market data table in the admin control panel
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Added support for derived currencies in the currency validation
|
||||||
|
- Added support for automatic deletion of unused asset profiles when deleting activities
|
||||||
|
- Improved the caching of the benchmarks in the markets overview (only cache if needed)
|
||||||
|
- Upgraded `prisma` from version `5.15.0` to `5.16.1`
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fixed an issue with the all time high in the benchmarks of the markets overview
|
||||||
|
|
||||||
|
## 2.91.0 - 2024-06-26
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added a benchmarks preset to the historical market data table of the admin control panel
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Upgraded `angular` from version `18.0.2` to `18.0.4`
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fixed the dialog position (center) on mobile
|
||||||
|
- Fixed the horizontal overflow in the historical market data table of the admin control panel
|
||||||
|
- Changed the mechanism of the `INTRADAY` data gathering to persist data only if the market state is `OPEN`
|
||||||
|
- Fixed the creation of activities with `MANUAL` data source (with no historical market data)
|
||||||
|
|
||||||
|
## 2.90.0 - 2024-06-22
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added a dialog for the benchmarks in the markets overview
|
||||||
|
- Extended the asset profile details dialog of the admin control for currencies
|
||||||
|
- Extended the content of the _Self-Hosting_ section by the mobile app question on the Frequently Asked Questions (FAQ) page
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Moved the indicator for active filters from experimental to general availability
|
||||||
|
- Improved the error handling in the biometric authentication registration
|
||||||
|
- Improved the language localization for German (`de`)
|
||||||
|
- Set up SSL for local development
|
||||||
|
- Upgraded the _Stripe_ dependencies
|
||||||
|
- Upgraded `marked` from version `9.1.6` to `13.0.0`
|
||||||
|
- Upgraded `ngx-device-detector` from version `5.0.1` to `8.0.0`
|
||||||
|
- Upgraded `ngx-markdown` from version `17.1.1` to `18.0.0`
|
||||||
|
- Upgraded `zone.js` from version `0.14.5` to `0.14.7`
|
||||||
|
|
||||||
|
## 2.89.0 - 2024-06-14
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Extended the historical market data table with currencies preset by date and activities count in the admin control panel
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Improved the date validation in the create, import and update activities endpoints
|
||||||
|
- Improved the language localization for German (`de`)
|
||||||
|
|
||||||
|
## 2.88.0 - 2024-06-11
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Set the image source label in `Dockerfile`
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Improved the style of the blog post list
|
||||||
|
- Migrated the `@ghostfolio/client` components to control flow
|
||||||
|
- Improved the language localization for German (`de`)
|
||||||
|
- Upgraded `angular` from version `17.3.10` to `18.0.2`
|
||||||
|
- Upgraded `Nx` from version `19.0.5` to `19.2.2`
|
||||||
|
|
||||||
## 2.87.0 - 2024-06-08
|
## 2.87.0 - 2024-06-08
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
@ -4686,7 +4880,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- Added the attribute `precision` in the value component
|
- Added the attribute `precision` to the value component
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ Remove permission in `UserService` using `without()`
|
|||||||
|
|
||||||
### Frontend
|
### Frontend
|
||||||
|
|
||||||
Use `*ngIf="user?.settings?.isExperimentalFeatures"` in HTML template
|
Use `@if (user?.settings?.isExperimentalFeatures) {}` in HTML template
|
||||||
|
|
||||||
## Git
|
## Git
|
||||||
|
|
||||||
@ -30,26 +30,26 @@ Use `*ngIf="user?.settings?.isExperimentalFeatures"` in HTML template
|
|||||||
|
|
||||||
#### Upgrade
|
#### Upgrade
|
||||||
|
|
||||||
1. Run `yarn nx migrate latest`
|
1. Run `npx nx migrate latest`
|
||||||
1. Make sure `package.json` changes make sense and then run `yarn install`
|
1. Make sure `package.json` changes make sense and then run `npm install`
|
||||||
1. Run `yarn nx migrate --run-migrations` (Run `YARN_NODE_LINKER="node-modules" NX_MIGRATE_SKIP_INSTALL=1 yarn nx migrate --run-migrations` due to https://github.com/nrwl/nx/issues/16338)
|
1. Run `npx nx migrate --run-migrations`
|
||||||
|
|
||||||
### Prisma
|
### Prisma
|
||||||
|
|
||||||
#### Access database via GUI
|
#### Access database via GUI
|
||||||
|
|
||||||
Run `yarn database:gui`
|
Run `npm run database:gui`
|
||||||
|
|
||||||
https://www.prisma.io/studio
|
https://www.prisma.io/studio
|
||||||
|
|
||||||
#### Synchronize schema with database for prototyping
|
#### Synchronize schema with database for prototyping
|
||||||
|
|
||||||
Run `yarn database:push`
|
Run `npm run database:push`
|
||||||
|
|
||||||
https://www.prisma.io/docs/concepts/components/prisma-migrate/db-push
|
https://www.prisma.io/docs/concepts/components/prisma-migrate/db-push
|
||||||
|
|
||||||
#### Create schema migration
|
#### Create schema migration
|
||||||
|
|
||||||
Run `yarn prisma migrate dev --name added_job_title`
|
Run `npm run prisma migrate dev --name added_job_title`
|
||||||
|
|
||||||
https://www.prisma.io/docs/concepts/components/prisma-migrate#getting-started-with-prisma-migrate
|
https://www.prisma.io/docs/concepts/components/prisma-migrate#getting-started-with-prisma-migrate
|
||||||
|
46
Dockerfile
46
Dockerfile
@ -1,4 +1,4 @@
|
|||||||
FROM --platform=$BUILDPLATFORM node:18-slim as builder
|
FROM --platform=$BUILDPLATFORM node:20-slim AS builder
|
||||||
|
|
||||||
# Build application and add additional files
|
# Build application and add additional files
|
||||||
WORKDIR /ghostfolio
|
WORKDIR /ghostfolio
|
||||||
@ -8,18 +8,17 @@ WORKDIR /ghostfolio
|
|||||||
COPY ./CHANGELOG.md CHANGELOG.md
|
COPY ./CHANGELOG.md CHANGELOG.md
|
||||||
COPY ./LICENSE LICENSE
|
COPY ./LICENSE LICENSE
|
||||||
COPY ./package.json package.json
|
COPY ./package.json package.json
|
||||||
COPY ./yarn.lock yarn.lock
|
COPY ./package-lock.json package-lock.json
|
||||||
COPY ./.yarnrc .yarnrc
|
|
||||||
COPY ./prisma/schema.prisma prisma/schema.prisma
|
COPY ./prisma/schema.prisma prisma/schema.prisma
|
||||||
|
|
||||||
RUN apt update && apt install -y \
|
RUN apt-get update && apt-get install -y --no-install-suggests \
|
||||||
g++ \
|
g++ \
|
||||||
git \
|
git \
|
||||||
make \
|
make \
|
||||||
openssl \
|
openssl \
|
||||||
python3 \
|
python3 \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
RUN yarn install
|
RUN npm install
|
||||||
|
|
||||||
# See https://github.com/nrwl/nx/issues/6586 for further details
|
# See https://github.com/nrwl/nx/issues/6586 for further details
|
||||||
COPY ./decorate-angular-cli.js decorate-angular-cli.js
|
COPY ./decorate-angular-cli.js decorate-angular-cli.js
|
||||||
@ -33,31 +32,36 @@ COPY ./tsconfig.base.json tsconfig.base.json
|
|||||||
COPY ./libs libs
|
COPY ./libs libs
|
||||||
COPY ./apps apps
|
COPY ./apps apps
|
||||||
|
|
||||||
RUN yarn build:production
|
RUN npm run build:production
|
||||||
|
|
||||||
# Prepare the dist image with additional node_modules
|
# Prepare the dist image with additional node_modules
|
||||||
WORKDIR /ghostfolio/dist/apps/api
|
WORKDIR /ghostfolio/dist/apps/api
|
||||||
# package.json was generated by the build process, however the original
|
# package.json was generated by the build process, however the original
|
||||||
# yarn.lock needs to be used to ensure the same versions
|
# package-lock.json needs to be used to ensure the same versions
|
||||||
COPY ./yarn.lock /ghostfolio/dist/apps/api/yarn.lock
|
COPY ./package-lock.json /ghostfolio/dist/apps/api/package-lock.json
|
||||||
|
|
||||||
RUN yarn
|
RUN npm install
|
||||||
COPY prisma /ghostfolio/dist/apps/api/prisma
|
COPY prisma /ghostfolio/dist/apps/api/prisma
|
||||||
|
|
||||||
# Overwrite the generated package.json with the original one to ensure having
|
# Overwrite the generated package.json with the original one to ensure having
|
||||||
# all the scripts
|
# all the scripts
|
||||||
COPY package.json /ghostfolio/dist/apps/api
|
COPY package.json /ghostfolio/dist/apps/api
|
||||||
RUN yarn database:generate-typings
|
RUN npm run database:generate-typings
|
||||||
|
|
||||||
# Image to run, copy everything needed from builder
|
# Image to run, copy everything needed from builder
|
||||||
FROM node:18-slim
|
FROM node:20-slim
|
||||||
RUN apt update && apt install -y \
|
LABEL org.opencontainers.image.source="https://github.com/ghostfolio/ghostfolio"
|
||||||
curl \
|
ENV NODE_ENV=production
|
||||||
openssl \
|
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
RUN apt-get update && apt-get install -y --no-install-suggests \
|
||||||
|
curl \
|
||||||
|
openssl \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
COPY --from=builder /ghostfolio/dist/apps /ghostfolio/apps
|
COPY --from=builder /ghostfolio/dist/apps /ghostfolio/apps
|
||||||
COPY ./docker/entrypoint.sh /ghostfolio/entrypoint.sh
|
COPY ./docker/entrypoint.sh /ghostfolio/entrypoint.sh
|
||||||
|
RUN chown -R node:node /ghostfolio
|
||||||
WORKDIR /ghostfolio/apps/api
|
WORKDIR /ghostfolio/apps/api
|
||||||
EXPOSE ${PORT:-3333}
|
EXPOSE ${PORT:-3333}
|
||||||
|
USER node
|
||||||
CMD [ "/ghostfolio/entrypoint.sh" ]
|
CMD [ "/ghostfolio/entrypoint.sh" ]
|
||||||
|
81
README.md
81
README.md
@ -7,7 +7,7 @@
|
|||||||
**Open Source Wealth Management Software**
|
**Open Source Wealth Management Software**
|
||||||
|
|
||||||
[**Ghostfol.io**](https://ghostfol.io) | [**Live Demo**](https://ghostfol.io/en/demo) | [**Ghostfolio Premium**](https://ghostfol.io/en/pricing) | [**FAQ**](https://ghostfol.io/en/faq) |
|
[**Ghostfol.io**](https://ghostfol.io) | [**Live Demo**](https://ghostfol.io/en/demo) | [**Ghostfolio Premium**](https://ghostfol.io/en/pricing) | [**FAQ**](https://ghostfol.io/en/faq) |
|
||||||
[**Blog**](https://ghostfol.io/en/blog) | [**Slack**](https://join.slack.com/t/ghostfolio/shared_invite/zt-vsaan64h-F_I0fEo5M0P88lP9ibCxFg) | [**X**](https://twitter.com/ghostfolio_)
|
[**Blog**](https://ghostfol.io/en/blog) | [**Slack**](https://join.slack.com/t/ghostfolio/shared_invite/zt-vsaan64h-F_I0fEo5M0P88lP9ibCxFg) | [**X**](https://x.com/ghostfolio_)
|
||||||
|
|
||||||
[](https://www.buymeacoffee.com/ghostfolio)
|
[](https://www.buymeacoffee.com/ghostfolio)
|
||||||
[](#contributing)
|
[](#contributing)
|
||||||
@ -47,7 +47,7 @@ Ghostfolio is for you if you are...
|
|||||||
|
|
||||||
- ✅ Create, update and delete transactions
|
- ✅ Create, update and delete transactions
|
||||||
- ✅ Multi account management
|
- ✅ Multi account management
|
||||||
- ✅ Portfolio performance: Time-weighted rate of return (TWR) for `Today`, `YTD`, `1Y`, `5Y`, `Max`
|
- ✅ Portfolio performance: Time-weighted rate of return (TWR) for `Today`, `WTD`, `MTD`, `YTD`, `1Y`, `5Y`, `Max`
|
||||||
- ✅ Various charts
|
- ✅ Various charts
|
||||||
- ✅ Static analysis to identify potential risks in your portfolio
|
- ✅ Static analysis to identify potential risks in your portfolio
|
||||||
- ✅ Import and export transactions
|
- ✅ Import and export transactions
|
||||||
@ -87,21 +87,21 @@ We provide official container images hosted on [Docker Hub](https://hub.docker.c
|
|||||||
|
|
||||||
| Name | Type | Default Value | Description |
|
| Name | Type | Default Value | Description |
|
||||||
| ------------------------ | ------------------- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------- |
|
| ------------------------ | ------------------- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
| `ACCESS_TOKEN_SALT` | string | | A random string used as salt for access tokens |
|
| `ACCESS_TOKEN_SALT` | `string` | | A random string used as salt for access tokens |
|
||||||
| `API_KEY_COINGECKO_DEMO` | string (`optional`) | | The _CoinGecko_ Demo API key |
|
| `API_KEY_COINGECKO_DEMO` | `string` (optional) | | The _CoinGecko_ Demo API key |
|
||||||
| `API_KEY_COINGECKO_PRO` | string (`optional`) | | The _CoinGecko_ Pro API |
|
| `API_KEY_COINGECKO_PRO` | `string` (optional) | | The _CoinGecko_ Pro API key |
|
||||||
| `DATABASE_URL` | string | | The database connection URL, e.g. `postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@localhost:5432/${POSTGRES_DB}?sslmode=prefer` |
|
| `DATABASE_URL` | `string` | | The database connection URL, e.g. `postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@localhost:5432/${POSTGRES_DB}?sslmode=prefer` |
|
||||||
| `HOST` | string (`optional`) | `0.0.0.0` | The host where the Ghostfolio application will run on |
|
| `HOST` | `string` (optional) | `0.0.0.0` | The host where the Ghostfolio application will run on |
|
||||||
| `JWT_SECRET_KEY` | string | | A random string used for _JSON Web Tokens_ (JWT) |
|
| `JWT_SECRET_KEY` | `string` | | A random string used for _JSON Web Tokens_ (JWT) |
|
||||||
| `PORT` | number (`optional`) | `3333` | The port where the Ghostfolio application will run on |
|
| `PORT` | `number` (optional) | `3333` | The port where the Ghostfolio application will run on |
|
||||||
| `POSTGRES_DB` | string | | The name of the _PostgreSQL_ database |
|
| `POSTGRES_DB` | `string` | | The name of the _PostgreSQL_ database |
|
||||||
| `POSTGRES_PASSWORD` | string | | The password of the _PostgreSQL_ database |
|
| `POSTGRES_PASSWORD` | `string` | | The password of the _PostgreSQL_ database |
|
||||||
| `POSTGRES_USER` | string | | The user of the _PostgreSQL_ database |
|
| `POSTGRES_USER` | `string` | | The user of the _PostgreSQL_ database |
|
||||||
| `REDIS_DB` | number (`optional`) | `0` | The database index of _Redis_ |
|
| `REDIS_DB` | `number` (optional) | `0` | The database index of _Redis_ |
|
||||||
| `REDIS_HOST` | string | | The host where _Redis_ is running |
|
| `REDIS_HOST` | `string` | | The host where _Redis_ is running |
|
||||||
| `REDIS_PASSWORD` | string | | The password of _Redis_ |
|
| `REDIS_PASSWORD` | `string` | | The password of _Redis_ |
|
||||||
| `REDIS_PORT` | number | | The port where _Redis_ is running |
|
| `REDIS_PORT` | `number` | | The port where _Redis_ is running |
|
||||||
| `REQUEST_TIMEOUT` | number (`optional`) | `2000` | The timeout of network requests to data providers in milliseconds |
|
| `REQUEST_TIMEOUT` | `number` (optional) | `2000` | The timeout of network requests to data providers in milliseconds |
|
||||||
|
|
||||||
### Run with Docker Compose
|
### Run with Docker Compose
|
||||||
|
|
||||||
@ -149,50 +149,49 @@ Ghostfolio is available for various home server systems, including [CasaOS](http
|
|||||||
### Prerequisites
|
### Prerequisites
|
||||||
|
|
||||||
- [Docker](https://www.docker.com/products/docker-desktop)
|
- [Docker](https://www.docker.com/products/docker-desktop)
|
||||||
- [Node.js](https://nodejs.org/en/download) (version 18+)
|
- [Node.js](https://nodejs.org/en/download) (version 20+)
|
||||||
- [Yarn](https://yarnpkg.com/en/docs/install)
|
|
||||||
- Create a local copy of this Git repository (clone)
|
- Create a local copy of this Git repository (clone)
|
||||||
- Copy the file `.env.dev` to `.env` and populate it with your data (`cp .env.dev .env`)
|
- Copy the file `.env.dev` to `.env` and populate it with your data (`cp .env.dev .env`)
|
||||||
|
|
||||||
### Setup
|
### Setup
|
||||||
|
|
||||||
1. Run `yarn install`
|
1. Run `npm install`
|
||||||
1. Run `docker compose --env-file ./.env -f docker/docker-compose.dev.yml up -d` to start [PostgreSQL](https://www.postgresql.org) and [Redis](https://redis.io)
|
1. Run `docker compose --env-file ./.env -f docker/docker-compose.dev.yml up -d` to start [PostgreSQL](https://www.postgresql.org) and [Redis](https://redis.io)
|
||||||
1. Run `yarn database:setup` to initialize the database schema
|
1. Run `npm run database:setup` to initialize the database schema
|
||||||
1. Run `git config core.hooksPath ./git-hooks/` to setup git hooks
|
1. Run `git config core.hooksPath ./git-hooks/` to setup git hooks
|
||||||
1. Start the server and the client (see [_Development_](#Development))
|
1. Start the server and the client (see [_Development_](#Development))
|
||||||
1. Open http://localhost:4200/en in your browser
|
1. Open https://localhost:4200/en in your browser
|
||||||
1. Create a new user via _Get Started_ (this first user will get the role `ADMIN`)
|
1. Create a new user via _Get Started_ (this first user will get the role `ADMIN`)
|
||||||
|
|
||||||
### Start Server
|
### Start Server
|
||||||
|
|
||||||
#### Debug
|
#### Debug
|
||||||
|
|
||||||
Run `yarn watch:server` and click _Debug API_ in [Visual Studio Code](https://code.visualstudio.com)
|
Run `npm run watch:server` and click _Debug API_ in [Visual Studio Code](https://code.visualstudio.com)
|
||||||
|
|
||||||
#### Serve
|
#### Serve
|
||||||
|
|
||||||
Run `yarn start:server`
|
Run `npm run start:server`
|
||||||
|
|
||||||
### Start Client
|
### Start Client
|
||||||
|
|
||||||
Run `yarn start:client` and open http://localhost:4200/en in your browser
|
Run `npm run start:client` and open https://localhost:4200/en in your browser
|
||||||
|
|
||||||
### Start _Storybook_
|
### Start _Storybook_
|
||||||
|
|
||||||
Run `yarn start:storybook`
|
Run `npm run start:storybook`
|
||||||
|
|
||||||
### Migrate Database
|
### Migrate Database
|
||||||
|
|
||||||
With the following command you can keep your database schema in sync:
|
With the following command you can keep your database schema in sync:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
yarn database:push
|
npm run database:push
|
||||||
```
|
```
|
||||||
|
|
||||||
## Testing
|
## Testing
|
||||||
|
|
||||||
Run `yarn test`
|
Run `npm test`
|
||||||
|
|
||||||
## Public API
|
## Public API
|
||||||
|
|
||||||
@ -233,18 +232,18 @@ Deprecated: `GET http://localhost:3333/api/v1/auth/anonymous/<INSERT_SECURITY_TO
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
| Field | Type | Description |
|
| Field | Type | Description |
|
||||||
| ---------- | ------------------- | ----------------------------------------------------------------------------- |
|
| ------------ | ------------------- | ----------------------------------------------------------------------------- |
|
||||||
| accountId | string (`optional`) | Id of the account |
|
| `accountId` | `string` (optional) | Id of the account |
|
||||||
| comment | string (`optional`) | Comment of the activity |
|
| `comment` | `string` (optional) | Comment of the activity |
|
||||||
| currency | string | `CHF` \| `EUR` \| `USD` etc. |
|
| `currency` | `string` | `CHF` \| `EUR` \| `USD` etc. |
|
||||||
| dataSource | string | `COINGECKO` \| `MANUAL` (for type `ITEM`) \| `YAHOO` |
|
| `dataSource` | `string` | `COINGECKO` \| `MANUAL` (for type `ITEM`) \| `YAHOO` |
|
||||||
| date | string | Date in the format `ISO-8601` |
|
| `date` | `string` | Date in the format `ISO-8601` |
|
||||||
| fee | number | Fee of the activity |
|
| `fee` | `number` | Fee of the activity |
|
||||||
| quantity | number | Quantity of the activity |
|
| `quantity` | `number` | Quantity of the activity |
|
||||||
| symbol | string | Symbol of the activity (suitable for `dataSource`) |
|
| `symbol` | `string` | Symbol of the activity (suitable for `dataSource`) |
|
||||||
| type | string | `BUY` \| `DIVIDEND` \| `FEE` \| `INTEREST` \| `ITEM` \| `LIABILITY` \| `SELL` |
|
| `type` | `string` | `BUY` \| `DIVIDEND` \| `FEE` \| `INTEREST` \| `ITEM` \| `LIABILITY` \| `SELL` |
|
||||||
| unitPrice | number | Price per unit of the activity |
|
| `unitPrice` | `number` | Price per unit of the activity |
|
||||||
|
|
||||||
#### Response
|
#### Response
|
||||||
|
|
||||||
@ -275,7 +274,7 @@ Are you building your own project? Add the `ghostfolio` topic to your _GitHub_ r
|
|||||||
|
|
||||||
Ghostfolio is **100% free** and **open source**. We encourage and support an active and healthy community that accepts contributions from the public - including you.
|
Ghostfolio is **100% free** and **open source**. We encourage and support an active and healthy community that accepts contributions from the public - including you.
|
||||||
|
|
||||||
Not sure what to work on? We have [some ideas](https://github.com/ghostfolio/ghostfolio/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22), even for [newcomers](https://github.com/ghostfolio/ghostfolio/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22). Please join the Ghostfolio [Slack](https://join.slack.com/t/ghostfolio/shared_invite/zt-vsaan64h-F_I0fEo5M0P88lP9ibCxFg) channel or post to [@ghostfolio\_](https://twitter.com/ghostfolio_) on _X_. We would love to hear from you.
|
Not sure what to work on? We have [some ideas](https://github.com/ghostfolio/ghostfolio/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22), even for [newcomers](https://github.com/ghostfolio/ghostfolio/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22). Please join the Ghostfolio [Slack](https://join.slack.com/t/ghostfolio/shared_invite/zt-vsaan64h-F_I0fEo5M0P88lP9ibCxFg) channel or post to [@ghostfolio\_](https://x.com/ghostfolio_) on _X_. We would love to hear from you.
|
||||||
|
|
||||||
If you like to support this project, get [**Ghostfolio Premium**](https://ghostfol.io/en/pricing) or [**Buy me a coffee**](https://www.buymeacoffee.com/ghostfolio).
|
If you like to support this project, get [**Ghostfolio Premium**](https://ghostfol.io/en/pricing) or [**Buy me a coffee**](https://www.buymeacoffee.com/ghostfolio).
|
||||||
|
|
||||||
|
@ -174,8 +174,8 @@ export class AccountService {
|
|||||||
ACCOUNT: filtersByAccount,
|
ACCOUNT: filtersByAccount,
|
||||||
ASSET_CLASS: filtersByAssetClass,
|
ASSET_CLASS: filtersByAssetClass,
|
||||||
TAG: filtersByTag
|
TAG: filtersByTag
|
||||||
} = groupBy(filters, (filter) => {
|
} = groupBy(filters, ({ type }) => {
|
||||||
return filter.type;
|
return type;
|
||||||
});
|
});
|
||||||
|
|
||||||
if (filtersByAccount?.length > 0) {
|
if (filtersByAccount?.length > 0) {
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
|
import { IsCurrencyCode } from '@ghostfolio/api/validators/is-currency-code';
|
||||||
|
|
||||||
import { Transform, TransformFnParams } from 'class-transformer';
|
import { Transform, TransformFnParams } from 'class-transformer';
|
||||||
import {
|
import {
|
||||||
IsBoolean,
|
IsBoolean,
|
||||||
IsISO4217CurrencyCode,
|
|
||||||
IsNumber,
|
IsNumber,
|
||||||
IsOptional,
|
IsOptional,
|
||||||
IsString,
|
IsString,
|
||||||
@ -20,7 +21,7 @@ export class CreateAccountDto {
|
|||||||
)
|
)
|
||||||
comment?: string;
|
comment?: string;
|
||||||
|
|
||||||
@IsISO4217CurrencyCode()
|
@IsCurrencyCode()
|
||||||
currency: string;
|
currency: string;
|
||||||
|
|
||||||
@IsOptional()
|
@IsOptional()
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
|
import { IsCurrencyCode } from '@ghostfolio/api/validators/is-currency-code';
|
||||||
|
|
||||||
import { Transform, TransformFnParams } from 'class-transformer';
|
import { Transform, TransformFnParams } from 'class-transformer';
|
||||||
import {
|
import {
|
||||||
IsBoolean,
|
IsBoolean,
|
||||||
IsISO4217CurrencyCode,
|
|
||||||
IsNumber,
|
IsNumber,
|
||||||
IsOptional,
|
IsOptional,
|
||||||
IsString,
|
IsString,
|
||||||
@ -20,7 +21,7 @@ export class UpdateAccountDto {
|
|||||||
)
|
)
|
||||||
comment?: string;
|
comment?: string;
|
||||||
|
|
||||||
@IsISO4217CurrencyCode()
|
@IsCurrencyCode()
|
||||||
currency: string;
|
currency: string;
|
||||||
|
|
||||||
@IsString()
|
@IsString()
|
||||||
|
@ -81,10 +81,11 @@ export class AdminController {
|
|||||||
@Post('gather/max')
|
@Post('gather/max')
|
||||||
@UseGuards(AuthGuard('jwt'), HasPermissionGuard)
|
@UseGuards(AuthGuard('jwt'), HasPermissionGuard)
|
||||||
public async gatherMax(): Promise<void> {
|
public async gatherMax(): Promise<void> {
|
||||||
const uniqueAssets = await this.dataGatheringService.getUniqueAssets();
|
const assetProfileIdentifiers =
|
||||||
|
await this.dataGatheringService.getAllAssetProfileIdentifiers();
|
||||||
|
|
||||||
await this.dataGatheringService.addJobsToQueue(
|
await this.dataGatheringService.addJobsToQueue(
|
||||||
uniqueAssets.map(({ dataSource, symbol }) => {
|
assetProfileIdentifiers.map(({ dataSource, symbol }) => {
|
||||||
return {
|
return {
|
||||||
data: {
|
data: {
|
||||||
dataSource,
|
dataSource,
|
||||||
@ -107,10 +108,11 @@ export class AdminController {
|
|||||||
@Post('gather/profile-data')
|
@Post('gather/profile-data')
|
||||||
@UseGuards(AuthGuard('jwt'), HasPermissionGuard)
|
@UseGuards(AuthGuard('jwt'), HasPermissionGuard)
|
||||||
public async gatherProfileData(): Promise<void> {
|
public async gatherProfileData(): Promise<void> {
|
||||||
const uniqueAssets = await this.dataGatheringService.getUniqueAssets();
|
const assetProfileIdentifiers =
|
||||||
|
await this.dataGatheringService.getAllAssetProfileIdentifiers();
|
||||||
|
|
||||||
await this.dataGatheringService.addJobsToQueue(
|
await this.dataGatheringService.addJobsToQueue(
|
||||||
uniqueAssets.map(({ dataSource, symbol }) => {
|
assetProfileIdentifiers.map(({ dataSource, symbol }) => {
|
||||||
return {
|
return {
|
||||||
data: {
|
data: {
|
||||||
dataSource,
|
dataSource,
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
import { BenchmarkModule } from '@ghostfolio/api/app/benchmark/benchmark.module';
|
||||||
|
import { OrderModule } from '@ghostfolio/api/app/order/order.module';
|
||||||
import { SubscriptionModule } from '@ghostfolio/api/app/subscription/subscription.module';
|
import { SubscriptionModule } from '@ghostfolio/api/app/subscription/subscription.module';
|
||||||
import { TransformDataSourceInRequestModule } from '@ghostfolio/api/interceptors/transform-data-source-in-request/transform-data-source-in-request.module';
|
import { TransformDataSourceInRequestModule } from '@ghostfolio/api/interceptors/transform-data-source-in-request/transform-data-source-in-request.module';
|
||||||
import { ApiModule } from '@ghostfolio/api/services/api/api.module';
|
import { ApiModule } from '@ghostfolio/api/services/api/api.module';
|
||||||
@ -19,11 +21,13 @@ import { QueueModule } from './queue/queue.module';
|
|||||||
@Module({
|
@Module({
|
||||||
imports: [
|
imports: [
|
||||||
ApiModule,
|
ApiModule,
|
||||||
|
BenchmarkModule,
|
||||||
ConfigurationModule,
|
ConfigurationModule,
|
||||||
DataGatheringModule,
|
DataGatheringModule,
|
||||||
DataProviderModule,
|
DataProviderModule,
|
||||||
ExchangeRateDataModule,
|
ExchangeRateDataModule,
|
||||||
MarketDataModule,
|
MarketDataModule,
|
||||||
|
OrderModule,
|
||||||
PrismaModule,
|
PrismaModule,
|
||||||
PropertyModule,
|
PropertyModule,
|
||||||
QueueModule,
|
QueueModule,
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
import { BenchmarkService } from '@ghostfolio/api/app/benchmark/benchmark.service';
|
||||||
|
import { OrderService } from '@ghostfolio/api/app/order/order.service';
|
||||||
import { SubscriptionService } from '@ghostfolio/api/app/subscription/subscription.service';
|
import { SubscriptionService } from '@ghostfolio/api/app/subscription/subscription.service';
|
||||||
import { environment } from '@ghostfolio/api/environments/environment';
|
import { environment } from '@ghostfolio/api/environments/environment';
|
||||||
import { ConfigurationService } from '@ghostfolio/api/services/configuration/configuration.service';
|
import { ConfigurationService } from '@ghostfolio/api/services/configuration/configuration.service';
|
||||||
@ -13,22 +15,25 @@ import {
|
|||||||
PROPERTY_IS_READ_ONLY_MODE,
|
PROPERTY_IS_READ_ONLY_MODE,
|
||||||
PROPERTY_IS_USER_SIGNUP_ENABLED
|
PROPERTY_IS_USER_SIGNUP_ENABLED
|
||||||
} from '@ghostfolio/common/config';
|
} from '@ghostfolio/common/config';
|
||||||
|
import { isCurrency, getCurrencyFromSymbol } from '@ghostfolio/common/helper';
|
||||||
import {
|
import {
|
||||||
AdminData,
|
AdminData,
|
||||||
AdminMarketData,
|
AdminMarketData,
|
||||||
AdminMarketDataDetails,
|
AdminMarketDataDetails,
|
||||||
AdminMarketDataItem,
|
AdminMarketDataItem,
|
||||||
|
EnhancedSymbolProfile,
|
||||||
Filter,
|
Filter,
|
||||||
UniqueAsset
|
UniqueAsset
|
||||||
} from '@ghostfolio/common/interfaces';
|
} from '@ghostfolio/common/interfaces';
|
||||||
import { MarketDataPreset } from '@ghostfolio/common/types';
|
import { MarketDataPreset } from '@ghostfolio/common/types';
|
||||||
|
|
||||||
import { BadRequestException, Injectable } from '@nestjs/common';
|
import { BadRequestException, Injectable, Logger } from '@nestjs/common';
|
||||||
import {
|
import {
|
||||||
AssetClass,
|
AssetClass,
|
||||||
AssetSubClass,
|
AssetSubClass,
|
||||||
DataSource,
|
DataSource,
|
||||||
Prisma,
|
Prisma,
|
||||||
|
PrismaClient,
|
||||||
Property,
|
Property,
|
||||||
SymbolProfile
|
SymbolProfile
|
||||||
} from '@prisma/client';
|
} from '@prisma/client';
|
||||||
@ -38,10 +43,12 @@ import { groupBy } from 'lodash';
|
|||||||
@Injectable()
|
@Injectable()
|
||||||
export class AdminService {
|
export class AdminService {
|
||||||
public constructor(
|
public constructor(
|
||||||
|
private readonly benchmarkService: BenchmarkService,
|
||||||
private readonly configurationService: ConfigurationService,
|
private readonly configurationService: ConfigurationService,
|
||||||
private readonly dataProviderService: DataProviderService,
|
private readonly dataProviderService: DataProviderService,
|
||||||
private readonly exchangeRateDataService: ExchangeRateDataService,
|
private readonly exchangeRateDataService: ExchangeRateDataService,
|
||||||
private readonly marketDataService: MarketDataService,
|
private readonly marketDataService: MarketDataService,
|
||||||
|
private readonly orderService: OrderService,
|
||||||
private readonly prismaService: PrismaService,
|
private readonly prismaService: PrismaService,
|
||||||
private readonly propertyService: PropertyService,
|
private readonly propertyService: PropertyService,
|
||||||
private readonly subscriptionService: SubscriptionService,
|
private readonly subscriptionService: SubscriptionService,
|
||||||
@ -147,7 +154,16 @@ export class AdminService {
|
|||||||
[{ symbol: 'asc' }];
|
[{ symbol: 'asc' }];
|
||||||
const where: Prisma.SymbolProfileWhereInput = {};
|
const where: Prisma.SymbolProfileWhereInput = {};
|
||||||
|
|
||||||
if (presetId === 'CURRENCIES') {
|
if (presetId === 'BENCHMARKS') {
|
||||||
|
const benchmarkAssetProfiles =
|
||||||
|
await this.benchmarkService.getBenchmarkAssetProfiles();
|
||||||
|
|
||||||
|
where.id = {
|
||||||
|
in: benchmarkAssetProfiles.map(({ id }) => {
|
||||||
|
return id;
|
||||||
|
})
|
||||||
|
};
|
||||||
|
} else if (presetId === 'CURRENCIES') {
|
||||||
return this.getMarketDataForCurrencies();
|
return this.getMarketDataForCurrencies();
|
||||||
} else if (
|
} else if (
|
||||||
presetId === 'ETF_WITHOUT_COUNTRIES' ||
|
presetId === 'ETF_WITHOUT_COUNTRIES' ||
|
||||||
@ -197,104 +213,129 @@ export class AdminService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let [assetProfiles, count] = await Promise.all([
|
const extendedPrismaClient = this.getExtendedPrismaClient();
|
||||||
this.prismaService.symbolProfile.findMany({
|
|
||||||
orderBy,
|
try {
|
||||||
skip,
|
let [assetProfiles, count] = await Promise.all([
|
||||||
take,
|
extendedPrismaClient.symbolProfile.findMany({
|
||||||
where,
|
orderBy,
|
||||||
select: {
|
skip,
|
||||||
_count: {
|
take,
|
||||||
select: { Order: true }
|
where,
|
||||||
},
|
select: {
|
||||||
assetClass: true,
|
_count: {
|
||||||
assetSubClass: true,
|
select: { Order: true }
|
||||||
comment: true,
|
},
|
||||||
countries: true,
|
assetClass: true,
|
||||||
currency: true,
|
assetSubClass: true,
|
||||||
dataSource: true,
|
comment: true,
|
||||||
id: true,
|
countries: true,
|
||||||
name: true,
|
currency: true,
|
||||||
Order: {
|
dataSource: true,
|
||||||
orderBy: [{ date: 'asc' }],
|
id: true,
|
||||||
select: { date: true },
|
isUsedByUsersWithSubscription: true,
|
||||||
take: 1
|
name: true,
|
||||||
},
|
Order: {
|
||||||
scraperConfiguration: true,
|
orderBy: [{ date: 'asc' }],
|
||||||
sectors: true,
|
select: { date: true },
|
||||||
symbol: true
|
take: 1
|
||||||
|
},
|
||||||
|
scraperConfiguration: true,
|
||||||
|
sectors: true,
|
||||||
|
symbol: true
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
this.prismaService.symbolProfile.count({ where })
|
||||||
|
]);
|
||||||
|
|
||||||
|
let marketData: AdminMarketDataItem[] = await Promise.all(
|
||||||
|
assetProfiles.map(
|
||||||
|
async ({
|
||||||
|
_count,
|
||||||
|
assetClass,
|
||||||
|
assetSubClass,
|
||||||
|
comment,
|
||||||
|
countries,
|
||||||
|
currency,
|
||||||
|
dataSource,
|
||||||
|
id,
|
||||||
|
isUsedByUsersWithSubscription,
|
||||||
|
name,
|
||||||
|
Order,
|
||||||
|
sectors,
|
||||||
|
symbol
|
||||||
|
}) => {
|
||||||
|
const countriesCount = countries
|
||||||
|
? Object.keys(countries).length
|
||||||
|
: 0;
|
||||||
|
const marketDataItemCount =
|
||||||
|
marketDataItems.find((marketDataItem) => {
|
||||||
|
return (
|
||||||
|
marketDataItem.dataSource === dataSource &&
|
||||||
|
marketDataItem.symbol === symbol
|
||||||
|
);
|
||||||
|
})?._count ?? 0;
|
||||||
|
const sectorsCount = sectors ? Object.keys(sectors).length : 0;
|
||||||
|
|
||||||
|
return {
|
||||||
|
assetClass,
|
||||||
|
assetSubClass,
|
||||||
|
comment,
|
||||||
|
currency,
|
||||||
|
countriesCount,
|
||||||
|
dataSource,
|
||||||
|
id,
|
||||||
|
name,
|
||||||
|
symbol,
|
||||||
|
marketDataItemCount,
|
||||||
|
sectorsCount,
|
||||||
|
activitiesCount: _count.Order,
|
||||||
|
date: Order?.[0]?.date,
|
||||||
|
isUsedByUsersWithSubscription: await isUsedByUsersWithSubscription
|
||||||
|
};
|
||||||
|
}
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
if (presetId) {
|
||||||
|
if (presetId === 'ETF_WITHOUT_COUNTRIES') {
|
||||||
|
marketData = marketData.filter(({ countriesCount }) => {
|
||||||
|
return countriesCount === 0;
|
||||||
|
});
|
||||||
|
} else if (presetId === 'ETF_WITHOUT_SECTORS') {
|
||||||
|
marketData = marketData.filter(({ sectorsCount }) => {
|
||||||
|
return sectorsCount === 0;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}),
|
|
||||||
this.prismaService.symbolProfile.count({ where })
|
|
||||||
]);
|
|
||||||
|
|
||||||
let marketData: AdminMarketDataItem[] = assetProfiles.map(
|
count = marketData.length;
|
||||||
({
|
|
||||||
_count,
|
|
||||||
assetClass,
|
|
||||||
assetSubClass,
|
|
||||||
comment,
|
|
||||||
countries,
|
|
||||||
currency,
|
|
||||||
dataSource,
|
|
||||||
id,
|
|
||||||
name,
|
|
||||||
Order,
|
|
||||||
sectors,
|
|
||||||
symbol
|
|
||||||
}) => {
|
|
||||||
const countriesCount = countries ? Object.keys(countries).length : 0;
|
|
||||||
const marketDataItemCount =
|
|
||||||
marketDataItems.find((marketDataItem) => {
|
|
||||||
return (
|
|
||||||
marketDataItem.dataSource === dataSource &&
|
|
||||||
marketDataItem.symbol === symbol
|
|
||||||
);
|
|
||||||
})?._count ?? 0;
|
|
||||||
const sectorsCount = sectors ? Object.keys(sectors).length : 0;
|
|
||||||
|
|
||||||
return {
|
|
||||||
assetClass,
|
|
||||||
assetSubClass,
|
|
||||||
comment,
|
|
||||||
currency,
|
|
||||||
countriesCount,
|
|
||||||
dataSource,
|
|
||||||
id,
|
|
||||||
name,
|
|
||||||
symbol,
|
|
||||||
marketDataItemCount,
|
|
||||||
sectorsCount,
|
|
||||||
activitiesCount: _count.Order,
|
|
||||||
date: Order?.[0]?.date
|
|
||||||
};
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
if (presetId) {
|
|
||||||
if (presetId === 'ETF_WITHOUT_COUNTRIES') {
|
|
||||||
marketData = marketData.filter(({ countriesCount }) => {
|
|
||||||
return countriesCount === 0;
|
|
||||||
});
|
|
||||||
} else if (presetId === 'ETF_WITHOUT_SECTORS') {
|
|
||||||
marketData = marketData.filter(({ sectorsCount }) => {
|
|
||||||
return sectorsCount === 0;
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
count = marketData.length;
|
return {
|
||||||
|
count,
|
||||||
|
marketData
|
||||||
|
};
|
||||||
|
} finally {
|
||||||
|
await extendedPrismaClient.$disconnect();
|
||||||
|
|
||||||
|
Logger.debug('Disconnect extended prisma client', 'AdminService');
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
|
||||||
count,
|
|
||||||
marketData
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public async getMarketDataBySymbol({
|
public async getMarketDataBySymbol({
|
||||||
dataSource,
|
dataSource,
|
||||||
symbol
|
symbol
|
||||||
}: UniqueAsset): Promise<AdminMarketDataDetails> {
|
}: UniqueAsset): Promise<AdminMarketDataDetails> {
|
||||||
|
let activitiesCount: EnhancedSymbolProfile['activitiesCount'] = 0;
|
||||||
|
let currency: EnhancedSymbolProfile['currency'] = '-';
|
||||||
|
let dateOfFirstActivity: EnhancedSymbolProfile['dateOfFirstActivity'];
|
||||||
|
|
||||||
|
if (isCurrency(getCurrencyFromSymbol(symbol))) {
|
||||||
|
currency = getCurrencyFromSymbol(symbol);
|
||||||
|
({ activitiesCount, dateOfFirstActivity } =
|
||||||
|
await this.orderService.getStatisticsByCurrency(currency));
|
||||||
|
}
|
||||||
|
|
||||||
const [[assetProfile], marketData] = await Promise.all([
|
const [[assetProfile], marketData] = await Promise.all([
|
||||||
this.symbolProfileService.getSymbolProfiles([
|
this.symbolProfileService.getSymbolProfiles([
|
||||||
{
|
{
|
||||||
@ -322,8 +363,11 @@ export class AdminService {
|
|||||||
return {
|
return {
|
||||||
marketData,
|
marketData,
|
||||||
assetProfile: assetProfile ?? {
|
assetProfile: assetProfile ?? {
|
||||||
symbol,
|
activitiesCount,
|
||||||
currency: '-'
|
currency,
|
||||||
|
dataSource,
|
||||||
|
dateOfFirstActivity,
|
||||||
|
symbol
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
@ -403,36 +447,97 @@ export class AdminService {
|
|||||||
return response;
|
return response;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private getExtendedPrismaClient() {
|
||||||
|
Logger.debug('Connect extended prisma client', 'AdminService');
|
||||||
|
|
||||||
|
const symbolProfileExtension = Prisma.defineExtension((client) => {
|
||||||
|
return client.$extends({
|
||||||
|
result: {
|
||||||
|
symbolProfile: {
|
||||||
|
isUsedByUsersWithSubscription: {
|
||||||
|
compute: async ({ id }) => {
|
||||||
|
const { _count } =
|
||||||
|
await this.prismaService.symbolProfile.findUnique({
|
||||||
|
select: {
|
||||||
|
_count: {
|
||||||
|
select: {
|
||||||
|
Order: {
|
||||||
|
where: {
|
||||||
|
User: {
|
||||||
|
Subscription: {
|
||||||
|
some: {
|
||||||
|
expiresAt: {
|
||||||
|
gt: new Date()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
where: {
|
||||||
|
id
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
return _count.Order > 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
return new PrismaClient().$extends(symbolProfileExtension);
|
||||||
|
}
|
||||||
|
|
||||||
private async getMarketDataForCurrencies(): Promise<AdminMarketData> {
|
private async getMarketDataForCurrencies(): Promise<AdminMarketData> {
|
||||||
const marketDataItems = await this.prismaService.marketData.groupBy({
|
const marketDataItems = await this.prismaService.marketData.groupBy({
|
||||||
_count: true,
|
_count: true,
|
||||||
by: ['dataSource', 'symbol']
|
by: ['dataSource', 'symbol']
|
||||||
});
|
});
|
||||||
|
|
||||||
const marketData: AdminMarketDataItem[] = this.exchangeRateDataService
|
const marketDataPromise: Promise<AdminMarketDataItem>[] =
|
||||||
.getCurrencyPairs()
|
this.exchangeRateDataService
|
||||||
.map(({ dataSource, symbol }) => {
|
.getCurrencyPairs()
|
||||||
const marketDataItemCount =
|
.map(async ({ dataSource, symbol }) => {
|
||||||
marketDataItems.find((marketDataItem) => {
|
let activitiesCount: EnhancedSymbolProfile['activitiesCount'] = 0;
|
||||||
return (
|
let currency: EnhancedSymbolProfile['currency'] = '-';
|
||||||
marketDataItem.dataSource === dataSource &&
|
let dateOfFirstActivity: EnhancedSymbolProfile['dateOfFirstActivity'];
|
||||||
marketDataItem.symbol === symbol
|
|
||||||
);
|
|
||||||
})?._count ?? 0;
|
|
||||||
|
|
||||||
return {
|
if (isCurrency(getCurrencyFromSymbol(symbol))) {
|
||||||
dataSource,
|
currency = getCurrencyFromSymbol(symbol);
|
||||||
marketDataItemCount,
|
({ activitiesCount, dateOfFirstActivity } =
|
||||||
symbol,
|
await this.orderService.getStatisticsByCurrency(currency));
|
||||||
assetClass: AssetClass.LIQUIDITY,
|
}
|
||||||
countriesCount: 0,
|
|
||||||
currency: symbol.replace(DEFAULT_CURRENCY, ''),
|
|
||||||
id: undefined,
|
|
||||||
name: symbol,
|
|
||||||
sectorsCount: 0
|
|
||||||
};
|
|
||||||
});
|
|
||||||
|
|
||||||
|
const marketDataItemCount =
|
||||||
|
marketDataItems.find((marketDataItem) => {
|
||||||
|
return (
|
||||||
|
marketDataItem.dataSource === dataSource &&
|
||||||
|
marketDataItem.symbol === symbol
|
||||||
|
);
|
||||||
|
})?._count ?? 0;
|
||||||
|
|
||||||
|
return {
|
||||||
|
activitiesCount,
|
||||||
|
currency,
|
||||||
|
dataSource,
|
||||||
|
marketDataItemCount,
|
||||||
|
symbol,
|
||||||
|
assetClass: AssetClass.LIQUIDITY,
|
||||||
|
assetSubClass: AssetSubClass.CASH,
|
||||||
|
countriesCount: 0,
|
||||||
|
date: dateOfFirstActivity,
|
||||||
|
id: undefined,
|
||||||
|
name: symbol,
|
||||||
|
sectorsCount: 0
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
|
const marketData = await Promise.all(marketDataPromise);
|
||||||
return { marketData, count: marketData.length };
|
return { marketData, count: marketData.length };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,8 +1,9 @@
|
|||||||
|
import { IsCurrencyCode } from '@ghostfolio/api/validators/is-currency-code';
|
||||||
|
|
||||||
import { AssetClass, AssetSubClass, Prisma } from '@prisma/client';
|
import { AssetClass, AssetSubClass, Prisma } from '@prisma/client';
|
||||||
import {
|
import {
|
||||||
IsArray,
|
IsArray,
|
||||||
IsEnum,
|
IsEnum,
|
||||||
IsISO4217CurrencyCode,
|
|
||||||
IsObject,
|
IsObject,
|
||||||
IsOptional,
|
IsOptional,
|
||||||
IsString,
|
IsString,
|
||||||
@ -26,7 +27,7 @@ export class UpdateAssetProfileDto {
|
|||||||
@IsOptional()
|
@IsOptional()
|
||||||
countries?: Prisma.InputJsonArray;
|
countries?: Prisma.InputJsonArray;
|
||||||
|
|
||||||
@IsISO4217CurrencyCode()
|
@IsCurrencyCode()
|
||||||
@IsOptional()
|
@IsOptional()
|
||||||
currency?: string;
|
currency?: string;
|
||||||
|
|
||||||
|
@ -25,6 +25,7 @@ import { AccessModule } from './access/access.module';
|
|||||||
import { AccountModule } from './account/account.module';
|
import { AccountModule } from './account/account.module';
|
||||||
import { AdminModule } from './admin/admin.module';
|
import { AdminModule } from './admin/admin.module';
|
||||||
import { AppController } from './app.controller';
|
import { AppController } from './app.controller';
|
||||||
|
import { AssetModule } from './asset/asset.module';
|
||||||
import { AuthDeviceModule } from './auth-device/auth-device.module';
|
import { AuthDeviceModule } from './auth-device/auth-device.module';
|
||||||
import { AuthModule } from './auth/auth.module';
|
import { AuthModule } from './auth/auth.module';
|
||||||
import { BenchmarkModule } from './benchmark/benchmark.module';
|
import { BenchmarkModule } from './benchmark/benchmark.module';
|
||||||
@ -51,6 +52,7 @@ import { UserModule } from './user/user.module';
|
|||||||
AdminModule,
|
AdminModule,
|
||||||
AccessModule,
|
AccessModule,
|
||||||
AccountModule,
|
AccountModule,
|
||||||
|
AssetModule,
|
||||||
AuthDeviceModule,
|
AuthDeviceModule,
|
||||||
AuthModule,
|
AuthModule,
|
||||||
BenchmarkModule,
|
BenchmarkModule,
|
||||||
|
29
apps/api/src/app/asset/asset.controller.ts
Normal file
29
apps/api/src/app/asset/asset.controller.ts
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
import { AdminService } from '@ghostfolio/api/app/admin/admin.service';
|
||||||
|
import { TransformDataSourceInRequestInterceptor } from '@ghostfolio/api/interceptors/transform-data-source-in-request/transform-data-source-in-request.interceptor';
|
||||||
|
import { TransformDataSourceInResponseInterceptor } from '@ghostfolio/api/interceptors/transform-data-source-in-response/transform-data-source-in-response.interceptor';
|
||||||
|
import type { AdminMarketDataDetails } from '@ghostfolio/common/interfaces';
|
||||||
|
|
||||||
|
import { Controller, Get, Param, UseInterceptors } from '@nestjs/common';
|
||||||
|
import { DataSource } from '@prisma/client';
|
||||||
|
import { pick } from 'lodash';
|
||||||
|
|
||||||
|
@Controller('asset')
|
||||||
|
export class AssetController {
|
||||||
|
public constructor(private readonly adminService: AdminService) {}
|
||||||
|
|
||||||
|
@Get(':dataSource/:symbol')
|
||||||
|
@UseInterceptors(TransformDataSourceInRequestInterceptor)
|
||||||
|
@UseInterceptors(TransformDataSourceInResponseInterceptor)
|
||||||
|
public async getAsset(
|
||||||
|
@Param('dataSource') dataSource: DataSource,
|
||||||
|
@Param('symbol') symbol: string
|
||||||
|
): Promise<AdminMarketDataDetails> {
|
||||||
|
const { assetProfile, marketData } =
|
||||||
|
await this.adminService.getMarketDataBySymbol({ dataSource, symbol });
|
||||||
|
|
||||||
|
return {
|
||||||
|
marketData,
|
||||||
|
assetProfile: pick(assetProfile, ['dataSource', 'name', 'symbol'])
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
17
apps/api/src/app/asset/asset.module.ts
Normal file
17
apps/api/src/app/asset/asset.module.ts
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
import { AdminModule } from '@ghostfolio/api/app/admin/admin.module';
|
||||||
|
import { TransformDataSourceInRequestModule } from '@ghostfolio/api/interceptors/transform-data-source-in-request/transform-data-source-in-request.module';
|
||||||
|
import { TransformDataSourceInResponseModule } from '@ghostfolio/api/interceptors/transform-data-source-in-response/transform-data-source-in-response.module';
|
||||||
|
|
||||||
|
import { Module } from '@nestjs/common';
|
||||||
|
|
||||||
|
import { AssetController } from './asset.controller';
|
||||||
|
|
||||||
|
@Module({
|
||||||
|
controllers: [AssetController],
|
||||||
|
imports: [
|
||||||
|
AdminModule,
|
||||||
|
TransformDataSourceInRequestModule,
|
||||||
|
TransformDataSourceInResponseModule
|
||||||
|
]
|
||||||
|
})
|
||||||
|
export class AssetModule {}
|
@ -105,7 +105,7 @@ export class BenchmarkController {
|
|||||||
@Get(':dataSource/:symbol/:startDateString')
|
@Get(':dataSource/:symbol/:startDateString')
|
||||||
@UseGuards(AuthGuard('jwt'), HasPermissionGuard)
|
@UseGuards(AuthGuard('jwt'), HasPermissionGuard)
|
||||||
@UseInterceptors(TransformDataSourceInRequestInterceptor)
|
@UseInterceptors(TransformDataSourceInRequestInterceptor)
|
||||||
public async getBenchmarkMarketDataBySymbol(
|
public async getBenchmarkMarketDataForUser(
|
||||||
@Param('dataSource') dataSource: DataSource,
|
@Param('dataSource') dataSource: DataSource,
|
||||||
@Param('startDateString') startDateString: string,
|
@Param('startDateString') startDateString: string,
|
||||||
@Param('symbol') symbol: string,
|
@Param('symbol') symbol: string,
|
||||||
@ -117,7 +117,7 @@ export class BenchmarkController {
|
|||||||
);
|
);
|
||||||
const userCurrency = this.request.user.Settings.settings.baseCurrency;
|
const userCurrency = this.request.user.Settings.settings.baseCurrency;
|
||||||
|
|
||||||
return this.benchmarkService.getMarketDataBySymbol({
|
return this.benchmarkService.getMarketDataForUser({
|
||||||
dataSource,
|
dataSource,
|
||||||
endDate,
|
endDate,
|
||||||
startDate,
|
startDate,
|
||||||
|
@ -135,7 +135,7 @@ export class BenchmarkService {
|
|||||||
Promise.all(promisesAllTimeHighs),
|
Promise.all(promisesAllTimeHighs),
|
||||||
Promise.all(promisesBenchmarkTrends)
|
Promise.all(promisesBenchmarkTrends)
|
||||||
]);
|
]);
|
||||||
let storeInCache = true;
|
let storeInCache = useCache;
|
||||||
|
|
||||||
benchmarks = allTimeHighs.map((allTimeHigh, index) => {
|
benchmarks = allTimeHighs.map((allTimeHigh, index) => {
|
||||||
const { marketPrice } =
|
const { marketPrice } =
|
||||||
@ -153,6 +153,7 @@ export class BenchmarkService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
dataSource: benchmarkAssetProfiles[index].dataSource,
|
||||||
marketCondition: this.getMarketCondition(
|
marketCondition: this.getMarketCondition(
|
||||||
performancePercentFromAllTimeHigh
|
performancePercentFromAllTimeHigh
|
||||||
),
|
),
|
||||||
@ -160,9 +161,13 @@ export class BenchmarkService {
|
|||||||
performances: {
|
performances: {
|
||||||
allTimeHigh: {
|
allTimeHigh: {
|
||||||
date: allTimeHigh?.date,
|
date: allTimeHigh?.date,
|
||||||
performancePercent: performancePercentFromAllTimeHigh
|
performancePercent:
|
||||||
|
performancePercentFromAllTimeHigh >= 0
|
||||||
|
? 0
|
||||||
|
: performancePercentFromAllTimeHigh
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
symbol: benchmarkAssetProfiles[index].symbol,
|
||||||
trend50d: benchmarkTrends[index].trend50d,
|
trend50d: benchmarkTrends[index].trend50d,
|
||||||
trend200d: benchmarkTrends[index].trend200d
|
trend200d: benchmarkTrends[index].trend200d
|
||||||
};
|
};
|
||||||
@ -213,7 +218,7 @@ export class BenchmarkService {
|
|||||||
.sort((a, b) => a.name.localeCompare(b.name));
|
.sort((a, b) => a.name.localeCompare(b.name));
|
||||||
}
|
}
|
||||||
|
|
||||||
public async getMarketDataBySymbol({
|
public async getMarketDataForUser({
|
||||||
dataSource,
|
dataSource,
|
||||||
endDate = new Date(),
|
endDate = new Date(),
|
||||||
startDate,
|
startDate,
|
||||||
@ -417,7 +422,7 @@ export class BenchmarkService {
|
|||||||
private getMarketCondition(
|
private getMarketCondition(
|
||||||
aPerformanceInPercent: number
|
aPerformanceInPercent: number
|
||||||
): Benchmark['marketCondition'] {
|
): Benchmark['marketCondition'] {
|
||||||
if (aPerformanceInPercent === 0) {
|
if (aPerformanceInPercent >= 0) {
|
||||||
return 'ALL_TIME_HIGH';
|
return 'ALL_TIME_HIGH';
|
||||||
} else if (aPerformanceInPercent <= -0.2) {
|
} else if (aPerformanceInPercent <= -0.2) {
|
||||||
return 'BEAR_MARKET';
|
return 'BEAR_MARKET';
|
||||||
|
@ -72,9 +72,13 @@ export class ImportService {
|
|||||||
})
|
})
|
||||||
]);
|
]);
|
||||||
|
|
||||||
const accounts = orders.map((order) => {
|
const accounts = orders
|
||||||
return order.Account;
|
.filter(({ Account }) => {
|
||||||
});
|
return !!Account;
|
||||||
|
})
|
||||||
|
.map(({ Account }) => {
|
||||||
|
return Account;
|
||||||
|
});
|
||||||
|
|
||||||
const Account = this.isUniqueAccount(accounts) ? accounts[0] : undefined;
|
const Account = this.isUniqueAccount(accounts) ? accounts[0] : undefined;
|
||||||
|
|
||||||
|
@ -7,7 +7,6 @@ import { ConfigurationModule } from '@ghostfolio/api/services/configuration/conf
|
|||||||
import { DataGatheringModule } from '@ghostfolio/api/services/data-gathering/data-gathering.module';
|
import { DataGatheringModule } from '@ghostfolio/api/services/data-gathering/data-gathering.module';
|
||||||
import { DataProviderModule } from '@ghostfolio/api/services/data-provider/data-provider.module';
|
import { DataProviderModule } from '@ghostfolio/api/services/data-provider/data-provider.module';
|
||||||
import { ExchangeRateDataModule } from '@ghostfolio/api/services/exchange-rate-data/exchange-rate-data.module';
|
import { ExchangeRateDataModule } from '@ghostfolio/api/services/exchange-rate-data/exchange-rate-data.module';
|
||||||
import { PrismaModule } from '@ghostfolio/api/services/prisma/prisma.module';
|
|
||||||
import { PropertyModule } from '@ghostfolio/api/services/property/property.module';
|
import { PropertyModule } from '@ghostfolio/api/services/property/property.module';
|
||||||
import { SymbolProfileModule } from '@ghostfolio/api/services/symbol-profile/symbol-profile.module';
|
import { SymbolProfileModule } from '@ghostfolio/api/services/symbol-profile/symbol-profile.module';
|
||||||
import { TagModule } from '@ghostfolio/api/services/tag/tag.module';
|
import { TagModule } from '@ghostfolio/api/services/tag/tag.module';
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
import { IsCurrencyCode } from '@ghostfolio/api/validators/is-currency-code';
|
||||||
|
import { IsAfter1970Constraint } from '@ghostfolio/common/validator-constraints/is-after-1970';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
AssetClass,
|
AssetClass,
|
||||||
AssetSubClass,
|
AssetSubClass,
|
||||||
@ -10,12 +13,12 @@ import {
|
|||||||
IsArray,
|
IsArray,
|
||||||
IsBoolean,
|
IsBoolean,
|
||||||
IsEnum,
|
IsEnum,
|
||||||
IsISO4217CurrencyCode,
|
|
||||||
IsISO8601,
|
IsISO8601,
|
||||||
IsNumber,
|
IsNumber,
|
||||||
IsOptional,
|
IsOptional,
|
||||||
IsString,
|
IsString,
|
||||||
Min
|
Min,
|
||||||
|
Validate
|
||||||
} from 'class-validator';
|
} from 'class-validator';
|
||||||
import { isString } from 'lodash';
|
import { isString } from 'lodash';
|
||||||
|
|
||||||
@ -39,10 +42,10 @@ export class CreateOrderDto {
|
|||||||
)
|
)
|
||||||
comment?: string;
|
comment?: string;
|
||||||
|
|
||||||
@IsISO4217CurrencyCode()
|
@IsCurrencyCode()
|
||||||
currency: string;
|
currency: string;
|
||||||
|
|
||||||
@IsISO4217CurrencyCode()
|
@IsCurrencyCode()
|
||||||
@IsOptional()
|
@IsOptional()
|
||||||
customCurrency?: string;
|
customCurrency?: string;
|
||||||
|
|
||||||
@ -51,6 +54,7 @@ export class CreateOrderDto {
|
|||||||
dataSource?: DataSource;
|
dataSource?: DataSource;
|
||||||
|
|
||||||
@IsISO8601()
|
@IsISO8601()
|
||||||
|
@Validate(IsAfter1970Constraint)
|
||||||
date: string;
|
date: string;
|
||||||
|
|
||||||
@IsNumber()
|
@IsNumber()
|
||||||
|
@ -66,7 +66,6 @@ export class OrderController {
|
|||||||
|
|
||||||
return this.orderService.deleteOrders({
|
return this.orderService.deleteOrders({
|
||||||
filters,
|
filters,
|
||||||
userCurrency: this.request.user.Settings.settings.baseCurrency,
|
|
||||||
userId: this.request.user.id
|
userId: this.request.user.id
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -10,7 +10,11 @@ import {
|
|||||||
GATHER_ASSET_PROFILE_PROCESS_OPTIONS
|
GATHER_ASSET_PROFILE_PROCESS_OPTIONS
|
||||||
} from '@ghostfolio/common/config';
|
} from '@ghostfolio/common/config';
|
||||||
import { getAssetProfileIdentifier } from '@ghostfolio/common/helper';
|
import { getAssetProfileIdentifier } from '@ghostfolio/common/helper';
|
||||||
import { Filter, UniqueAsset } from '@ghostfolio/common/interfaces';
|
import {
|
||||||
|
EnhancedSymbolProfile,
|
||||||
|
Filter,
|
||||||
|
UniqueAsset
|
||||||
|
} from '@ghostfolio/common/interfaces';
|
||||||
import { OrderWithAccount } from '@ghostfolio/common/types';
|
import { OrderWithAccount } from '@ghostfolio/common/types';
|
||||||
|
|
||||||
import { Injectable } from '@nestjs/common';
|
import { Injectable } from '@nestjs/common';
|
||||||
@ -42,6 +46,39 @@ export class OrderService {
|
|||||||
private readonly symbolProfileService: SymbolProfileService
|
private readonly symbolProfileService: SymbolProfileService
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
|
public async assignTags({
|
||||||
|
dataSource,
|
||||||
|
symbol,
|
||||||
|
tags,
|
||||||
|
userId
|
||||||
|
}: { tags: Tag[]; userId: string } & UniqueAsset) {
|
||||||
|
const orders = await this.prismaService.order.findMany({
|
||||||
|
where: {
|
||||||
|
userId,
|
||||||
|
SymbolProfile: {
|
||||||
|
dataSource,
|
||||||
|
symbol
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
return Promise.all(
|
||||||
|
orders.map(({ id }) =>
|
||||||
|
this.prismaService.order.update({
|
||||||
|
data: {
|
||||||
|
tags: {
|
||||||
|
// The set operation replaces all existing connections with the provided ones
|
||||||
|
set: tags.map(({ id }) => {
|
||||||
|
return { id };
|
||||||
|
})
|
||||||
|
}
|
||||||
|
},
|
||||||
|
where: { id }
|
||||||
|
})
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
public async createOrder(
|
public async createOrder(
|
||||||
data: Prisma.OrderCreateInput & {
|
data: Prisma.OrderCreateInput & {
|
||||||
accountId?: string;
|
accountId?: string;
|
||||||
@ -180,7 +217,15 @@ export class OrderService {
|
|||||||
where
|
where
|
||||||
});
|
});
|
||||||
|
|
||||||
if (['FEE', 'INTEREST', 'ITEM', 'LIABILITY'].includes(order.type)) {
|
const [symbolProfile] =
|
||||||
|
await this.symbolProfileService.getSymbolProfilesByIds([
|
||||||
|
order.symbolProfileId
|
||||||
|
]);
|
||||||
|
|
||||||
|
if (
|
||||||
|
['FEE', 'INTEREST', 'ITEM', 'LIABILITY'].includes(order.type) ||
|
||||||
|
symbolProfile.activitiesCount === 0
|
||||||
|
) {
|
||||||
await this.symbolProfileService.deleteById(order.symbolProfileId);
|
await this.symbolProfileService.deleteById(order.symbolProfileId);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -196,18 +241,16 @@ export class OrderService {
|
|||||||
|
|
||||||
public async deleteOrders({
|
public async deleteOrders({
|
||||||
filters,
|
filters,
|
||||||
userCurrency,
|
|
||||||
userId
|
userId
|
||||||
}: {
|
}: {
|
||||||
filters?: Filter[];
|
filters?: Filter[];
|
||||||
userCurrency: string;
|
|
||||||
userId: string;
|
userId: string;
|
||||||
}): Promise<number> {
|
}): Promise<number> {
|
||||||
const { activities } = await this.getOrders({
|
const { activities } = await this.getOrders({
|
||||||
filters,
|
filters,
|
||||||
userId,
|
userId,
|
||||||
userCurrency,
|
|
||||||
includeDrafts: true,
|
includeDrafts: true,
|
||||||
|
userCurrency: undefined,
|
||||||
withExcludedAccounts: true
|
withExcludedAccounts: true
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -221,6 +264,19 @@ export class OrderService {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const symbolProfiles =
|
||||||
|
await this.symbolProfileService.getSymbolProfilesByIds(
|
||||||
|
activities.map(({ symbolProfileId }) => {
|
||||||
|
return symbolProfileId;
|
||||||
|
})
|
||||||
|
);
|
||||||
|
|
||||||
|
for (const { activitiesCount, id } of symbolProfiles) {
|
||||||
|
if (activitiesCount === 0) {
|
||||||
|
await this.symbolProfileService.deleteById(id);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
this.eventEmitter.emit(
|
this.eventEmitter.emit(
|
||||||
PortfolioChangedEvent.getName(),
|
PortfolioChangedEvent.getName(),
|
||||||
new PortfolioChangedEvent({ userId })
|
new PortfolioChangedEvent({ userId })
|
||||||
@ -268,7 +324,8 @@ export class OrderService {
|
|||||||
withExcludedAccounts?: boolean;
|
withExcludedAccounts?: boolean;
|
||||||
}): Promise<Activities> {
|
}): Promise<Activities> {
|
||||||
let orderBy: Prisma.Enumerable<Prisma.OrderOrderByWithRelationInput> = [
|
let orderBy: Prisma.Enumerable<Prisma.OrderOrderByWithRelationInput> = [
|
||||||
{ date: 'asc' }
|
{ date: 'asc' },
|
||||||
|
{ id: 'asc' }
|
||||||
];
|
];
|
||||||
const where: Prisma.OrderWhereInput = { userId };
|
const where: Prisma.OrderWhereInput = { userId };
|
||||||
|
|
||||||
@ -288,10 +345,14 @@ export class OrderService {
|
|||||||
ACCOUNT: filtersByAccount,
|
ACCOUNT: filtersByAccount,
|
||||||
ASSET_CLASS: filtersByAssetClass,
|
ASSET_CLASS: filtersByAssetClass,
|
||||||
TAG: filtersByTag
|
TAG: filtersByTag
|
||||||
} = groupBy(filters, (filter) => {
|
} = groupBy(filters, ({ type }) => {
|
||||||
return filter.type;
|
return type;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const searchQuery = filters?.find(({ type }) => {
|
||||||
|
return type === 'SEARCH_QUERY';
|
||||||
|
})?.id;
|
||||||
|
|
||||||
if (filtersByAccount?.length > 0) {
|
if (filtersByAccount?.length > 0) {
|
||||||
where.accountId = {
|
where.accountId = {
|
||||||
in: filtersByAccount.map(({ id }) => {
|
in: filtersByAccount.map(({ id }) => {
|
||||||
@ -333,6 +394,30 @@ export class OrderService {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (searchQuery) {
|
||||||
|
const searchQueryWhereInput: Prisma.SymbolProfileWhereInput[] = [
|
||||||
|
{ id: { mode: 'insensitive', startsWith: searchQuery } },
|
||||||
|
{ isin: { mode: 'insensitive', startsWith: searchQuery } },
|
||||||
|
{ name: { mode: 'insensitive', startsWith: searchQuery } },
|
||||||
|
{ symbol: { mode: 'insensitive', startsWith: searchQuery } }
|
||||||
|
];
|
||||||
|
|
||||||
|
if (where.SymbolProfile) {
|
||||||
|
where.SymbolProfile = {
|
||||||
|
AND: [
|
||||||
|
where.SymbolProfile,
|
||||||
|
{
|
||||||
|
OR: searchQueryWhereInput
|
||||||
|
}
|
||||||
|
]
|
||||||
|
};
|
||||||
|
} else {
|
||||||
|
where.SymbolProfile = {
|
||||||
|
OR: searchQueryWhereInput
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (filtersByTag?.length > 0) {
|
if (filtersByTag?.length > 0) {
|
||||||
where.tags = {
|
where.tags = {
|
||||||
some: {
|
some: {
|
||||||
@ -344,7 +429,7 @@ export class OrderService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (sortColumn) {
|
if (sortColumn) {
|
||||||
orderBy = [{ [sortColumn]: sortDirection }];
|
orderBy = [{ [sortColumn]: sortDirection }, { id: sortDirection }];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (types) {
|
if (types) {
|
||||||
@ -429,6 +514,26 @@ export class OrderService {
|
|||||||
return { activities, count };
|
return { activities, count };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public async getStatisticsByCurrency(
|
||||||
|
currency: EnhancedSymbolProfile['currency']
|
||||||
|
): Promise<{
|
||||||
|
activitiesCount: EnhancedSymbolProfile['activitiesCount'];
|
||||||
|
dateOfFirstActivity: EnhancedSymbolProfile['dateOfFirstActivity'];
|
||||||
|
}> {
|
||||||
|
const { _count, _min } = await this.prismaService.order.aggregate({
|
||||||
|
_count: true,
|
||||||
|
_min: {
|
||||||
|
date: true
|
||||||
|
},
|
||||||
|
where: { SymbolProfile: { currency } }
|
||||||
|
});
|
||||||
|
|
||||||
|
return {
|
||||||
|
activitiesCount: _count as number,
|
||||||
|
dateOfFirstActivity: _min.date
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
public async order(
|
public async order(
|
||||||
orderWhereUniqueInput: Prisma.OrderWhereUniqueInput
|
orderWhereUniqueInput: Prisma.OrderWhereUniqueInput
|
||||||
): Promise<Order | null> {
|
): Promise<Order | null> {
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
import { IsCurrencyCode } from '@ghostfolio/api/validators/is-currency-code';
|
||||||
|
import { IsAfter1970Constraint } from '@ghostfolio/common/validator-constraints/is-after-1970';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
AssetClass,
|
AssetClass,
|
||||||
AssetSubClass,
|
AssetSubClass,
|
||||||
@ -9,12 +12,12 @@ import { Transform, TransformFnParams } from 'class-transformer';
|
|||||||
import {
|
import {
|
||||||
IsArray,
|
IsArray,
|
||||||
IsEnum,
|
IsEnum,
|
||||||
IsISO4217CurrencyCode,
|
|
||||||
IsISO8601,
|
IsISO8601,
|
||||||
IsNumber,
|
IsNumber,
|
||||||
IsOptional,
|
IsOptional,
|
||||||
IsString,
|
IsString,
|
||||||
Min
|
Min,
|
||||||
|
Validate
|
||||||
} from 'class-validator';
|
} from 'class-validator';
|
||||||
import { isString } from 'lodash';
|
import { isString } from 'lodash';
|
||||||
|
|
||||||
@ -38,10 +41,10 @@ export class UpdateOrderDto {
|
|||||||
)
|
)
|
||||||
comment?: string;
|
comment?: string;
|
||||||
|
|
||||||
@IsISO4217CurrencyCode()
|
@IsCurrencyCode()
|
||||||
currency: string;
|
currency: string;
|
||||||
|
|
||||||
@IsISO4217CurrencyCode()
|
@IsCurrencyCode()
|
||||||
@IsOptional()
|
@IsOptional()
|
||||||
customCurrency?: string;
|
customCurrency?: string;
|
||||||
|
|
||||||
@ -49,6 +52,7 @@ export class UpdateOrderDto {
|
|||||||
dataSource: DataSource;
|
dataSource: DataSource;
|
||||||
|
|
||||||
@IsISO8601()
|
@IsISO8601()
|
||||||
|
@Validate(IsAfter1970Constraint)
|
||||||
date: string;
|
date: string;
|
||||||
|
|
||||||
@IsNumber()
|
@IsNumber()
|
||||||
|
@ -300,6 +300,12 @@ export abstract class PortfolioCalculator {
|
|||||||
const errors: ResponseError['errors'] = [];
|
const errors: ResponseError['errors'] = [];
|
||||||
|
|
||||||
for (const item of lastTransactionPoint.items) {
|
for (const item of lastTransactionPoint.items) {
|
||||||
|
const feeInBaseCurrency = item.fee.mul(
|
||||||
|
exchangeRatesByCurrency[`${item.currency}${this.currency}`]?.[
|
||||||
|
lastTransactionPoint.date
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
const marketPriceInBaseCurrency = (
|
const marketPriceInBaseCurrency = (
|
||||||
marketSymbolMap[endDateString]?.[item.symbol] ?? item.averagePrice
|
marketSymbolMap[endDateString]?.[item.symbol] ?? item.averagePrice
|
||||||
).mul(
|
).mul(
|
||||||
@ -340,10 +346,11 @@ export abstract class PortfolioCalculator {
|
|||||||
hasAnySymbolMetricsErrors = hasAnySymbolMetricsErrors || hasErrors;
|
hasAnySymbolMetricsErrors = hasAnySymbolMetricsErrors || hasErrors;
|
||||||
|
|
||||||
positions.push({
|
positions.push({
|
||||||
dividend: totalDividend,
|
feeInBaseCurrency,
|
||||||
dividendInBaseCurrency: totalDividendInBaseCurrency,
|
|
||||||
timeWeightedInvestment,
|
timeWeightedInvestment,
|
||||||
timeWeightedInvestmentWithCurrencyEffect,
|
timeWeightedInvestmentWithCurrencyEffect,
|
||||||
|
dividend: totalDividend,
|
||||||
|
dividendInBaseCurrency: totalDividendInBaseCurrency,
|
||||||
averagePrice: item.averagePrice,
|
averagePrice: item.averagePrice,
|
||||||
currency: item.currency,
|
currency: item.currency,
|
||||||
dataSource: item.dataSource,
|
dataSource: item.dataSource,
|
||||||
|
@ -168,6 +168,7 @@ describe('PortfolioCalculator', () => {
|
|||||||
dividend: new Big('0'),
|
dividend: new Big('0'),
|
||||||
dividendInBaseCurrency: new Big('0'),
|
dividendInBaseCurrency: new Big('0'),
|
||||||
fee: new Big('3.2'),
|
fee: new Big('3.2'),
|
||||||
|
feeInBaseCurrency: new Big('3.2'),
|
||||||
firstBuyDate: '2021-11-22',
|
firstBuyDate: '2021-11-22',
|
||||||
grossPerformance: new Big('-12.6'),
|
grossPerformance: new Big('-12.6'),
|
||||||
grossPerformancePercentage: new Big('-0.04408677396780965649'),
|
grossPerformancePercentage: new Big('-0.04408677396780965649'),
|
||||||
|
@ -153,6 +153,7 @@ describe('PortfolioCalculator', () => {
|
|||||||
dividend: new Big('0'),
|
dividend: new Big('0'),
|
||||||
dividendInBaseCurrency: new Big('0'),
|
dividendInBaseCurrency: new Big('0'),
|
||||||
fee: new Big('3.2'),
|
fee: new Big('3.2'),
|
||||||
|
feeInBaseCurrency: new Big('3.2'),
|
||||||
firstBuyDate: '2021-11-22',
|
firstBuyDate: '2021-11-22',
|
||||||
grossPerformance: new Big('-12.6'),
|
grossPerformance: new Big('-12.6'),
|
||||||
grossPerformancePercentage: new Big('-0.0440867739678096571'),
|
grossPerformancePercentage: new Big('-0.0440867739678096571'),
|
||||||
|
@ -138,6 +138,7 @@ describe('PortfolioCalculator', () => {
|
|||||||
dividend: new Big('0'),
|
dividend: new Big('0'),
|
||||||
dividendInBaseCurrency: new Big('0'),
|
dividendInBaseCurrency: new Big('0'),
|
||||||
fee: new Big('1.55'),
|
fee: new Big('1.55'),
|
||||||
|
feeInBaseCurrency: new Big('1.55'),
|
||||||
firstBuyDate: '2021-11-30',
|
firstBuyDate: '2021-11-30',
|
||||||
grossPerformance: new Big('24.6'),
|
grossPerformance: new Big('24.6'),
|
||||||
grossPerformancePercentage: new Big('0.09004392386530014641'),
|
grossPerformancePercentage: new Big('0.09004392386530014641'),
|
||||||
|
@ -166,6 +166,7 @@ describe('PortfolioCalculator', () => {
|
|||||||
dividend: new Big('0'),
|
dividend: new Big('0'),
|
||||||
dividendInBaseCurrency: new Big('0'),
|
dividendInBaseCurrency: new Big('0'),
|
||||||
fee: new Big('0'),
|
fee: new Big('0'),
|
||||||
|
feeInBaseCurrency: new Big('0'),
|
||||||
firstBuyDate: '2015-01-01',
|
firstBuyDate: '2015-01-01',
|
||||||
grossPerformance: new Big('27172.74'),
|
grossPerformance: new Big('27172.74'),
|
||||||
grossPerformancePercentage: new Big('42.41978276196153750666'),
|
grossPerformancePercentage: new Big('42.41978276196153750666'),
|
||||||
|
@ -123,6 +123,7 @@ describe('PortfolioCalculator', () => {
|
|||||||
dividend: new Big('0'),
|
dividend: new Big('0'),
|
||||||
dividendInBaseCurrency: new Big('0'),
|
dividendInBaseCurrency: new Big('0'),
|
||||||
fee: new Big('49'),
|
fee: new Big('49'),
|
||||||
|
feeInBaseCurrency: new Big('49'),
|
||||||
firstBuyDate: '2021-09-01',
|
firstBuyDate: '2021-09-01',
|
||||||
grossPerformance: null,
|
grossPerformance: null,
|
||||||
grossPerformancePercentage: null,
|
grossPerformancePercentage: null,
|
||||||
|
@ -151,6 +151,7 @@ describe('PortfolioCalculator', () => {
|
|||||||
dividend: new Big('0'),
|
dividend: new Big('0'),
|
||||||
dividendInBaseCurrency: new Big('0'),
|
dividendInBaseCurrency: new Big('0'),
|
||||||
fee: new Big('1'),
|
fee: new Big('1'),
|
||||||
|
feeInBaseCurrency: new Big('0.9238'),
|
||||||
firstBuyDate: '2023-01-03',
|
firstBuyDate: '2023-01-03',
|
||||||
grossPerformance: new Big('27.33'),
|
grossPerformance: new Big('27.33'),
|
||||||
grossPerformancePercentage: new Big('0.3066651705565529623'),
|
grossPerformancePercentage: new Big('0.3066651705565529623'),
|
||||||
@ -177,7 +178,7 @@ describe('PortfolioCalculator', () => {
|
|||||||
valueInBaseCurrency: new Big('103.10483')
|
valueInBaseCurrency: new Big('103.10483')
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
totalFeesWithCurrencyEffect: new Big('1'),
|
totalFeesWithCurrencyEffect: new Big('0.9238'),
|
||||||
totalInterestWithCurrencyEffect: new Big('0'),
|
totalInterestWithCurrencyEffect: new Big('0'),
|
||||||
totalInvestment: new Big('89.12'),
|
totalInvestment: new Big('89.12'),
|
||||||
totalInvestmentWithCurrencyEffect: new Big('82.329056'),
|
totalInvestmentWithCurrencyEffect: new Big('82.329056'),
|
||||||
|
@ -123,6 +123,7 @@ describe('PortfolioCalculator', () => {
|
|||||||
dividend: new Big('0'),
|
dividend: new Big('0'),
|
||||||
dividendInBaseCurrency: new Big('0'),
|
dividendInBaseCurrency: new Big('0'),
|
||||||
fee: new Big('0'),
|
fee: new Big('0'),
|
||||||
|
feeInBaseCurrency: new Big('0'),
|
||||||
firstBuyDate: '2022-01-01',
|
firstBuyDate: '2022-01-01',
|
||||||
grossPerformance: null,
|
grossPerformance: null,
|
||||||
grossPerformancePercentage: null,
|
grossPerformancePercentage: null,
|
||||||
|
@ -153,6 +153,7 @@ describe('PortfolioCalculator', () => {
|
|||||||
dividend: new Big('0'),
|
dividend: new Big('0'),
|
||||||
dividendInBaseCurrency: new Big('0'),
|
dividendInBaseCurrency: new Big('0'),
|
||||||
fee: new Big('4.25'),
|
fee: new Big('4.25'),
|
||||||
|
feeInBaseCurrency: new Big('4.25'),
|
||||||
firstBuyDate: '2022-03-07',
|
firstBuyDate: '2022-03-07',
|
||||||
grossPerformance: new Big('21.93'),
|
grossPerformance: new Big('21.93'),
|
||||||
grossPerformancePercentage: new Big('0.15113417083448194384'),
|
grossPerformancePercentage: new Big('0.15113417083448194384'),
|
||||||
|
@ -183,6 +183,7 @@ describe('PortfolioCalculator', () => {
|
|||||||
dividend: new Big('0'),
|
dividend: new Big('0'),
|
||||||
dividendInBaseCurrency: new Big('0'),
|
dividendInBaseCurrency: new Big('0'),
|
||||||
fee: new Big('0'),
|
fee: new Big('0'),
|
||||||
|
feeInBaseCurrency: new Big('0'),
|
||||||
firstBuyDate: '2022-03-07',
|
firstBuyDate: '2022-03-07',
|
||||||
grossPerformance: new Big('19.86'),
|
grossPerformance: new Big('19.86'),
|
||||||
grossPerformancePercentage: new Big('0.13100263852242744063'),
|
grossPerformancePercentage: new Big('0.13100263852242744063'),
|
||||||
|
@ -34,9 +34,9 @@ export class TWRPortfolioCalculator extends PortfolioCalculator {
|
|||||||
let totalTimeWeightedInvestmentWithCurrencyEffect = new Big(0);
|
let totalTimeWeightedInvestmentWithCurrencyEffect = new Big(0);
|
||||||
|
|
||||||
for (const currentPosition of positions) {
|
for (const currentPosition of positions) {
|
||||||
if (currentPosition.fee) {
|
if (currentPosition.feeInBaseCurrency) {
|
||||||
totalFeesWithCurrencyEffect = totalFeesWithCurrencyEffect.plus(
|
totalFeesWithCurrencyEffect = totalFeesWithCurrencyEffect.plus(
|
||||||
currentPosition.fee
|
currentPosition.feeInBaseCurrency
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
import { AccessService } from '@ghostfolio/api/app/access/access.service';
|
import { AccessService } from '@ghostfolio/api/app/access/access.service';
|
||||||
import { OrderService } from '@ghostfolio/api/app/order/order.service';
|
import { OrderService } from '@ghostfolio/api/app/order/order.service';
|
||||||
import { UserService } from '@ghostfolio/api/app/user/user.service';
|
import { UserService } from '@ghostfolio/api/app/user/user.service';
|
||||||
|
import { HasPermission } from '@ghostfolio/api/decorators/has-permission.decorator';
|
||||||
import { HasPermissionGuard } from '@ghostfolio/api/guards/has-permission.guard';
|
import { HasPermissionGuard } from '@ghostfolio/api/guards/has-permission.guard';
|
||||||
import {
|
import {
|
||||||
hasNotDefinedValuesInObject,
|
hasNotDefinedValuesInObject,
|
||||||
@ -29,7 +30,8 @@ import {
|
|||||||
} from '@ghostfolio/common/interfaces';
|
} from '@ghostfolio/common/interfaces';
|
||||||
import {
|
import {
|
||||||
hasReadRestrictedAccessPermission,
|
hasReadRestrictedAccessPermission,
|
||||||
isRestrictedView
|
isRestrictedView,
|
||||||
|
permissions
|
||||||
} from '@ghostfolio/common/permissions';
|
} from '@ghostfolio/common/permissions';
|
||||||
import type {
|
import type {
|
||||||
DateRange,
|
DateRange,
|
||||||
@ -38,12 +40,14 @@ import type {
|
|||||||
} from '@ghostfolio/common/types';
|
} from '@ghostfolio/common/types';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
|
Body,
|
||||||
Controller,
|
Controller,
|
||||||
Get,
|
Get,
|
||||||
Headers,
|
Headers,
|
||||||
HttpException,
|
HttpException,
|
||||||
Inject,
|
Inject,
|
||||||
Param,
|
Param,
|
||||||
|
Put,
|
||||||
Query,
|
Query,
|
||||||
UseGuards,
|
UseGuards,
|
||||||
UseInterceptors,
|
UseInterceptors,
|
||||||
@ -51,12 +55,13 @@ import {
|
|||||||
} from '@nestjs/common';
|
} from '@nestjs/common';
|
||||||
import { REQUEST } from '@nestjs/core';
|
import { REQUEST } from '@nestjs/core';
|
||||||
import { AuthGuard } from '@nestjs/passport';
|
import { AuthGuard } from '@nestjs/passport';
|
||||||
import { AssetClass, AssetSubClass } from '@prisma/client';
|
import { AssetClass, AssetSubClass, DataSource } from '@prisma/client';
|
||||||
import { Big } from 'big.js';
|
import { Big } from 'big.js';
|
||||||
import { StatusCodes, getReasonPhrase } from 'http-status-codes';
|
import { StatusCodes, getReasonPhrase } from 'http-status-codes';
|
||||||
|
|
||||||
import { PortfolioHoldingDetail } from './interfaces/portfolio-holding-detail.interface';
|
import { PortfolioHoldingDetail } from './interfaces/portfolio-holding-detail.interface';
|
||||||
import { PortfolioService } from './portfolio.service';
|
import { PortfolioService } from './portfolio.service';
|
||||||
|
import { UpdateHoldingTagsDto } from './update-holding-tags.dto';
|
||||||
|
|
||||||
@Controller('portfolio')
|
@Controller('portfolio')
|
||||||
export class PortfolioController {
|
export class PortfolioController {
|
||||||
@ -496,9 +501,6 @@ export class PortfolioController {
|
|||||||
@Param('accessId') accessId
|
@Param('accessId') accessId
|
||||||
): Promise<PortfolioPublicDetails> {
|
): Promise<PortfolioPublicDetails> {
|
||||||
const access = await this.accessService.access({ id: accessId });
|
const access = await this.accessService.access({ id: accessId });
|
||||||
const user = await this.userService.user({
|
|
||||||
id: access.userId
|
|
||||||
});
|
|
||||||
|
|
||||||
if (!access) {
|
if (!access) {
|
||||||
throw new HttpException(
|
throw new HttpException(
|
||||||
@ -508,6 +510,11 @@ export class PortfolioController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let hasDetails = true;
|
let hasDetails = true;
|
||||||
|
|
||||||
|
const user = await this.userService.user({
|
||||||
|
id: access.userId
|
||||||
|
});
|
||||||
|
|
||||||
if (this.configurationService.get('ENABLE_FEATURE_SUBSCRIPTION')) {
|
if (this.configurationService.get('ENABLE_FEATURE_SUBSCRIPTION')) {
|
||||||
hasDetails = user.subscription.type === 'Premium';
|
hasDetails = user.subscription.type === 'Premium';
|
||||||
}
|
}
|
||||||
@ -564,23 +571,23 @@ export class PortfolioController {
|
|||||||
@UseGuards(AuthGuard('jwt'), HasPermissionGuard)
|
@UseGuards(AuthGuard('jwt'), HasPermissionGuard)
|
||||||
public async getPosition(
|
public async getPosition(
|
||||||
@Headers(HEADER_KEY_IMPERSONATION.toLowerCase()) impersonationId: string,
|
@Headers(HEADER_KEY_IMPERSONATION.toLowerCase()) impersonationId: string,
|
||||||
@Param('dataSource') dataSource,
|
@Param('dataSource') dataSource: DataSource,
|
||||||
@Param('symbol') symbol
|
@Param('symbol') symbol: string
|
||||||
): Promise<PortfolioHoldingDetail> {
|
): Promise<PortfolioHoldingDetail> {
|
||||||
const position = await this.portfolioService.getPosition(
|
const holding = await this.portfolioService.getPosition(
|
||||||
dataSource,
|
dataSource,
|
||||||
impersonationId,
|
impersonationId,
|
||||||
symbol
|
symbol
|
||||||
);
|
);
|
||||||
|
|
||||||
if (position) {
|
if (!holding) {
|
||||||
return position;
|
throw new HttpException(
|
||||||
|
getReasonPhrase(StatusCodes.NOT_FOUND),
|
||||||
|
StatusCodes.NOT_FOUND
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
throw new HttpException(
|
return holding;
|
||||||
getReasonPhrase(StatusCodes.NOT_FOUND),
|
|
||||||
StatusCodes.NOT_FOUND
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Get('report')
|
@Get('report')
|
||||||
@ -603,4 +610,36 @@ export class PortfolioController {
|
|||||||
|
|
||||||
return report;
|
return report;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@HasPermission(permissions.updateOrder)
|
||||||
|
@Put('position/:dataSource/:symbol/tags')
|
||||||
|
@UseInterceptors(TransformDataSourceInRequestInterceptor)
|
||||||
|
@UseGuards(AuthGuard('jwt'), HasPermissionGuard)
|
||||||
|
public async updateHoldingTags(
|
||||||
|
@Body() data: UpdateHoldingTagsDto,
|
||||||
|
@Headers(HEADER_KEY_IMPERSONATION.toLowerCase()) impersonationId: string,
|
||||||
|
@Param('dataSource') dataSource: DataSource,
|
||||||
|
@Param('symbol') symbol: string
|
||||||
|
): Promise<void> {
|
||||||
|
const holding = await this.portfolioService.getPosition(
|
||||||
|
dataSource,
|
||||||
|
impersonationId,
|
||||||
|
symbol
|
||||||
|
);
|
||||||
|
|
||||||
|
if (!holding) {
|
||||||
|
throw new HttpException(
|
||||||
|
getReasonPhrase(StatusCodes.NOT_FOUND),
|
||||||
|
StatusCodes.NOT_FOUND
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
await this.portfolioService.updateTags({
|
||||||
|
dataSource,
|
||||||
|
impersonationId,
|
||||||
|
symbol,
|
||||||
|
tags: data.tags,
|
||||||
|
userId: this.request.user.id
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,78 +0,0 @@
|
|||||||
import { Big } from 'big.js';
|
|
||||||
|
|
||||||
import { PortfolioService } from './portfolio.service';
|
|
||||||
|
|
||||||
describe('PortfolioService', () => {
|
|
||||||
let portfolioService: PortfolioService;
|
|
||||||
|
|
||||||
beforeAll(async () => {
|
|
||||||
portfolioService = new PortfolioService(
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('annualized performance percentage', () => {
|
|
||||||
it('Get annualized performance', async () => {
|
|
||||||
expect(
|
|
||||||
portfolioService
|
|
||||||
.getAnnualizedPerformancePercent({
|
|
||||||
daysInMarket: NaN, // differenceInDays of date-fns returns NaN for the same day
|
|
||||||
netPerformancePercentage: new Big(0)
|
|
||||||
})
|
|
||||||
.toNumber()
|
|
||||||
).toEqual(0);
|
|
||||||
|
|
||||||
expect(
|
|
||||||
portfolioService
|
|
||||||
.getAnnualizedPerformancePercent({
|
|
||||||
daysInMarket: 0,
|
|
||||||
netPerformancePercentage: new Big(0)
|
|
||||||
})
|
|
||||||
.toNumber()
|
|
||||||
).toEqual(0);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Source: https://www.readyratios.com/reference/analysis/annualized_rate.html
|
|
||||||
*/
|
|
||||||
expect(
|
|
||||||
portfolioService
|
|
||||||
.getAnnualizedPerformancePercent({
|
|
||||||
daysInMarket: 65, // < 1 year
|
|
||||||
netPerformancePercentage: new Big(0.1025)
|
|
||||||
})
|
|
||||||
.toNumber()
|
|
||||||
).toBeCloseTo(0.729705);
|
|
||||||
|
|
||||||
expect(
|
|
||||||
portfolioService
|
|
||||||
.getAnnualizedPerformancePercent({
|
|
||||||
daysInMarket: 365, // 1 year
|
|
||||||
netPerformancePercentage: new Big(0.05)
|
|
||||||
})
|
|
||||||
.toNumber()
|
|
||||||
).toBeCloseTo(0.05);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Source: https://www.investopedia.com/terms/a/annualized-total-return.asp#annualized-return-formula-and-calculation
|
|
||||||
*/
|
|
||||||
expect(
|
|
||||||
portfolioService
|
|
||||||
.getAnnualizedPerformancePercent({
|
|
||||||
daysInMarket: 575, // > 1 year
|
|
||||||
netPerformancePercentage: new Big(0.2374)
|
|
||||||
})
|
|
||||||
.toNumber()
|
|
||||||
).toBeCloseTo(0.145);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
@ -18,6 +18,7 @@ import { DataProviderService } from '@ghostfolio/api/services/data-provider/data
|
|||||||
import { ExchangeRateDataService } from '@ghostfolio/api/services/exchange-rate-data/exchange-rate-data.service';
|
import { ExchangeRateDataService } from '@ghostfolio/api/services/exchange-rate-data/exchange-rate-data.service';
|
||||||
import { ImpersonationService } from '@ghostfolio/api/services/impersonation/impersonation.service';
|
import { ImpersonationService } from '@ghostfolio/api/services/impersonation/impersonation.service';
|
||||||
import { SymbolProfileService } from '@ghostfolio/api/services/symbol-profile/symbol-profile.service';
|
import { SymbolProfileService } from '@ghostfolio/api/services/symbol-profile/symbol-profile.service';
|
||||||
|
import { getAnnualizedPerformancePercent } from '@ghostfolio/common/calculation-helper';
|
||||||
import {
|
import {
|
||||||
DEFAULT_CURRENCY,
|
DEFAULT_CURRENCY,
|
||||||
EMERGENCY_FUND_TAG_ID,
|
EMERGENCY_FUND_TAG_ID,
|
||||||
@ -58,7 +59,8 @@ import {
|
|||||||
DataSource,
|
DataSource,
|
||||||
Order,
|
Order,
|
||||||
Platform,
|
Platform,
|
||||||
Prisma
|
Prisma,
|
||||||
|
Tag
|
||||||
} from '@prisma/client';
|
} from '@prisma/client';
|
||||||
import { Big } from 'big.js';
|
import { Big } from 'big.js';
|
||||||
import {
|
import {
|
||||||
@ -70,7 +72,7 @@ import {
|
|||||||
parseISO,
|
parseISO,
|
||||||
set
|
set
|
||||||
} from 'date-fns';
|
} from 'date-fns';
|
||||||
import { isEmpty, isNumber, last, uniq, uniqBy } from 'lodash';
|
import { isEmpty, uniq, uniqBy } from 'lodash';
|
||||||
|
|
||||||
import { PortfolioCalculator } from './calculator/portfolio-calculator';
|
import { PortfolioCalculator } from './calculator/portfolio-calculator';
|
||||||
import {
|
import {
|
||||||
@ -206,24 +208,6 @@ export class PortfolioService {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
public getAnnualizedPerformancePercent({
|
|
||||||
daysInMarket,
|
|
||||||
netPerformancePercentage
|
|
||||||
}: {
|
|
||||||
daysInMarket: number;
|
|
||||||
netPerformancePercentage: Big;
|
|
||||||
}): Big {
|
|
||||||
if (isNumber(daysInMarket) && daysInMarket > 0) {
|
|
||||||
const exponent = new Big(365).div(daysInMarket).toNumber();
|
|
||||||
|
|
||||||
return new Big(
|
|
||||||
Math.pow(netPerformancePercentage.plus(1).toNumber(), exponent)
|
|
||||||
).minus(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
return new Big(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
public async getDividends({
|
public async getDividends({
|
||||||
activities,
|
activities,
|
||||||
groupBy
|
groupBy
|
||||||
@ -499,7 +483,17 @@ export class PortfolioService {
|
|||||||
grossPerformancePercentageWithCurrencyEffect?.toNumber() ?? 0,
|
grossPerformancePercentageWithCurrencyEffect?.toNumber() ?? 0,
|
||||||
grossPerformanceWithCurrencyEffect:
|
grossPerformanceWithCurrencyEffect:
|
||||||
grossPerformanceWithCurrencyEffect?.toNumber() ?? 0,
|
grossPerformanceWithCurrencyEffect?.toNumber() ?? 0,
|
||||||
holdings: assetProfile.holdings,
|
holdings: assetProfile.holdings.map(
|
||||||
|
({ allocationInPercentage, name }) => {
|
||||||
|
return {
|
||||||
|
allocationInPercentage,
|
||||||
|
name,
|
||||||
|
valueInBaseCurrency: valueInBaseCurrency
|
||||||
|
.mul(allocationInPercentage)
|
||||||
|
.toNumber()
|
||||||
|
};
|
||||||
|
}
|
||||||
|
),
|
||||||
investment: investment.toNumber(),
|
investment: investment.toNumber(),
|
||||||
marketState: dataProviderResponse?.marketState ?? 'delayed',
|
marketState: dataProviderResponse?.marketState ?? 'delayed',
|
||||||
name: assetProfile.name,
|
name: assetProfile.name,
|
||||||
@ -703,7 +697,7 @@ export class PortfolioService {
|
|||||||
return Account;
|
return Account;
|
||||||
});
|
});
|
||||||
|
|
||||||
const dividendYieldPercent = this.getAnnualizedPerformancePercent({
|
const dividendYieldPercent = getAnnualizedPerformancePercent({
|
||||||
daysInMarket: differenceInDays(new Date(), parseDate(firstBuyDate)),
|
daysInMarket: differenceInDays(new Date(), parseDate(firstBuyDate)),
|
||||||
netPerformancePercentage: timeWeightedInvestment.eq(0)
|
netPerformancePercentage: timeWeightedInvestment.eq(0)
|
||||||
? new Big(0)
|
? new Big(0)
|
||||||
@ -711,7 +705,7 @@ export class PortfolioService {
|
|||||||
});
|
});
|
||||||
|
|
||||||
const dividendYieldPercentWithCurrencyEffect =
|
const dividendYieldPercentWithCurrencyEffect =
|
||||||
this.getAnnualizedPerformancePercent({
|
getAnnualizedPerformancePercent({
|
||||||
daysInMarket: differenceInDays(new Date(), parseDate(firstBuyDate)),
|
daysInMarket: differenceInDays(new Date(), parseDate(firstBuyDate)),
|
||||||
netPerformancePercentage: timeWeightedInvestmentWithCurrencyEffect.eq(
|
netPerformancePercentage: timeWeightedInvestmentWithCurrencyEffect.eq(
|
||||||
0
|
0
|
||||||
@ -1311,6 +1305,24 @@ export class PortfolioService {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public async updateTags({
|
||||||
|
dataSource,
|
||||||
|
impersonationId,
|
||||||
|
symbol,
|
||||||
|
tags,
|
||||||
|
userId
|
||||||
|
}: {
|
||||||
|
dataSource: DataSource;
|
||||||
|
impersonationId: string;
|
||||||
|
symbol: string;
|
||||||
|
tags: Tag[];
|
||||||
|
userId: string;
|
||||||
|
}) {
|
||||||
|
userId = await this.getUserId(impersonationId, userId);
|
||||||
|
|
||||||
|
await this.orderService.assignTags({ dataSource, symbol, tags, userId });
|
||||||
|
}
|
||||||
|
|
||||||
private async getCashPositions({
|
private async getCashPositions({
|
||||||
cashDetails,
|
cashDetails,
|
||||||
userCurrency,
|
userCurrency,
|
||||||
@ -1714,13 +1726,13 @@ export class PortfolioService {
|
|||||||
|
|
||||||
const daysInMarket = differenceInDays(new Date(), firstOrderDate);
|
const daysInMarket = differenceInDays(new Date(), firstOrderDate);
|
||||||
|
|
||||||
const annualizedPerformancePercent = this.getAnnualizedPerformancePercent({
|
const annualizedPerformancePercent = getAnnualizedPerformancePercent({
|
||||||
daysInMarket,
|
daysInMarket,
|
||||||
netPerformancePercentage: new Big(netPerformancePercentage)
|
netPerformancePercentage: new Big(netPerformancePercentage)
|
||||||
})?.toNumber();
|
})?.toNumber();
|
||||||
|
|
||||||
const annualizedPerformancePercentWithCurrencyEffect =
|
const annualizedPerformancePercentWithCurrencyEffect =
|
||||||
this.getAnnualizedPerformancePercent({
|
getAnnualizedPerformancePercent({
|
||||||
daysInMarket,
|
daysInMarket,
|
||||||
netPerformancePercentage: new Big(
|
netPerformancePercentage: new Big(
|
||||||
netPerformancePercentageWithCurrencyEffect
|
netPerformancePercentageWithCurrencyEffect
|
||||||
|
7
apps/api/src/app/portfolio/update-holding-tags.dto.ts
Normal file
7
apps/api/src/app/portfolio/update-holding-tags.dto.ts
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
import { Tag } from '@prisma/client';
|
||||||
|
import { IsArray } from 'class-validator';
|
||||||
|
|
||||||
|
export class UpdateHoldingTagsDto {
|
||||||
|
@IsArray()
|
||||||
|
tags: Tag[];
|
||||||
|
}
|
@ -1,8 +1,10 @@
|
|||||||
|
import { ConfigurationService } from '@ghostfolio/api/services/configuration/configuration.service';
|
||||||
import {
|
import {
|
||||||
DATE_FORMAT,
|
DATE_FORMAT,
|
||||||
getYesterday,
|
getYesterday,
|
||||||
interpolate
|
interpolate
|
||||||
} from '@ghostfolio/common/helper';
|
} from '@ghostfolio/common/helper';
|
||||||
|
import { personalFinanceTools } from '@ghostfolio/common/personal-finance-tools';
|
||||||
|
|
||||||
import { Controller, Get, Res, VERSION_NEUTRAL, Version } from '@nestjs/common';
|
import { Controller, Get, Res, VERSION_NEUTRAL, Version } from '@nestjs/common';
|
||||||
import { format } from 'date-fns';
|
import { format } from 'date-fns';
|
||||||
@ -14,7 +16,9 @@ import * as path from 'path';
|
|||||||
export class SitemapController {
|
export class SitemapController {
|
||||||
public sitemapXml = '';
|
public sitemapXml = '';
|
||||||
|
|
||||||
public constructor() {
|
public constructor(
|
||||||
|
private readonly configurationService: ConfigurationService
|
||||||
|
) {
|
||||||
try {
|
try {
|
||||||
this.sitemapXml = fs.readFileSync(
|
this.sitemapXml = fs.readFileSync(
|
||||||
path.join(__dirname, 'assets', 'sitemap.xml'),
|
path.join(__dirname, 'assets', 'sitemap.xml'),
|
||||||
@ -25,11 +29,51 @@ export class SitemapController {
|
|||||||
|
|
||||||
@Get()
|
@Get()
|
||||||
@Version(VERSION_NEUTRAL)
|
@Version(VERSION_NEUTRAL)
|
||||||
public async flushCache(@Res() response: Response): Promise<void> {
|
public async getSitemapXml(@Res() response: Response): Promise<void> {
|
||||||
|
const currentDate = format(getYesterday(), DATE_FORMAT);
|
||||||
|
|
||||||
response.setHeader('content-type', 'application/xml');
|
response.setHeader('content-type', 'application/xml');
|
||||||
response.send(
|
response.send(
|
||||||
interpolate(this.sitemapXml, {
|
interpolate(this.sitemapXml, {
|
||||||
currentDate: format(getYesterday(), DATE_FORMAT)
|
currentDate,
|
||||||
|
personalFinanceTools: this.configurationService.get(
|
||||||
|
'ENABLE_FEATURE_SUBSCRIPTION'
|
||||||
|
)
|
||||||
|
? personalFinanceTools
|
||||||
|
.map(({ alias, key }) => {
|
||||||
|
return [
|
||||||
|
'<url>',
|
||||||
|
` <loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-${alias ?? key}</loc>`,
|
||||||
|
` <lastmod>${currentDate}T00:00:00+00:00</lastmod>`,
|
||||||
|
'</url>',
|
||||||
|
'<url>',
|
||||||
|
` <loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-${alias ?? key}</loc>`,
|
||||||
|
` <lastmod>${currentDate}T00:00:00+00:00</lastmod>`,
|
||||||
|
'</url>',
|
||||||
|
'<url>',
|
||||||
|
` <loc>https://ghostfol.io/es/recursos/personal-finance-tools/alternativa-de-software-libre-a-${alias ?? key}</loc>`,
|
||||||
|
` <lastmod>${currentDate}T00:00:00+00:00</lastmod>`,
|
||||||
|
'</url>',
|
||||||
|
'<url>',
|
||||||
|
` <loc>https://ghostfol.io/fr/ressources/personal-finance-tools/alternative-open-source-a-${alias ?? key}</loc>`,
|
||||||
|
` <lastmod>${currentDate}T00:00:00+00:00</lastmod>`,
|
||||||
|
'</url>',
|
||||||
|
'<url>',
|
||||||
|
` <loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-${alias ?? key}</loc>`,
|
||||||
|
` <lastmod>${currentDate}T00:00:00+00:00</lastmod>`,
|
||||||
|
'</url>',
|
||||||
|
'<url>',
|
||||||
|
` <loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-${alias ?? key}</loc>`,
|
||||||
|
` <lastmod>${currentDate}T00:00:00+00:00</lastmod>`,
|
||||||
|
'</url>',
|
||||||
|
'<url>',
|
||||||
|
` <loc>https://ghostfol.io/pt/recursos/personal-finance-tools/alternativa-de-software-livre-ao-${alias ?? key}</loc>`,
|
||||||
|
` <lastmod>${currentDate}T00:00:00+00:00</lastmod>`,
|
||||||
|
'</url>'
|
||||||
|
].join('\n');
|
||||||
|
})
|
||||||
|
.join('\n')
|
||||||
|
: ''
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,11 @@
|
|||||||
|
import { ConfigurationModule } from '@ghostfolio/api/services/configuration/configuration.module';
|
||||||
|
|
||||||
import { Module } from '@nestjs/common';
|
import { Module } from '@nestjs/common';
|
||||||
|
|
||||||
import { SitemapController } from './sitemap.controller';
|
import { SitemapController } from './sitemap.controller';
|
||||||
|
|
||||||
@Module({
|
@Module({
|
||||||
controllers: [SitemapController]
|
controllers: [SitemapController],
|
||||||
|
imports: [ConfigurationModule]
|
||||||
})
|
})
|
||||||
export class SitemapModule {}
|
export class SitemapModule {}
|
||||||
|
@ -22,7 +22,7 @@ export class SubscriptionService {
|
|||||||
this.stripe = new Stripe(
|
this.stripe = new Stripe(
|
||||||
this.configurationService.get('STRIPE_SECRET_KEY'),
|
this.configurationService.get('STRIPE_SECRET_KEY'),
|
||||||
{
|
{
|
||||||
apiVersion: '2022-11-15'
|
apiVersion: '2024-04-10'
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -1,13 +1,14 @@
|
|||||||
|
import { IsCurrencyCode } from '@ghostfolio/api/validators/is-currency-code';
|
||||||
import type {
|
import type {
|
||||||
ColorScheme,
|
ColorScheme,
|
||||||
DateRange,
|
DateRange,
|
||||||
|
HoldingsViewMode,
|
||||||
ViewMode
|
ViewMode
|
||||||
} from '@ghostfolio/common/types';
|
} from '@ghostfolio/common/types';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
IsArray,
|
IsArray,
|
||||||
IsBoolean,
|
IsBoolean,
|
||||||
IsISO4217CurrencyCode,
|
|
||||||
IsISO8601,
|
IsISO8601,
|
||||||
IsIn,
|
IsIn,
|
||||||
IsNumber,
|
IsNumber,
|
||||||
@ -21,7 +22,7 @@ export class UpdateUserSettingDto {
|
|||||||
@IsOptional()
|
@IsOptional()
|
||||||
annualInterestRate?: number;
|
annualInterestRate?: number;
|
||||||
|
|
||||||
@IsISO4217CurrencyCode()
|
@IsCurrencyCode()
|
||||||
@IsOptional()
|
@IsOptional()
|
||||||
baseCurrency?: string;
|
baseCurrency?: string;
|
||||||
|
|
||||||
@ -66,6 +67,10 @@ export class UpdateUserSettingDto {
|
|||||||
@IsOptional()
|
@IsOptional()
|
||||||
'filters.tags'?: string[];
|
'filters.tags'?: string[];
|
||||||
|
|
||||||
|
@IsIn(<HoldingsViewMode[]>['CHART', 'TABLE'])
|
||||||
|
@IsOptional()
|
||||||
|
holdingsViewMode?: HoldingsViewMode;
|
||||||
|
|
||||||
@IsBoolean()
|
@IsBoolean()
|
||||||
@IsOptional()
|
@IsOptional()
|
||||||
isExperimentalFeatures?: boolean;
|
isExperimentalFeatures?: boolean;
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
import { OrderModule } from '@ghostfolio/api/app/order/order.module';
|
||||||
import { SubscriptionModule } from '@ghostfolio/api/app/subscription/subscription.module';
|
import { SubscriptionModule } from '@ghostfolio/api/app/subscription/subscription.module';
|
||||||
import { ConfigurationModule } from '@ghostfolio/api/services/configuration/configuration.module';
|
import { ConfigurationModule } from '@ghostfolio/api/services/configuration/configuration.module';
|
||||||
import { PrismaModule } from '@ghostfolio/api/services/prisma/prisma.module';
|
import { PrismaModule } from '@ghostfolio/api/services/prisma/prisma.module';
|
||||||
@ -19,6 +20,7 @@ import { UserService } from './user.service';
|
|||||||
secret: process.env.JWT_SECRET_KEY,
|
secret: process.env.JWT_SECRET_KEY,
|
||||||
signOptions: { expiresIn: '30 days' }
|
signOptions: { expiresIn: '30 days' }
|
||||||
}),
|
}),
|
||||||
|
OrderModule,
|
||||||
PrismaModule,
|
PrismaModule,
|
||||||
PropertyModule,
|
PropertyModule,
|
||||||
SubscriptionModule,
|
SubscriptionModule,
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
import { OrderService } from '@ghostfolio/api/app/order/order.service';
|
||||||
import { SubscriptionService } from '@ghostfolio/api/app/subscription/subscription.service';
|
import { SubscriptionService } from '@ghostfolio/api/app/subscription/subscription.service';
|
||||||
import { environment } from '@ghostfolio/api/environments/environment';
|
import { environment } from '@ghostfolio/api/environments/environment';
|
||||||
import { PortfolioChangedEvent } from '@ghostfolio/api/events/portfolio-changed.event';
|
import { PortfolioChangedEvent } from '@ghostfolio/api/events/portfolio-changed.event';
|
||||||
@ -40,6 +41,7 @@ export class UserService {
|
|||||||
public constructor(
|
public constructor(
|
||||||
private readonly configurationService: ConfigurationService,
|
private readonly configurationService: ConfigurationService,
|
||||||
private readonly eventEmitter: EventEmitter2,
|
private readonly eventEmitter: EventEmitter2,
|
||||||
|
private readonly orderService: OrderService,
|
||||||
private readonly prismaService: PrismaService,
|
private readonly prismaService: PrismaService,
|
||||||
private readonly propertyService: PropertyService,
|
private readonly propertyService: PropertyService,
|
||||||
private readonly subscriptionService: SubscriptionService,
|
private readonly subscriptionService: SubscriptionService,
|
||||||
@ -188,7 +190,7 @@ export class UserService {
|
|||||||
(user.Settings.settings as UserSettings).dateRange =
|
(user.Settings.settings as UserSettings).dateRange =
|
||||||
(user.Settings.settings as UserSettings).viewMode === 'ZEN'
|
(user.Settings.settings as UserSettings).viewMode === 'ZEN'
|
||||||
? 'max'
|
? 'max'
|
||||||
: (user.Settings.settings as UserSettings)?.dateRange ?? 'max';
|
: ((user.Settings.settings as UserSettings)?.dateRange ?? 'max');
|
||||||
|
|
||||||
// Set default value for view mode
|
// Set default value for view mode
|
||||||
if (!(user.Settings.settings as UserSettings).viewMode) {
|
if (!(user.Settings.settings as UserSettings).viewMode) {
|
||||||
@ -235,11 +237,15 @@ export class UserService {
|
|||||||
|
|
||||||
currentPermissions = without(
|
currentPermissions = without(
|
||||||
currentPermissions,
|
currentPermissions,
|
||||||
|
permissions.accessHoldingsChart,
|
||||||
permissions.createAccess
|
permissions.createAccess
|
||||||
);
|
);
|
||||||
|
|
||||||
// Reset benchmark
|
// Reset benchmark
|
||||||
user.Settings.settings.benchmark = undefined;
|
user.Settings.settings.benchmark = undefined;
|
||||||
|
|
||||||
|
// Reset holdings view mode
|
||||||
|
user.Settings.settings.holdingsViewMode = undefined;
|
||||||
} else if (user.subscription?.type === 'Premium') {
|
} else if (user.subscription?.type === 'Premium') {
|
||||||
currentPermissions.push(permissions.reportDataGlitch);
|
currentPermissions.push(permissions.reportDataGlitch);
|
||||||
|
|
||||||
@ -398,8 +404,8 @@ export class UserService {
|
|||||||
} catch {}
|
} catch {}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await this.prismaService.order.deleteMany({
|
await this.orderService.deleteOrders({
|
||||||
where: { userId: where.id }
|
userId: where.id
|
||||||
});
|
});
|
||||||
} catch {}
|
} catch {}
|
||||||
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -4,6 +4,12 @@
|
|||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
|
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
|
||||||
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
|
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
|
||||||
|
<!--
|
||||||
|
<url>
|
||||||
|
<loc>https://ghostfol.io/ca</loc>
|
||||||
|
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
||||||
|
</url>
|
||||||
|
-->
|
||||||
<url>
|
<url>
|
||||||
<loc>https://ghostfol.io/de</loc>
|
<loc>https://ghostfol.io/de</loc>
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
||||||
@ -54,230 +60,6 @@
|
|||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools</loc>
|
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools</loc>
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-8figures</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-allinvestview</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-allvue-systems</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-altoo</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-basil-finance</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-beanvest</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-capitally</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-capmon</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-compound-planning</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-copilot-money</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-de.fi</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-delta</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-divvydiary</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-empower</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-exirio</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-fina</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-finary</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-finwise</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-folishare</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-getquin</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-gospatz</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-intuit-mint</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-justetf</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-koyfin</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-kubera</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-magnifi</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-markets.sh</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-maybe-finance</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-monarch-money</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-monse</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-navexa</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-parqet</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-plannix</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-portfolio-dividend-tracker</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-portfolio-visualizer</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-portseido</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-projectionlab</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-rocket-money</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-seeking-alpha</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-sharesight</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-simple-portfolio</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-snowball-analytics</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-stock-events</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-stockle</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-stockmarketeye</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-stonksfolio</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-sumio</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-tiller</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-utluna</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-vyzer</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-wallmine</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-wealthfolio</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-wealthica</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-whal</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-yeekatee</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/de/ressourcen/personal-finance-tools/open-source-alternative-zu-ynab</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://ghostfol.io/de/ueber-uns</loc>
|
<loc>https://ghostfol.io/de/ueber-uns</loc>
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
||||||
@ -432,230 +214,6 @@
|
|||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools</loc>
|
<loc>https://ghostfol.io/en/resources/personal-finance-tools</loc>
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-8figures</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-allinvestview</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-allvue-systems</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-altoo</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-basil-finance</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-beanvest</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-capitally</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-capmon</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-compound-planning</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-copilot-money</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-de.fi</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-delta</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-divvydiary</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-empower</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-exirio</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-fina</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-finary</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-finwise</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-folishare</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-getquin</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-gospatz</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-intuit-mint</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-justetf</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-koyfin</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-kubera</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-magnifi</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-markets.sh</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-maybe-finance</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-monarch-money</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-monse</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-navexa</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-parqet</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-plannix</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-portfolio-dividend-tracker</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-portfolio-visualizer</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-portseido</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-projectionlab</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-rocket-money</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-seeking-alpha</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-sharesight</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-simple-portfolio</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-snowball-analytics</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-stock-events</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-stockle</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-stockmarketeye</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-stonksfolio</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-sumio</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-tiller</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-utluna</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-vyzer</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-wallmine</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-wealthfolio</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-wealthica</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-whal</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-yeekatee</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/en/resources/personal-finance-tools/open-source-alternative-to-ynab</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://ghostfol.io/es</loc>
|
<loc>https://ghostfol.io/es</loc>
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
||||||
@ -686,6 +244,10 @@
|
|||||||
<loc>https://ghostfol.io/es/recursos</loc>
|
<loc>https://ghostfol.io/es/recursos</loc>
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
||||||
</url>
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc>https://ghostfol.io/es/recursos/personal-finance-tools</loc>
|
||||||
|
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
||||||
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://ghostfol.io/es/registro</loc>
|
<loc>https://ghostfol.io/es/registro</loc>
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
||||||
@ -764,6 +326,10 @@
|
|||||||
<loc>https://ghostfol.io/fr/ressources</loc>
|
<loc>https://ghostfol.io/fr/ressources</loc>
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
||||||
</url>
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc>https://ghostfol.io/fr/ressources/personal-finance-tools</loc>
|
||||||
|
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
||||||
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://ghostfol.io/it</loc>
|
<loc>https://ghostfol.io/it</loc>
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
||||||
@ -822,230 +388,6 @@
|
|||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools</loc>
|
<loc>https://ghostfol.io/it/risorse/personal-finance-tools</loc>
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-8figures</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-allinvestview</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-allvue-systems</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-altoo</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-basil-finance</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-beanvest</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-capitally</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-capmon</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-compound-planning</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-copilot-money</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-de.fi</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-delta</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-divvydiary</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-empower</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-exirio</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-fina</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-finary</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-finwise</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-folishare</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-getquin</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-gospatz</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-intuit-mint</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-justetf</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-koyfin</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-kubera</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-magnifi</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-markets.sh</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-maybe-finance</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-monarch-money</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-monse</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-navexa</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-parqet</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-plannix</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-portfolio-dividend-tracker</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-portfolio-visualizer</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-portseido</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-projectionlab</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-rocket-money</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-seeking-alpha</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-sharesight</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-simple-portfolio</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-snowball-analytics</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-stock-events</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-stockle</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-stockmarketeye</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-stonksfolio</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-sumio</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-tiller</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-utluna</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-vyzer</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-wallmine</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-wealthfolio</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-wealthica</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-whal</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-yeekatee</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-ynab</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://ghostfol.io/nl</loc>
|
<loc>https://ghostfol.io/nl</loc>
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
||||||
@ -1058,230 +400,6 @@
|
|||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools</loc>
|
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools</loc>
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-8figures</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-allinvestview</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-allvue-systems</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-altoo</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-basil-finance</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-beanvest</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-capitally</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-capmon</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-compound-planning</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-copilot-money</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-de.fi</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-delta</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-divvydiary</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-empower</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-exirio</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-fina</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-finary</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-finwise</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-folishare</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-getquin</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-gospatz</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-intuit-mint</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-justetf</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-koyfin</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-kubera</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-magnifi</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-markets.sh</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-maybe-finance</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-monarch-money</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-monse</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-navexa</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-parqet</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-plannix</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-portfolio-dividend-tracker</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-portfolio-visualizer</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-portseido</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-projectionlab</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-rocket-money</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-seeking-alpha</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-sharesight</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-simple-portfolio</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-snowball-analytics</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-stock-events</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-stockle</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-stockmarketeye</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-stonksfolio</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-sumio</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-tiller</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-utluna</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-vyzer</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-wallmine</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-wealthfolio</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-wealthica</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-whal</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-yeekatee</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
|
||||||
<loc>https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-ynab</loc>
|
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
|
||||||
</url>
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://ghostfol.io/nl/functionaliteiten</loc>
|
<loc>https://ghostfol.io/nl/functionaliteiten</loc>
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
||||||
@ -1329,10 +447,10 @@
|
|||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
||||||
</url>
|
</url>
|
||||||
<!--
|
<!--
|
||||||
<url>
|
<url>
|
||||||
<loc>https://ghostfol.io/pl</loc>
|
<loc>https://ghostfol.io/pl</loc>
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
||||||
</url>
|
</url>
|
||||||
-->
|
-->
|
||||||
<url>
|
<url>
|
||||||
<loc>https://ghostfol.io/pt</loc>
|
<loc>https://ghostfol.io/pt</loc>
|
||||||
@ -1366,6 +484,10 @@
|
|||||||
<loc>https://ghostfol.io/pt/recursos</loc>
|
<loc>https://ghostfol.io/pt/recursos</loc>
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
||||||
</url>
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc>https://ghostfol.io/pt/recursos/personal-finance-tools</loc>
|
||||||
|
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
||||||
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://ghostfol.io/pt/registo</loc>
|
<loc>https://ghostfol.io/pt/registo</loc>
|
||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
||||||
@ -1400,4 +522,5 @@
|
|||||||
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
<lastmod>${currentDate}T00:00:00+00:00</lastmod>
|
||||||
</url>
|
</url>
|
||||||
-->
|
-->
|
||||||
|
${personalFinanceTools}
|
||||||
</urlset>
|
</urlset>
|
||||||
|
@ -55,10 +55,10 @@ export class AccountClusterRiskCurrentInvestment extends Rule<Settings> {
|
|||||||
|
|
||||||
const maxInvestmentRatio = maxItem?.investment / totalInvestment || 0;
|
const maxInvestmentRatio = maxItem?.investment / totalInvestment || 0;
|
||||||
|
|
||||||
if (maxInvestmentRatio > ruleSettings.threshold) {
|
if (maxInvestmentRatio > ruleSettings.thresholdMax) {
|
||||||
return {
|
return {
|
||||||
evaluation: `Over ${
|
evaluation: `Over ${
|
||||||
ruleSettings.threshold * 100
|
ruleSettings.thresholdMax * 100
|
||||||
}% of your current investment is at ${maxItem.name} (${(
|
}% of your current investment is at ${maxItem.name} (${(
|
||||||
maxInvestmentRatio * 100
|
maxInvestmentRatio * 100
|
||||||
).toPrecision(3)}%)`,
|
).toPrecision(3)}%)`,
|
||||||
@ -70,7 +70,7 @@ export class AccountClusterRiskCurrentInvestment extends Rule<Settings> {
|
|||||||
evaluation: `The major part of your current investment is at ${
|
evaluation: `The major part of your current investment is at ${
|
||||||
maxItem.name
|
maxItem.name
|
||||||
} (${(maxInvestmentRatio * 100).toPrecision(3)}%) and does not exceed ${
|
} (${(maxInvestmentRatio * 100).toPrecision(3)}%) and does not exceed ${
|
||||||
ruleSettings.threshold * 100
|
ruleSettings.thresholdMax * 100
|
||||||
}%`,
|
}%`,
|
||||||
value: true
|
value: true
|
||||||
};
|
};
|
||||||
@ -80,12 +80,12 @@ export class AccountClusterRiskCurrentInvestment extends Rule<Settings> {
|
|||||||
return {
|
return {
|
||||||
baseCurrency: aUserSettings.baseCurrency,
|
baseCurrency: aUserSettings.baseCurrency,
|
||||||
isActive: true,
|
isActive: true,
|
||||||
threshold: 0.5
|
thresholdMax: 0.5
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Settings extends RuleSettings {
|
interface Settings extends RuleSettings {
|
||||||
baseCurrency: string;
|
baseCurrency: string;
|
||||||
threshold: number;
|
thresholdMax: number;
|
||||||
}
|
}
|
||||||
|
@ -41,10 +41,10 @@ export class CurrencyClusterRiskCurrentInvestment extends Rule<Settings> {
|
|||||||
|
|
||||||
const maxValueRatio = maxItem?.value / totalValue || 0;
|
const maxValueRatio = maxItem?.value / totalValue || 0;
|
||||||
|
|
||||||
if (maxValueRatio > ruleSettings.threshold) {
|
if (maxValueRatio > ruleSettings.thresholdMax) {
|
||||||
return {
|
return {
|
||||||
evaluation: `Over ${
|
evaluation: `Over ${
|
||||||
ruleSettings.threshold * 100
|
ruleSettings.thresholdMax * 100
|
||||||
}% of your current investment is in ${maxItem.groupKey} (${(
|
}% of your current investment is in ${maxItem.groupKey} (${(
|
||||||
maxValueRatio * 100
|
maxValueRatio * 100
|
||||||
).toPrecision(3)}%)`,
|
).toPrecision(3)}%)`,
|
||||||
@ -56,7 +56,7 @@ export class CurrencyClusterRiskCurrentInvestment extends Rule<Settings> {
|
|||||||
evaluation: `The major part of your current investment is in ${
|
evaluation: `The major part of your current investment is in ${
|
||||||
maxItem?.groupKey ?? ruleSettings.baseCurrency
|
maxItem?.groupKey ?? ruleSettings.baseCurrency
|
||||||
} (${(maxValueRatio * 100).toPrecision(3)}%) and does not exceed ${
|
} (${(maxValueRatio * 100).toPrecision(3)}%) and does not exceed ${
|
||||||
ruleSettings.threshold * 100
|
ruleSettings.thresholdMax * 100
|
||||||
}%`,
|
}%`,
|
||||||
value: true
|
value: true
|
||||||
};
|
};
|
||||||
@ -66,12 +66,12 @@ export class CurrencyClusterRiskCurrentInvestment extends Rule<Settings> {
|
|||||||
return {
|
return {
|
||||||
baseCurrency: aUserSettings.baseCurrency,
|
baseCurrency: aUserSettings.baseCurrency,
|
||||||
isActive: true,
|
isActive: true,
|
||||||
threshold: 0.5
|
thresholdMax: 0.5
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Settings extends RuleSettings {
|
interface Settings extends RuleSettings {
|
||||||
baseCurrency: string;
|
baseCurrency: string;
|
||||||
threshold: number;
|
thresholdMax: number;
|
||||||
}
|
}
|
||||||
|
@ -19,16 +19,16 @@ export class EmergencyFundSetup extends Rule<Settings> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public evaluate(ruleSettings: Settings) {
|
public evaluate(ruleSettings: Settings) {
|
||||||
if (this.emergencyFund > ruleSettings.threshold) {
|
if (this.emergencyFund < ruleSettings.thresholdMin) {
|
||||||
return {
|
return {
|
||||||
evaluation: 'An emergency fund has been set up',
|
evaluation: 'No emergency fund has been set up',
|
||||||
value: true
|
value: false
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
evaluation: 'No emergency fund has been set up',
|
evaluation: 'An emergency fund has been set up',
|
||||||
value: false
|
value: true
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -36,12 +36,12 @@ export class EmergencyFundSetup extends Rule<Settings> {
|
|||||||
return {
|
return {
|
||||||
baseCurrency: aUserSettings.baseCurrency,
|
baseCurrency: aUserSettings.baseCurrency,
|
||||||
isActive: true,
|
isActive: true,
|
||||||
threshold: 0
|
thresholdMin: 0
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Settings extends RuleSettings {
|
interface Settings extends RuleSettings {
|
||||||
baseCurrency: string;
|
baseCurrency: string;
|
||||||
threshold: number;
|
thresholdMin: number;
|
||||||
}
|
}
|
||||||
|
@ -26,10 +26,10 @@ export class FeeRatioInitialInvestment extends Rule<Settings> {
|
|||||||
? this.fees / this.totalInvestment
|
? this.fees / this.totalInvestment
|
||||||
: 0;
|
: 0;
|
||||||
|
|
||||||
if (feeRatio > ruleSettings.threshold) {
|
if (feeRatio > ruleSettings.thresholdMax) {
|
||||||
return {
|
return {
|
||||||
evaluation: `The fees do exceed ${
|
evaluation: `The fees do exceed ${
|
||||||
ruleSettings.threshold * 100
|
ruleSettings.thresholdMax * 100
|
||||||
}% of your initial investment (${(feeRatio * 100).toPrecision(3)}%)`,
|
}% of your initial investment (${(feeRatio * 100).toPrecision(3)}%)`,
|
||||||
value: false
|
value: false
|
||||||
};
|
};
|
||||||
@ -37,7 +37,7 @@ export class FeeRatioInitialInvestment extends Rule<Settings> {
|
|||||||
|
|
||||||
return {
|
return {
|
||||||
evaluation: `The fees do not exceed ${
|
evaluation: `The fees do not exceed ${
|
||||||
ruleSettings.threshold * 100
|
ruleSettings.thresholdMax * 100
|
||||||
}% of your initial investment (${(feeRatio * 100).toPrecision(3)}%)`,
|
}% of your initial investment (${(feeRatio * 100).toPrecision(3)}%)`,
|
||||||
value: true
|
value: true
|
||||||
};
|
};
|
||||||
@ -47,12 +47,12 @@ export class FeeRatioInitialInvestment extends Rule<Settings> {
|
|||||||
return {
|
return {
|
||||||
baseCurrency: aUserSettings.baseCurrency,
|
baseCurrency: aUserSettings.baseCurrency,
|
||||||
isActive: true,
|
isActive: true,
|
||||||
threshold: 0.01
|
thresholdMax: 0.01
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Settings extends RuleSettings {
|
interface Settings extends RuleSettings {
|
||||||
baseCurrency: string;
|
baseCurrency: string;
|
||||||
threshold: number;
|
thresholdMax: number;
|
||||||
}
|
}
|
||||||
|
@ -45,10 +45,11 @@ export class CronService {
|
|||||||
@Cron(CronService.EVERY_SUNDAY_AT_LUNCH_TIME)
|
@Cron(CronService.EVERY_SUNDAY_AT_LUNCH_TIME)
|
||||||
public async runEverySundayAtTwelvePm() {
|
public async runEverySundayAtTwelvePm() {
|
||||||
if (await this.isDataGatheringEnabled()) {
|
if (await this.isDataGatheringEnabled()) {
|
||||||
const uniqueAssets = await this.dataGatheringService.getUniqueAssets();
|
const assetProfileIdentifiers =
|
||||||
|
await this.dataGatheringService.getAllAssetProfileIdentifiers();
|
||||||
|
|
||||||
await this.dataGatheringService.addJobsToQueue(
|
await this.dataGatheringService.addJobsToQueue(
|
||||||
uniqueAssets.map(({ dataSource, symbol }) => {
|
assetProfileIdentifiers.map(({ dataSource, symbol }) => {
|
||||||
return {
|
return {
|
||||||
data: {
|
data: {
|
||||||
dataSource,
|
dataSource,
|
||||||
|
@ -10,6 +10,7 @@ import {
|
|||||||
DATA_GATHERING_QUEUE,
|
DATA_GATHERING_QUEUE,
|
||||||
DATA_GATHERING_QUEUE_PRIORITY_HIGH,
|
DATA_GATHERING_QUEUE_PRIORITY_HIGH,
|
||||||
DATA_GATHERING_QUEUE_PRIORITY_LOW,
|
DATA_GATHERING_QUEUE_PRIORITY_LOW,
|
||||||
|
DATA_GATHERING_QUEUE_PRIORITY_MEDIUM,
|
||||||
GATHER_HISTORICAL_MARKET_DATA_PROCESS,
|
GATHER_HISTORICAL_MARKET_DATA_PROCESS,
|
||||||
GATHER_HISTORICAL_MARKET_DATA_PROCESS_OPTIONS,
|
GATHER_HISTORICAL_MARKET_DATA_PROCESS_OPTIONS,
|
||||||
PROPERTY_BENCHMARKS
|
PROPERTY_BENCHMARKS
|
||||||
@ -62,9 +63,22 @@ export class DataGatheringService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public async gather7Days() {
|
public async gather7Days() {
|
||||||
const dataGatheringItems = await this.getSymbols7D();
|
|
||||||
await this.gatherSymbols({
|
await this.gatherSymbols({
|
||||||
dataGatheringItems,
|
dataGatheringItems: await this.getCurrencies7D(),
|
||||||
|
priority: DATA_GATHERING_QUEUE_PRIORITY_HIGH
|
||||||
|
});
|
||||||
|
|
||||||
|
await this.gatherSymbols({
|
||||||
|
dataGatheringItems: await this.getSymbols7D({
|
||||||
|
withUserSubscription: true
|
||||||
|
}),
|
||||||
|
priority: DATA_GATHERING_QUEUE_PRIORITY_MEDIUM
|
||||||
|
});
|
||||||
|
|
||||||
|
await this.gatherSymbols({
|
||||||
|
dataGatheringItems: await this.getSymbols7D({
|
||||||
|
withUserSubscription: false
|
||||||
|
}),
|
||||||
priority: DATA_GATHERING_QUEUE_PRIORITY_LOW
|
priority: DATA_GATHERING_QUEUE_PRIORITY_LOW
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@ -138,7 +152,7 @@ export class DataGatheringService {
|
|||||||
});
|
});
|
||||||
|
|
||||||
if (!uniqueAssets) {
|
if (!uniqueAssets) {
|
||||||
uniqueAssets = await this.getUniqueAssets();
|
uniqueAssets = await this.getAllAssetProfileIdentifiers();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (uniqueAssets.length <= 0) {
|
if (uniqueAssets.length <= 0) {
|
||||||
@ -270,7 +284,7 @@ export class DataGatheringService {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async getUniqueAssets(): Promise<UniqueAsset[]> {
|
public async getAllAssetProfileIdentifiers(): Promise<UniqueAsset[]> {
|
||||||
const symbolProfiles = await this.prismaService.symbolProfile.findMany({
|
const symbolProfiles = await this.prismaService.symbolProfile.findMany({
|
||||||
orderBy: [{ symbol: 'asc' }]
|
orderBy: [{ symbol: 'asc' }]
|
||||||
});
|
});
|
||||||
@ -290,73 +304,83 @@ export class DataGatheringService {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
private getEarliestDate(aStartDate: Date) {
|
private async getAssetProfileIdentifiersWithCompleteMarketData(): Promise<
|
||||||
return min([aStartDate, subYears(new Date(), 10)]);
|
UniqueAsset[]
|
||||||
}
|
> {
|
||||||
|
return (
|
||||||
private async getSymbols7D(): Promise<IDataGatheringItem[]> {
|
|
||||||
const startDate = subDays(resetHours(new Date()), 7);
|
|
||||||
|
|
||||||
const symbolProfiles = await this.prismaService.symbolProfile.findMany({
|
|
||||||
orderBy: [{ symbol: 'asc' }],
|
|
||||||
select: {
|
|
||||||
dataSource: true,
|
|
||||||
scraperConfiguration: true,
|
|
||||||
symbol: true
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// Only consider symbols with incomplete market data for the last
|
|
||||||
// 7 days
|
|
||||||
const symbolsWithCompleteMarketData = (
|
|
||||||
await this.prismaService.marketData.groupBy({
|
await this.prismaService.marketData.groupBy({
|
||||||
_count: true,
|
_count: true,
|
||||||
by: ['symbol'],
|
by: ['dataSource', 'symbol'],
|
||||||
orderBy: [{ symbol: 'asc' }],
|
orderBy: [{ symbol: 'asc' }],
|
||||||
where: {
|
where: {
|
||||||
date: { gt: startDate },
|
date: { gt: subDays(resetHours(new Date()), 7) },
|
||||||
state: 'CLOSE'
|
state: 'CLOSE'
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
.filter((group) => {
|
.filter(({ _count }) => {
|
||||||
return group._count >= 6;
|
return _count >= 6;
|
||||||
})
|
})
|
||||||
.map((group) => {
|
.map(({ dataSource, symbol }) => {
|
||||||
return group.symbol;
|
return { dataSource, symbol };
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
private async getCurrencies7D(): Promise<IDataGatheringItem[]> {
|
||||||
|
const assetProfileIdentifiersWithCompleteMarketData =
|
||||||
|
await this.getAssetProfileIdentifiersWithCompleteMarketData();
|
||||||
|
|
||||||
|
return this.exchangeRateDataService
|
||||||
|
.getCurrencyPairs()
|
||||||
|
.filter(({ dataSource, symbol }) => {
|
||||||
|
return !assetProfileIdentifiersWithCompleteMarketData.some((item) => {
|
||||||
|
return item.dataSource === dataSource && item.symbol === symbol;
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.map(({ dataSource, symbol }) => {
|
||||||
|
return {
|
||||||
|
dataSource,
|
||||||
|
symbol,
|
||||||
|
date: subDays(resetHours(new Date()), 7)
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
private getEarliestDate(aStartDate: Date) {
|
||||||
|
return min([aStartDate, subYears(new Date(), 10)]);
|
||||||
|
}
|
||||||
|
|
||||||
|
private async getSymbols7D({
|
||||||
|
withUserSubscription = false
|
||||||
|
}: {
|
||||||
|
withUserSubscription?: boolean;
|
||||||
|
}): Promise<IDataGatheringItem[]> {
|
||||||
|
const symbolProfiles =
|
||||||
|
await this.symbolProfileService.getSymbolProfilesByUserSubscription({
|
||||||
|
withUserSubscription
|
||||||
});
|
});
|
||||||
|
|
||||||
const symbolProfilesToGather = symbolProfiles
|
const assetProfileIdentifiersWithCompleteMarketData =
|
||||||
|
await this.getAssetProfileIdentifiersWithCompleteMarketData();
|
||||||
|
|
||||||
|
return symbolProfiles
|
||||||
.filter(({ dataSource, scraperConfiguration, symbol }) => {
|
.filter(({ dataSource, scraperConfiguration, symbol }) => {
|
||||||
const manualDataSourceWithScraperConfiguration =
|
const manualDataSourceWithScraperConfiguration =
|
||||||
dataSource === 'MANUAL' && !isEmpty(scraperConfiguration);
|
dataSource === 'MANUAL' && !isEmpty(scraperConfiguration);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
!symbolsWithCompleteMarketData.includes(symbol) &&
|
!assetProfileIdentifiersWithCompleteMarketData.some((item) => {
|
||||||
|
return item.dataSource === dataSource && item.symbol === symbol;
|
||||||
|
}) &&
|
||||||
(dataSource !== 'MANUAL' || manualDataSourceWithScraperConfiguration)
|
(dataSource !== 'MANUAL' || manualDataSourceWithScraperConfiguration)
|
||||||
);
|
);
|
||||||
})
|
})
|
||||||
.map((symbolProfile) => {
|
.map((symbolProfile) => {
|
||||||
return {
|
return {
|
||||||
...symbolProfile,
|
...symbolProfile,
|
||||||
date: startDate
|
date: subDays(resetHours(new Date()), 7)
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
const currencyPairsToGather = this.exchangeRateDataService
|
|
||||||
.getCurrencyPairs()
|
|
||||||
.filter(({ symbol }) => {
|
|
||||||
return !symbolsWithCompleteMarketData.includes(symbol);
|
|
||||||
})
|
|
||||||
.map(({ dataSource, symbol }) => {
|
|
||||||
return {
|
|
||||||
dataSource,
|
|
||||||
symbol,
|
|
||||||
date: startDate
|
|
||||||
};
|
|
||||||
});
|
|
||||||
|
|
||||||
return [...currencyPairsToGather, ...symbolProfilesToGather];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private async getSymbolsMax(): Promise<IDataGatheringItem[]> {
|
private async getSymbolsMax(): Promise<IDataGatheringItem[]> {
|
||||||
|
@ -14,7 +14,12 @@ import {
|
|||||||
DERIVED_CURRENCIES,
|
DERIVED_CURRENCIES,
|
||||||
PROPERTY_DATA_SOURCE_MAPPING
|
PROPERTY_DATA_SOURCE_MAPPING
|
||||||
} from '@ghostfolio/common/config';
|
} from '@ghostfolio/common/config';
|
||||||
import { DATE_FORMAT, getStartOfUtcDate } from '@ghostfolio/common/helper';
|
import {
|
||||||
|
DATE_FORMAT,
|
||||||
|
getCurrencyFromSymbol,
|
||||||
|
getStartOfUtcDate,
|
||||||
|
isDerivedCurrency
|
||||||
|
} from '@ghostfolio/common/helper';
|
||||||
import { UniqueAsset } from '@ghostfolio/common/interfaces';
|
import { UniqueAsset } from '@ghostfolio/common/interfaces';
|
||||||
import type { Granularity, UserWithSettings } from '@ghostfolio/common/types';
|
import type { Granularity, UserWithSettings } from '@ghostfolio/common/types';
|
||||||
|
|
||||||
@ -423,13 +428,18 @@ export class DataProviderService {
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
const symbols = dataGatheringItems.map((dataGatheringItem) => {
|
const symbols = dataGatheringItems
|
||||||
return dataGatheringItem.symbol;
|
.filter(({ symbol }) => {
|
||||||
});
|
return !isDerivedCurrency(getCurrencyFromSymbol(symbol));
|
||||||
|
})
|
||||||
|
.map(({ symbol }) => {
|
||||||
|
return symbol;
|
||||||
|
});
|
||||||
|
|
||||||
const maximumNumberOfSymbolsPerRequest =
|
const maximumNumberOfSymbolsPerRequest =
|
||||||
dataProvider.getMaxNumberOfSymbolsPerRequest?.() ??
|
dataProvider.getMaxNumberOfSymbolsPerRequest?.() ??
|
||||||
Number.MAX_SAFE_INTEGER;
|
Number.MAX_SAFE_INTEGER;
|
||||||
|
|
||||||
for (
|
for (
|
||||||
let i = 0;
|
let i = 0;
|
||||||
i < symbols.length;
|
i < symbols.length;
|
||||||
@ -516,7 +526,8 @@ export class DataProviderService {
|
|||||||
.filter((symbol) => {
|
.filter((symbol) => {
|
||||||
return (
|
return (
|
||||||
isNumber(response[symbol].marketPrice) &&
|
isNumber(response[symbol].marketPrice) &&
|
||||||
response[symbol].marketPrice > 0
|
response[symbol].marketPrice > 0 &&
|
||||||
|
response[symbol].marketState === 'open'
|
||||||
);
|
);
|
||||||
})
|
})
|
||||||
.map((symbol) => {
|
.map((symbol) => {
|
||||||
|
@ -246,7 +246,7 @@ export class EodHistoricalDataService implements DataProviderInterface {
|
|||||||
for (const { close, code, timestamp } of quotes) {
|
for (const { close, code, timestamp } of quotes) {
|
||||||
let currency: string;
|
let currency: string;
|
||||||
|
|
||||||
if (code.endsWith('.FOREX')) {
|
if (this.isForex(code)) {
|
||||||
currency = this.convertFromEodSymbol(code)?.replace(
|
currency = this.convertFromEodSymbol(code)?.replace(
|
||||||
DEFAULT_CURRENCY,
|
DEFAULT_CURRENCY,
|
||||||
''
|
''
|
||||||
@ -272,7 +272,10 @@ export class EodHistoricalDataService implements DataProviderInterface {
|
|||||||
currency,
|
currency,
|
||||||
dataSource: this.getName(),
|
dataSource: this.getName(),
|
||||||
marketPrice: close,
|
marketPrice: close,
|
||||||
marketState: isToday(new Date(timestamp * 1000)) ? 'open' : 'closed'
|
marketState:
|
||||||
|
this.isForex(code) || isToday(new Date(timestamp * 1000))
|
||||||
|
? 'open'
|
||||||
|
: 'closed'
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
Logger.error(
|
Logger.error(
|
||||||
@ -311,7 +314,7 @@ export class EodHistoricalDataService implements DataProviderInterface {
|
|||||||
items: searchResult
|
items: searchResult
|
||||||
.filter(({ currency, symbol }) => {
|
.filter(({ currency, symbol }) => {
|
||||||
// Remove 'NA' currency and exchange rates
|
// Remove 'NA' currency and exchange rates
|
||||||
return currency?.length === 3 && !symbol.endsWith('.FOREX');
|
return currency?.length === 3 && !this.isForex(symbol);
|
||||||
})
|
})
|
||||||
.map(
|
.map(
|
||||||
({
|
({
|
||||||
@ -349,7 +352,7 @@ export class EodHistoricalDataService implements DataProviderInterface {
|
|||||||
private convertFromEodSymbol(aEodSymbol: string) {
|
private convertFromEodSymbol(aEodSymbol: string) {
|
||||||
let symbol = aEodSymbol;
|
let symbol = aEodSymbol;
|
||||||
|
|
||||||
if (symbol.endsWith('.FOREX')) {
|
if (this.isForex(symbol)) {
|
||||||
symbol = symbol.replace('GBX', 'GBp');
|
symbol = symbol.replace('GBX', 'GBp');
|
||||||
symbol = symbol.replace('.FOREX', '');
|
symbol = symbol.replace('.FOREX', '');
|
||||||
}
|
}
|
||||||
@ -451,6 +454,10 @@ export class EodHistoricalDataService implements DataProviderInterface {
|
|||||||
return searchResult;
|
return searchResult;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private isForex(aCode: string) {
|
||||||
|
return aCode?.endsWith('.FOREX') || false;
|
||||||
|
}
|
||||||
|
|
||||||
private parseAssetClass({
|
private parseAssetClass({
|
||||||
Exchange,
|
Exchange,
|
||||||
Type
|
Type
|
||||||
|
@ -167,9 +167,10 @@ export class ManualService implements DataProviderInterface {
|
|||||||
});
|
});
|
||||||
|
|
||||||
for (const { currency, symbol } of symbolProfiles) {
|
for (const { currency, symbol } of symbolProfiles) {
|
||||||
let marketPrice = marketData.find((marketDataItem) => {
|
let marketPrice =
|
||||||
return marketDataItem.symbol === symbol;
|
marketData.find((marketDataItem) => {
|
||||||
})?.marketPrice;
|
return marketDataItem.symbol === symbol;
|
||||||
|
})?.marketPrice ?? 0;
|
||||||
|
|
||||||
response[symbol] = {
|
response[symbol] = {
|
||||||
currency,
|
currency,
|
||||||
@ -256,7 +257,7 @@ export class ManualService implements DataProviderInterface {
|
|||||||
signal: abortController.signal
|
signal: abortController.signal
|
||||||
});
|
});
|
||||||
|
|
||||||
if (headers['content-type'] === 'application/json') {
|
if (headers['content-type'].includes('application/json')) {
|
||||||
const data = JSON.parse(body);
|
const data = JSON.parse(body);
|
||||||
const value = String(
|
const value = String(
|
||||||
jsonpath.query(data, scraperConfiguration.selector)[0]
|
jsonpath.query(data, scraperConfiguration.selector)[0]
|
||||||
|
@ -91,6 +91,40 @@ export class SymbolProfileService {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public async getSymbolProfilesByUserSubscription({
|
||||||
|
withUserSubscription = false
|
||||||
|
}: {
|
||||||
|
withUserSubscription?: boolean;
|
||||||
|
}) {
|
||||||
|
return this.prismaService.symbolProfile.findMany({
|
||||||
|
include: {
|
||||||
|
Order: {
|
||||||
|
include: {
|
||||||
|
User: true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
orderBy: [{ symbol: 'asc' }],
|
||||||
|
where: {
|
||||||
|
Order: withUserSubscription
|
||||||
|
? {
|
||||||
|
some: {
|
||||||
|
User: {
|
||||||
|
Subscription: { some: { expiresAt: { gt: new Date() } } }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
: {
|
||||||
|
every: {
|
||||||
|
User: {
|
||||||
|
Subscription: { none: { expiresAt: { gt: new Date() } } }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
public updateSymbolProfile({
|
public updateSymbolProfile({
|
||||||
assetClass,
|
assetClass,
|
||||||
assetSubClass,
|
assetSubClass,
|
||||||
@ -221,8 +255,9 @@ export class SymbolProfileService {
|
|||||||
const { name, weight } = holding as Prisma.JsonObject;
|
const { name, weight } = holding as Prisma.JsonObject;
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
allocationInPercentage: weight as number,
|
||||||
name: (name as string) ?? UNKNOWN_KEY,
|
name: (name as string) ?? UNKNOWN_KEY,
|
||||||
valueInBaseCurrency: weight as number
|
valueInBaseCurrency: undefined
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
@ -70,7 +70,7 @@ export class TwitterBotService {
|
|||||||
await this.twitterClient.v2.tweet(status);
|
await this.twitterClient.v2.tweet(status);
|
||||||
|
|
||||||
Logger.log(
|
Logger.log(
|
||||||
`Fear & Greed Index has been tweeted: https://twitter.com/ghostfolio_/status/${createdTweet.id}`,
|
`Fear & Greed Index has been posted: https://x.com/ghostfolio_/status/${createdTweet.id}`,
|
||||||
'TwitterBotService'
|
'TwitterBotService'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
44
apps/api/src/validators/is-currency-code.ts
Normal file
44
apps/api/src/validators/is-currency-code.ts
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
import { DERIVED_CURRENCIES } from '@ghostfolio/common/config';
|
||||||
|
|
||||||
|
import {
|
||||||
|
registerDecorator,
|
||||||
|
ValidationOptions,
|
||||||
|
ValidatorConstraint,
|
||||||
|
ValidatorConstraintInterface,
|
||||||
|
ValidationArguments
|
||||||
|
} from 'class-validator';
|
||||||
|
import { isISO4217CurrencyCode } from 'class-validator';
|
||||||
|
|
||||||
|
export function IsCurrencyCode(validationOptions?: ValidationOptions) {
|
||||||
|
return function (object: Object, propertyName: string) {
|
||||||
|
registerDecorator({
|
||||||
|
propertyName,
|
||||||
|
constraints: [],
|
||||||
|
options: validationOptions,
|
||||||
|
target: object.constructor,
|
||||||
|
validator: IsExtendedCurrencyConstraint
|
||||||
|
});
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
@ValidatorConstraint({ async: false })
|
||||||
|
export class IsExtendedCurrencyConstraint
|
||||||
|
implements ValidatorConstraintInterface
|
||||||
|
{
|
||||||
|
public defaultMessage(args: ValidationArguments) {
|
||||||
|
return '$value must be a valid ISO4217 currency code';
|
||||||
|
}
|
||||||
|
|
||||||
|
public validate(currency: any) {
|
||||||
|
// Return true if currency is a standard ISO 4217 code or a derived currency
|
||||||
|
return (
|
||||||
|
isISO4217CurrencyCode(currency) ||
|
||||||
|
[
|
||||||
|
...DERIVED_CURRENCIES.map((derivedCurrency) => {
|
||||||
|
return derivedCurrency.currency;
|
||||||
|
}),
|
||||||
|
'USX'
|
||||||
|
].includes(currency)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
18
apps/client/localhost.cert
Normal file
18
apps/client/localhost.cert
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIIC5TCCAc2gAwIBAgIJAJAMHOFnJ6oyMA0GCSqGSIb3DQEBCwUAMBQxEjAQBgNV
|
||||||
|
BAMMCWxvY2FsaG9zdDAeFw0yNDAyMjcxNTQ2MzFaFw0yNDAzMjgxNTQ2MzFaMBQx
|
||||||
|
EjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC
|
||||||
|
ggEBAJ0hRjViikEKVIyukXR4CfuYVvFEFzB6AwAQ9Jrz2MseqpLacLTXFFAS54mp
|
||||||
|
iDuqPBzs9ta40mlSrqSBuAWKikpW5kTNnmqUnDZ6iSJezbYWx9YyULGqqb1q3C4/
|
||||||
|
5pH9m6NHJ+2uaUNKlDxYNKbntqs3drQEdxH9yv672Z53nvogTcf9jz6zjutEQGSV
|
||||||
|
HgVkCTTQmzf3+3st+VJ5D8JeYFR+tpZ6yleqgXFaTMtPZRfKLvTkQ+KeyCJLnsUJ
|
||||||
|
BQvdCKI0PGsG6d6ygXFmSePolD9KW3VTKKDPCsndID89vAnRWDj9UhzvycxmKpcF
|
||||||
|
GrUPH5+Pis1PM1R7OnAvnFygnyECAwEAAaM6MDgwFAYDVR0RBA0wC4IJbG9jYWxo
|
||||||
|
b3N0MAsGA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATANBgkqhkiG9w0B
|
||||||
|
AQsFAAOCAQEAOdzrY3RTAPnBVAd3/GKIEkielYyOgKPnvd+RcOB+je8cXZY+vaxX
|
||||||
|
uEFP0526G00+kRZ2Tx9t0SmjoSpwg3lHUPMko0dIxgRlqISDAohdrEptHpcVujsD
|
||||||
|
ak88LLnAurr60JNjWX2wbEoJ18KLtqGSnATdmCgKwDPIN5a7+ssp44BGyzH6VYCg
|
||||||
|
wV3VjJl0pp4C5M0Jfu0p1FrQjzIVhgqR7JFYmvqIogWrGwYAQK/3XRXq8t48J5X3
|
||||||
|
IsfWiLAA2ZdCoWAnZ6PAGBOoGivtkJm967pHjd/28qYY6mQo4sN2ksEOjx6/YslF
|
||||||
|
2mOJdLV/DzqoggUsTpPEG0dRhzQLTGHKDQ==
|
||||||
|
-----END CERTIFICATE-----
|
28
apps/client/localhost.pem
Normal file
28
apps/client/localhost.pem
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
-----BEGIN PRIVATE KEY-----
|
||||||
|
MIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQCdIUY1YopBClSM
|
||||||
|
rpF0eAn7mFbxRBcwegMAEPSa89jLHqqS2nC01xRQEueJqYg7qjwc7PbWuNJpUq6k
|
||||||
|
gbgFiopKVuZEzZ5qlJw2eokiXs22FsfWMlCxqqm9atwuP+aR/ZujRyftrmlDSpQ8
|
||||||
|
WDSm57arN3a0BHcR/cr+u9med576IE3H/Y8+s47rREBklR4FZAk00Js39/t7LflS
|
||||||
|
eQ/CXmBUfraWespXqoFxWkzLT2UXyi705EPinsgiS57FCQUL3QiiNDxrBunesoFx
|
||||||
|
Zknj6JQ/Slt1UyigzwrJ3SA/PbwJ0Vg4/VIc78nMZiqXBRq1Dx+fj4rNTzNUezpw
|
||||||
|
L5xcoJ8hAgMBAAECggEAPU5YOEgELTA8oM8TjV+wdWuQsH2ilpVkSkhTR4nQkh+a
|
||||||
|
6cU0qDoqgLt/fySYNL9MyPRjso9V+SX7YdAC3paZMjwJh9q57lehQ1g33SMkG+Fz
|
||||||
|
gs0K0ucFZxQkaB8idN+ANAp1N7UO+ORGRe0cTeqmSNNRCxea5XgiFZVxaPS/IFOR
|
||||||
|
vVdXS1DulgwHh4H0ljKmkj7jc9zPBSc9ccW5Ml2q4a26Atu4IC/Mlp/DF4GNELbD
|
||||||
|
ebi9ZOZG33ip2bdhj3WX7NW9GJaaViKtVUpcpR6u+6BfvTXQ6xrqdoxXk9fnPzzf
|
||||||
|
sSoLPTt8yO4RavP1zQU22PhgIcWudhCiy/2Nv+uLqQKBgQDMPh1/xwdFl8yES8dy
|
||||||
|
f0xJyCDWPiB+xzGwcOAC90FrNZaqG0WWs3VHE4cilaWjCflvdR6aAEDEY68sZJhl
|
||||||
|
h+ChT/g61QLMOI+VIDQ1kJXKYgfS/B+BE1PZ0EkuymKFOvbNO8agHodB8CqnZaQh
|
||||||
|
bLuZaDnZ0JLK4im3KPt70+aKYwKBgQDE8s6xl0SLu+yJLo3VklCRD67Z8/jlvx2t
|
||||||
|
h3DF6NG8pB3QmvKdJWFKuLAWLGflJwbUW9Pt3hXkc0649KQrtiIYC0ZMh9KMaVCk
|
||||||
|
WmjS/n2eIUQZ7ZUlwFesi4p4iGynVBavIY8TJ6Y+K3TvsJgXP3IZ96r689PQJo8E
|
||||||
|
KbSeyYzFqwKBgGQTS4EAlJ+U8bEhMGj51veQCAbyChoUoFRD+n95h6RwbZKMKlzd
|
||||||
|
MenRt7VKfg6VJJNoX8Y1uYaBEaQ+5i1Zlsdz1718AhLu4+u+C9bzMXIo9ox63TTx
|
||||||
|
s3RWioVSxVNiwOtvDrQGQWAdvcioFPQLwyA34aDIgiTHDImimxbhjWThAoGAWOqW
|
||||||
|
Tq9QjxWk0Lpn5ohMP3GpK1VuhasnJvUDARb/uf8ORuPtrOz3Y9jGBvy9W0OnXbCn
|
||||||
|
mbiugZldbTtl8yYjdl+AuYSIlkPl2I3IzZl/9Shnqp0MvSJ9crT9KzXMeC8Knr6z
|
||||||
|
7Z30/BR6ksxTngtS5E5grzPt6Qe/gc2ich3kpEkCgYBfBHUhVIKVrDW/8a7U2679
|
||||||
|
Wj4i9us/M3iPMxcTv7/ZAg08TEvNBQYtvVQLu0NfDKXx8iGKJJ6evIYgNXVm2sPq
|
||||||
|
VzSgwGCALi1X0443amZU+mnX+/9RnBqyM+PJU8570mM83jqKlY/BEsi0aqxTioFG
|
||||||
|
an3xbjjN+Rq9iKLzmPxIMg==
|
||||||
|
-----END PRIVATE KEY-----
|
@ -36,6 +36,10 @@
|
|||||||
"ngswConfigPath": "apps/client/ngsw-config.json"
|
"ngswConfigPath": "apps/client/ngsw-config.json"
|
||||||
},
|
},
|
||||||
"configurations": {
|
"configurations": {
|
||||||
|
"development-ca": {
|
||||||
|
"baseHref": "/ca/",
|
||||||
|
"localize": ["ca"]
|
||||||
|
},
|
||||||
"development-de": {
|
"development-de": {
|
||||||
"baseHref": "/de/",
|
"baseHref": "/de/",
|
||||||
"localize": ["de"]
|
"localize": ["de"]
|
||||||
@ -163,8 +167,11 @@
|
|||||||
"serve": {
|
"serve": {
|
||||||
"executor": "@nx/angular:dev-server",
|
"executor": "@nx/angular:dev-server",
|
||||||
"options": {
|
"options": {
|
||||||
|
"buildTarget": "client:build",
|
||||||
"proxyConfig": "apps/client/proxy.conf.json",
|
"proxyConfig": "apps/client/proxy.conf.json",
|
||||||
"buildTarget": "client:build"
|
"ssl": true,
|
||||||
|
"sslCert": "apps/client/localhost.cert",
|
||||||
|
"sslKey": "apps/client/localhost.pem"
|
||||||
},
|
},
|
||||||
"configurations": {
|
"configurations": {
|
||||||
"development-de": {
|
"development-de": {
|
||||||
@ -209,6 +216,7 @@
|
|||||||
"includeContext": true,
|
"includeContext": true,
|
||||||
"outputPath": "src/locales",
|
"outputPath": "src/locales",
|
||||||
"targetFiles": [
|
"targetFiles": [
|
||||||
|
"messages.ca.xlf",
|
||||||
"messages.de.xlf",
|
"messages.de.xlf",
|
||||||
"messages.es.xlf",
|
"messages.es.xlf",
|
||||||
"messages.fr.xlf",
|
"messages.fr.xlf",
|
||||||
@ -237,6 +245,10 @@
|
|||||||
},
|
},
|
||||||
"i18n": {
|
"i18n": {
|
||||||
"locales": {
|
"locales": {
|
||||||
|
"ca": {
|
||||||
|
"baseHref": "/ca/",
|
||||||
|
"translation": "apps/client/src/locales/messages.ca.xlf"
|
||||||
|
},
|
||||||
"de": {
|
"de": {
|
||||||
"baseHref": "/de/",
|
"baseHref": "/de/",
|
||||||
"translation": "apps/client/src/locales/messages.de.xlf"
|
"translation": "apps/client/src/locales/messages.de.xlf"
|
||||||
|
@ -1,33 +1,31 @@
|
|||||||
<header>
|
<header>
|
||||||
<div
|
@if (canCreateAccount || user?.systemMessage) {
|
||||||
*ngIf="canCreateAccount || user?.systemMessage"
|
<div class="info-message-container">
|
||||||
class="info-message-container"
|
<div class="info-message-inner-container position-fixed w-100">
|
||||||
>
|
<div class="align-items-center d-flex h-100 justify-content-center">
|
||||||
<div class="info-message-inner-container position-fixed w-100">
|
@if (canCreateAccount) {
|
||||||
<div class="align-items-center d-flex h-100 justify-content-center">
|
<a class="text-center" [routerLink]="routerLinkRegister">
|
||||||
<a
|
<div
|
||||||
*ngIf="canCreateAccount"
|
class="cursor-pointer d-inline-block info-message"
|
||||||
class="text-center"
|
(click)="onCreateAccount()"
|
||||||
[routerLink]="routerLinkRegister"
|
>
|
||||||
>
|
<span i18n>You are using the Live Demo.</span>
|
||||||
<div
|
<span class="a ml-2" i18n>Create Account</span>
|
||||||
class="cursor-pointer d-inline-block info-message"
|
</div></a
|
||||||
(click)="onCreateAccount()"
|
>
|
||||||
>
|
}
|
||||||
<span i18n>You are using the Live Demo.</span>
|
@if (!canCreateAccount && user?.systemMessage) {
|
||||||
<span class="a ml-2" i18n>Create Account</span>
|
<div
|
||||||
</div></a
|
class="cursor-pointer d-inline-block info-message text-truncate"
|
||||||
>
|
(click)="onClickSystemMessage()"
|
||||||
<div
|
>
|
||||||
*ngIf="!canCreateAccount && user?.systemMessage"
|
{{ user.systemMessage.message }}
|
||||||
class="cursor-pointer d-inline-block info-message text-truncate"
|
</div>
|
||||||
(click)="onClickSystemMessage()"
|
}
|
||||||
>
|
|
||||||
{{ user.systemMessage.message }}
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
}
|
||||||
|
|
||||||
<gf-header
|
<gf-header
|
||||||
class="position-fixed w-100"
|
class="position-fixed w-100"
|
||||||
@ -45,144 +43,164 @@
|
|||||||
<router-outlet></router-outlet>
|
<router-outlet></router-outlet>
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
<footer *ngIf="showFooter" class="d-flex justify-content-center py-4 w-100">
|
@if (showFooter) {
|
||||||
<div class="container">
|
<footer class="d-flex justify-content-center py-4 w-100">
|
||||||
<div class="mb-3 row">
|
<div class="container">
|
||||||
<div class="col-sm">
|
<div class="mb-3 row">
|
||||||
<a [routerLink]="['/']"><gf-logo /></a>
|
<div class="col-sm">
|
||||||
</div>
|
<a [routerLink]="['/']"><gf-logo /></a>
|
||||||
<div class="col-sm">
|
</div>
|
||||||
<div class="h6 mt-2" i18n>Personal Finance</div>
|
<div class="col-sm">
|
||||||
<ul class="list-unstyled">
|
<div class="h6 mt-2" i18n>Personal Finance</div>
|
||||||
<li *ngIf="hasPermissionToAccessFearAndGreedIndex">
|
<ul class="list-unstyled">
|
||||||
<a i18n [routerLink]="routerLinkMarkets">Markets</a>
|
@if (hasPermissionToAccessFearAndGreedIndex) {
|
||||||
</li>
|
<li>
|
||||||
<li><a i18n [routerLink]="routerLinkResources">Resources</a></li>
|
<a i18n [routerLink]="routerLinkMarkets">Markets</a>
|
||||||
</ul>
|
</li>
|
||||||
</div>
|
}
|
||||||
<div class="col-sm">
|
<li><a i18n [routerLink]="routerLinkResources">Resources</a></li>
|
||||||
<div class="h6 mt-2">Ghostfolio</div>
|
</ul>
|
||||||
<ul class="list-unstyled">
|
</div>
|
||||||
<li><a i18n [routerLink]="routerLinkAbout">About</a></li>
|
<div class="col-sm">
|
||||||
<li *ngIf="hasPermissionForSubscription">
|
<div class="h6 mt-2">Ghostfolio</div>
|
||||||
<a i18n [routerLink]="['/blog']">Blog</a>
|
<ul class="list-unstyled">
|
||||||
</li>
|
<li><a i18n [routerLink]="routerLinkAbout">About</a></li>
|
||||||
<li>
|
@if (hasPermissionForSubscription) {
|
||||||
<a i18n [routerLink]="routerLinkAboutChangelog">Changelog</a>
|
<li>
|
||||||
</li>
|
<a i18n [routerLink]="['/blog']">Blog</a>
|
||||||
<li><a i18n [routerLink]="routerLinkFeatures">Features</a></li>
|
</li>
|
||||||
<li *ngIf="hasPermissionForSubscription">
|
}
|
||||||
<a i18n [routerLink]="routerLinkFaq"
|
|
||||||
>Frequently Asked Questions (FAQ)</a
|
|
||||||
>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a i18n [routerLink]="routerLinkAboutLicense">License</a>
|
|
||||||
</li>
|
|
||||||
<li *ngIf="hasPermissionForStatistics">
|
|
||||||
<a [routerLink]="['/open']">Open Startup</a>
|
|
||||||
</li>
|
|
||||||
<li *ngIf="hasPermissionForSubscription">
|
|
||||||
<a i18n [routerLink]="routerLinkPricing">Pricing</a>
|
|
||||||
</li>
|
|
||||||
<li *ngIf="hasPermissionForSubscription">
|
|
||||||
<a i18n [routerLink]="routerLinkAboutPrivacyPolicy"
|
|
||||||
>Privacy Policy</a
|
|
||||||
>
|
|
||||||
</li>
|
|
||||||
<li *ngIf="hasPermissionForSubscription">
|
|
||||||
<a
|
|
||||||
class="align-items-baseline d-flex"
|
|
||||||
href="https://status.ghostfol.io"
|
|
||||||
target="_blank"
|
|
||||||
title="Ghostfolio Status"
|
|
||||||
>Status<ion-icon class="ml-1" name="open-outline"
|
|
||||||
/></a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="col-sm">
|
|
||||||
<div class="h6 mt-2" i18n>Community</div>
|
|
||||||
<ul class="list-unstyled">
|
|
||||||
<li>
|
|
||||||
<a
|
|
||||||
class="align-items-baseline d-flex"
|
|
||||||
href="https://github.com/ghostfolio/ghostfolio"
|
|
||||||
target="_blank"
|
|
||||||
title="Find Ghostfolio on GitHub"
|
|
||||||
>GitHub<ion-icon class="ml-1" name="open-outline"
|
|
||||||
/></a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a
|
|
||||||
class="align-items-baseline d-flex"
|
|
||||||
href="https://join.slack.com/t/ghostfolio/shared_invite/zt-vsaan64h-F_I0fEo5M0P88lP9ibCxFg"
|
|
||||||
target="_blank"
|
|
||||||
title="Join the Ghostfolio Slack community"
|
|
||||||
>Slack<ion-icon class="ml-1" name="open-outline"
|
|
||||||
/></a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a
|
|
||||||
class="align-items-baseline d-flex"
|
|
||||||
href="https://twitter.com/ghostfolio_"
|
|
||||||
target="_blank"
|
|
||||||
title="Follow Ghostfolio on X (formerly Twitter)"
|
|
||||||
>X (formerly Twitter)<ion-icon class="ml-1" name="open-outline"
|
|
||||||
/></a>
|
|
||||||
</li>
|
|
||||||
<li> </li>
|
|
||||||
<li>
|
|
||||||
<a href="../de" title="Ghostfolio in Deutsch">Deutsch</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a href="../en" title="Ghostfolio in English">English</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a href="../es" title="Ghostfolio in Español">Español</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a href="../fr" title="Ghostfolio en Français">Français</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a href="../it" title="Ghostfolio in Italiano">Italiano</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a href="../nl" title="Ghostfolio in Nederlands">Nederlands</a>
|
|
||||||
</li>
|
|
||||||
<!--
|
|
||||||
<li>
|
<li>
|
||||||
<a href="../pl" title="Ghostfolio in Polski">Polski</a>
|
<a i18n [routerLink]="routerLinkAboutChangelog">Changelog</a>
|
||||||
</li>
|
</li>
|
||||||
-->
|
<li><a i18n [routerLink]="routerLinkFeatures">Features</a></li>
|
||||||
<li>
|
@if (hasPermissionForSubscription) {
|
||||||
<a href="../pt" title="Ghostfolio in Português">Português</a>
|
<li>
|
||||||
</li>
|
<a i18n [routerLink]="routerLinkFaq"
|
||||||
<li>
|
>Frequently Asked Questions (FAQ)</a
|
||||||
<a href="../tr" title="Ghostfolio in Türkçe">Türkçe</a>
|
>
|
||||||
</li>
|
</li>
|
||||||
<!--
|
}
|
||||||
<li>
|
<li>
|
||||||
<a href="../zh" title="Ghostfolio in Chinese">Chinese</a>
|
<a i18n [routerLink]="routerLinkAboutLicense">License</a>
|
||||||
</li>
|
</li>
|
||||||
-->
|
@if (hasPermissionForStatistics) {
|
||||||
</ul>
|
<li>
|
||||||
|
<a [routerLink]="['/open']">Open Startup</a>
|
||||||
|
</li>
|
||||||
|
}
|
||||||
|
@if (hasPermissionForSubscription) {
|
||||||
|
<li>
|
||||||
|
<a i18n [routerLink]="routerLinkPricing">Pricing</a>
|
||||||
|
</li>
|
||||||
|
}
|
||||||
|
@if (hasPermissionForSubscription) {
|
||||||
|
<li>
|
||||||
|
<a i18n [routerLink]="routerLinkAboutPrivacyPolicy"
|
||||||
|
>Privacy Policy</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
}
|
||||||
|
@if (hasPermissionForSubscription) {
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
class="align-items-baseline d-flex"
|
||||||
|
href="https://status.ghostfol.io"
|
||||||
|
target="_blank"
|
||||||
|
title="Ghostfolio Status"
|
||||||
|
>Status<ion-icon class="ml-1" name="open-outline"
|
||||||
|
/></a>
|
||||||
|
</li>
|
||||||
|
}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm">
|
||||||
|
<div class="h6 mt-2" i18n>Community</div>
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
class="align-items-baseline d-flex"
|
||||||
|
href="https://github.com/ghostfolio/ghostfolio"
|
||||||
|
target="_blank"
|
||||||
|
title="Find Ghostfolio on GitHub"
|
||||||
|
>GitHub<ion-icon class="ml-1" name="open-outline"
|
||||||
|
/></a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
class="align-items-baseline d-flex"
|
||||||
|
href="https://join.slack.com/t/ghostfolio/shared_invite/zt-vsaan64h-F_I0fEo5M0P88lP9ibCxFg"
|
||||||
|
target="_blank"
|
||||||
|
title="Join the Ghostfolio Slack community"
|
||||||
|
>Slack<ion-icon class="ml-1" name="open-outline"
|
||||||
|
/></a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
class="align-items-baseline d-flex"
|
||||||
|
href="https://x.com/ghostfolio_"
|
||||||
|
target="_blank"
|
||||||
|
title="Follow Ghostfolio on X (formerly Twitter)"
|
||||||
|
>X (formerly Twitter)<ion-icon class="ml-1" name="open-outline"
|
||||||
|
/></a>
|
||||||
|
</li>
|
||||||
|
<li> </li>
|
||||||
|
<!--
|
||||||
|
<li>
|
||||||
|
<a href="../ca" title="Ghostfolio en català">Català</a>
|
||||||
|
</li>
|
||||||
|
-->
|
||||||
|
<li>
|
||||||
|
<a href="../de" title="Ghostfolio in Deutsch">Deutsch</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../en" title="Ghostfolio in English">English</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../es" title="Ghostfolio in Español">Español</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../fr" title="Ghostfolio en Français">Français</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../it" title="Ghostfolio in Italiano">Italiano</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../nl" title="Ghostfolio in Nederlands">Nederlands</a>
|
||||||
|
</li>
|
||||||
|
<!--
|
||||||
|
<li>
|
||||||
|
<a href="../pl" title="Ghostfolio in Polski">Polski</a>
|
||||||
|
</li>
|
||||||
|
-->
|
||||||
|
<li>
|
||||||
|
<a href="../pt" title="Ghostfolio in Português">Português</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../tr" title="Ghostfolio in Türkçe">Türkçe</a>
|
||||||
|
</li>
|
||||||
|
<!--
|
||||||
|
<li>
|
||||||
|
<a href="../zh" title="Ghostfolio in Chinese">Chinese</a>
|
||||||
|
</li>
|
||||||
|
-->
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row text-center">
|
||||||
|
<div class="col">
|
||||||
|
© 2021 - {{ currentYear }}
|
||||||
|
<a href="https://ghostfol.io">Ghostfolio</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row text-center text-muted">
|
||||||
|
<div class="col">
|
||||||
|
<small i18n
|
||||||
|
>The risk of loss in trading can be substantial. It is not advisable
|
||||||
|
to invest money you may need in the short term.</small
|
||||||
|
>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</footer>
|
||||||
<div class="row text-center">
|
}
|
||||||
<div class="col">
|
|
||||||
© 2021 - {{ currentYear }} <a href="https://ghostfol.io">Ghostfolio</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="row text-center text-muted">
|
|
||||||
<div class="col">
|
|
||||||
<small i18n
|
|
||||||
>The risk of loss in trading can be substantial. It is not advisable
|
|
||||||
to invest money you may need in the short term.</small
|
|
||||||
>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
@ -259,6 +259,10 @@ export class AppComponent implements OnDestroy, OnInit {
|
|||||||
this.user?.permissions,
|
this.user?.permissions,
|
||||||
permissions.reportDataGlitch
|
permissions.reportDataGlitch
|
||||||
),
|
),
|
||||||
|
hasPermissionToUpdateOrder:
|
||||||
|
!this.hasImpersonationId &&
|
||||||
|
hasPermission(this.user?.permissions, permissions.updateOrder) &&
|
||||||
|
!user?.settings?.isRestrictedView,
|
||||||
locale: this.user?.settings?.locale
|
locale: this.user?.settings?.locale
|
||||||
},
|
},
|
||||||
height: this.deviceType === 'mobile' ? '97.5vh' : '80vh',
|
height: this.deviceType === 'mobile' ? '97.5vh' : '80vh',
|
||||||
|
@ -1,7 +1,10 @@
|
|||||||
import { GfLogoComponent } from '@ghostfolio/ui/logo';
|
import { GfLogoComponent } from '@ghostfolio/ui/logo';
|
||||||
|
|
||||||
import { Platform } from '@angular/cdk/platform';
|
import { Platform } from '@angular/cdk/platform';
|
||||||
import { HttpClientModule } from '@angular/common/http';
|
import {
|
||||||
|
provideHttpClient,
|
||||||
|
withInterceptorsFromDi
|
||||||
|
} from '@angular/common/http';
|
||||||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
|
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
|
||||||
import { MatAutocompleteModule } from '@angular/material/autocomplete';
|
import { MatAutocompleteModule } from '@angular/material/autocomplete';
|
||||||
import { MatChipsModule } from '@angular/material/chips';
|
import { MatChipsModule } from '@angular/material/chips';
|
||||||
@ -45,7 +48,6 @@ export function NgxStripeFactory(): string {
|
|||||||
GfHeaderModule,
|
GfHeaderModule,
|
||||||
GfLogoComponent,
|
GfLogoComponent,
|
||||||
GfSubscriptionInterstitialDialogModule,
|
GfSubscriptionInterstitialDialogModule,
|
||||||
HttpClientModule,
|
|
||||||
MarkdownModule.forRoot(),
|
MarkdownModule.forRoot(),
|
||||||
MatAutocompleteModule,
|
MatAutocompleteModule,
|
||||||
MatChipsModule,
|
MatChipsModule,
|
||||||
@ -63,6 +65,7 @@ export function NgxStripeFactory(): string {
|
|||||||
authInterceptorProviders,
|
authInterceptorProviders,
|
||||||
httpResponseInterceptorProviders,
|
httpResponseInterceptorProviders,
|
||||||
LanguageService,
|
LanguageService,
|
||||||
|
provideHttpClient(withInterceptorsFromDi()),
|
||||||
{
|
{
|
||||||
provide: DateAdapter,
|
provide: DateAdapter,
|
||||||
useClass: CustomDateAdapter,
|
useClass: CustomDateAdapter,
|
||||||
|
@ -32,17 +32,16 @@
|
|||||||
<ng-container matColumnDef="details">
|
<ng-container matColumnDef="details">
|
||||||
<th *matHeaderCellDef class="px-1" i18n mat-header-cell>Details</th>
|
<th *matHeaderCellDef class="px-1" i18n mat-header-cell>Details</th>
|
||||||
<td *matCellDef="let element" class="px-1 text-nowrap" mat-cell>
|
<td *matCellDef="let element" class="px-1 text-nowrap" mat-cell>
|
||||||
<div
|
@if (element.type === 'PUBLIC') {
|
||||||
*ngIf="element.type === 'PUBLIC'"
|
<div class="align-items-center d-flex">
|
||||||
class="align-items-center d-flex"
|
<ion-icon class="mr-1" name="link-outline" />
|
||||||
>
|
<a
|
||||||
<ion-icon class="mr-1" name="link-outline" />
|
href="{{ baseUrl }}/{{ defaultLanguageCode }}/p/{{ element.id }}"
|
||||||
<a
|
target="_blank"
|
||||||
href="{{ baseUrl }}/{{ defaultLanguageCode }}/p/{{ element.id }}"
|
>{{ baseUrl }}/{{ defaultLanguageCode }}/p/{{ element.id }}</a
|
||||||
target="_blank"
|
>
|
||||||
>{{ baseUrl }}/{{ defaultLanguageCode }}/p/{{ element.id }}</a
|
</div>
|
||||||
>
|
}
|
||||||
</div>
|
|
||||||
</td>
|
</td>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
|
||||||
|
@ -1,14 +1,16 @@
|
|||||||
<div *ngIf="showActions" class="d-flex justify-content-end">
|
@if (showActions) {
|
||||||
<button
|
<div class="d-flex justify-content-end">
|
||||||
class="align-items-center d-flex"
|
<button
|
||||||
mat-stroked-button
|
class="align-items-center d-flex"
|
||||||
[disabled]="dataSource?.data.length < 2"
|
mat-stroked-button
|
||||||
(click)="onTransferBalance()"
|
[disabled]="dataSource?.data.length < 2"
|
||||||
>
|
(click)="onTransferBalance()"
|
||||||
<ion-icon class="mr-2" name="arrow-redo-outline" />
|
>
|
||||||
<ng-container i18n>Transfer Cash Balance</ng-container>...
|
<ion-icon class="mr-2" name="arrow-redo-outline" />
|
||||||
</button>
|
<ng-container i18n>Transfer Cash Balance</ng-container>...
|
||||||
</div>
|
</button>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
|
||||||
<div class="overflow-x-auto">
|
<div class="overflow-x-auto">
|
||||||
<table class="gf-table w-100" mat-table matSort [dataSource]="dataSource">
|
<table class="gf-table w-100" mat-table matSort [dataSource]="dataSource">
|
||||||
@ -24,7 +26,9 @@
|
|||||||
mat-cell
|
mat-cell
|
||||||
>
|
>
|
||||||
<div class="d-flex justify-content-center">
|
<div class="d-flex justify-content-center">
|
||||||
<ion-icon *ngIf="element.isExcluded" name="eye-off-outline" />
|
@if (element.isExcluded) {
|
||||||
|
<ion-icon name="eye-off-outline" />
|
||||||
|
}
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td
|
<td
|
||||||
@ -39,12 +43,13 @@
|
|||||||
<ng-container i18n>Name</ng-container>
|
<ng-container i18n>Name</ng-container>
|
||||||
</th>
|
</th>
|
||||||
<td *matCellDef="let element" class="px-1" mat-cell>
|
<td *matCellDef="let element" class="px-1" mat-cell>
|
||||||
<gf-asset-profile-icon
|
@if (element.Platform?.url) {
|
||||||
*ngIf="element.Platform?.url"
|
<gf-asset-profile-icon
|
||||||
class="d-inline d-sm-none mr-1"
|
class="d-inline d-sm-none mr-1"
|
||||||
[tooltip]="element.Platform?.name"
|
[tooltip]="element.Platform?.name"
|
||||||
[url]="element.Platform?.url"
|
[url]="element.Platform?.url"
|
||||||
/>
|
/>
|
||||||
|
}
|
||||||
<span>{{ element.name }}</span>
|
<span>{{ element.name }}</span>
|
||||||
</td>
|
</td>
|
||||||
<td *matFooterCellDef class="px-1" i18n mat-footer-cell>Total</td>
|
<td *matFooterCellDef class="px-1" i18n mat-footer-cell>Total</td>
|
||||||
@ -86,12 +91,13 @@
|
|||||||
mat-cell
|
mat-cell
|
||||||
>
|
>
|
||||||
<div class="d-flex">
|
<div class="d-flex">
|
||||||
<gf-asset-profile-icon
|
@if (element.Platform?.url) {
|
||||||
*ngIf="element.Platform?.url"
|
<gf-asset-profile-icon
|
||||||
class="mr-1"
|
class="mr-1"
|
||||||
[tooltip]="element.Platform?.name"
|
[tooltip]="element.Platform?.name"
|
||||||
[url]="element.Platform?.url"
|
[url]="element.Platform?.url"
|
||||||
/>
|
/>
|
||||||
|
}
|
||||||
<span>{{ element.Platform?.name }}</span>
|
<span>{{ element.Platform?.name }}</span>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
@ -236,15 +242,16 @@
|
|||||||
class="d-none d-lg-table-cell px-1"
|
class="d-none d-lg-table-cell px-1"
|
||||||
mat-cell
|
mat-cell
|
||||||
>
|
>
|
||||||
<button
|
@if (element.comment) {
|
||||||
*ngIf="element.comment"
|
<button
|
||||||
class="mx-1 no-min-width px-2"
|
class="mx-1 no-min-width px-2"
|
||||||
mat-button
|
mat-button
|
||||||
title="Note"
|
title="Note"
|
||||||
(click)="onOpenComment(element.comment); $event.stopPropagation()"
|
(click)="onOpenComment(element.comment); $event.stopPropagation()"
|
||||||
>
|
>
|
||||||
<ion-icon name="document-text-outline" />
|
<ion-icon name="document-text-outline" />
|
||||||
</button>
|
</button>
|
||||||
|
}
|
||||||
</td>
|
</td>
|
||||||
<td
|
<td
|
||||||
*matFooterCellDef
|
*matFooterCellDef
|
||||||
@ -303,12 +310,13 @@
|
|||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<ngx-skeleton-loader
|
@if (isLoading) {
|
||||||
*ngIf="isLoading"
|
<ngx-skeleton-loader
|
||||||
animation="pulse"
|
animation="pulse"
|
||||||
class="px-4 py-3"
|
class="px-4 py-3"
|
||||||
[theme]="{
|
[theme]="{
|
||||||
height: '1.5rem',
|
height: '1.5rem',
|
||||||
width: '100%'
|
width: '100%'
|
||||||
}"
|
}"
|
||||||
/>
|
/>
|
||||||
|
}
|
||||||
|
@ -5,11 +5,14 @@
|
|||||||
<mat-form-field appearance="outline" class="w-100 without-hint">
|
<mat-form-field appearance="outline" class="w-100 without-hint">
|
||||||
<mat-select formControlName="status">
|
<mat-select formControlName="status">
|
||||||
<mat-option />
|
<mat-option />
|
||||||
<mat-option
|
@for (
|
||||||
*ngFor="let statusFilterOption of statusFilterOptions"
|
statusFilterOption of statusFilterOptions;
|
||||||
[value]="statusFilterOption"
|
track statusFilterOption
|
||||||
>{{ statusFilterOption }}</mat-option
|
) {
|
||||||
>
|
<mat-option [value]="statusFilterOption">{{
|
||||||
|
statusFilterOption
|
||||||
|
}}</mat-option>
|
||||||
|
}
|
||||||
</mat-select>
|
</mat-select>
|
||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
</form>
|
</form>
|
||||||
@ -28,15 +31,11 @@
|
|||||||
<ng-container i18n>Type</ng-container>
|
<ng-container i18n>Type</ng-container>
|
||||||
</th>
|
</th>
|
||||||
<td *matCellDef="let element" class="px-1 py-2" mat-cell>
|
<td *matCellDef="let element" class="px-1 py-2" mat-cell>
|
||||||
<ng-container *ngIf="element.name === 'GATHER_ASSET_PROFILE'" i18n>
|
@if (element.name === 'GATHER_ASSET_PROFILE') {
|
||||||
Asset Profile
|
<ng-container i18n>Asset Profile</ng-container>
|
||||||
</ng-container>
|
} @else if (element.name === 'GATHER_HISTORICAL_MARKET_DATA') {
|
||||||
<ng-container
|
<ng-container i18n>Historical Market Data</ng-container>
|
||||||
*ngIf="element.name === 'GATHER_HISTORICAL_MARKET_DATA'"
|
}
|
||||||
i18n
|
|
||||||
>
|
|
||||||
Historical Market Data
|
|
||||||
</ng-container>
|
|
||||||
</td>
|
</td>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
|
||||||
@ -109,37 +108,29 @@
|
|||||||
<ng-container i18n>Status</ng-container>
|
<ng-container i18n>Status</ng-container>
|
||||||
</th>
|
</th>
|
||||||
<td *matCellDef="let element" class="px-1 py-2" mat-cell>
|
<td *matCellDef="let element" class="px-1 py-2" mat-cell>
|
||||||
<ion-icon
|
@if (element.state === 'active') {
|
||||||
*ngIf="element.state === 'active'"
|
<ion-icon class="h6 mb-0" name="play-outline" />
|
||||||
class="h6 mb-0"
|
} @else if (element.state === 'completed') {
|
||||||
name="play-outline"
|
<ion-icon
|
||||||
/>
|
class="h6 mb-0 text-success"
|
||||||
<ion-icon
|
name="checkmark-circle-outline"
|
||||||
*ngIf="element.state === 'completed'"
|
/>
|
||||||
class="h6 mb-0 text-success"
|
} @else if (element.state === 'delayed') {
|
||||||
name="checkmark-circle-outline"
|
<ion-icon
|
||||||
/>
|
class="h6 mb-0"
|
||||||
<ion-icon
|
name="time-outline"
|
||||||
*ngIf="element.state === 'delayed'"
|
[ngClass]="{ 'text-danger': element.stacktrace?.length > 0 }"
|
||||||
class="h6 mb-0"
|
/>
|
||||||
name="time-outline"
|
} @else if (element.state === 'failed') {
|
||||||
[ngClass]="{ 'text-danger': element.stacktrace?.length > 0 }"
|
<ion-icon
|
||||||
/>
|
class="h6 mb-0 text-danger"
|
||||||
<ion-icon
|
name="alert-circle-outline"
|
||||||
*ngIf="element.state === 'failed'"
|
/>
|
||||||
class="h6 mb-0 text-danger"
|
} @else if (element.state === 'paused') {
|
||||||
name="alert-circle-outline"
|
<ion-icon class="h6 mb-0" name="pause-outline" />
|
||||||
/>
|
} @else if (element.state === 'waiting') {
|
||||||
<ion-icon
|
<ion-icon class="h6 mb-0" name="cafe-outline" />
|
||||||
*ngIf="element.state === 'paused'"
|
}
|
||||||
class="h6 mb-0"
|
|
||||||
name="pause-outline"
|
|
||||||
/>
|
|
||||||
<ion-icon
|
|
||||||
*ngIf="element.state === 'waiting'"
|
|
||||||
class="h6 mb-0"
|
|
||||||
name="cafe-outline"
|
|
||||||
/>
|
|
||||||
</td>
|
</td>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
|
||||||
|
@ -9,35 +9,38 @@
|
|||||||
[showYAxis]="true"
|
[showYAxis]="true"
|
||||||
[symbol]="symbol"
|
[symbol]="symbol"
|
||||||
/>
|
/>
|
||||||
<div *ngFor="let itemByMonth of marketDataByMonth | keyvalue" class="d-flex">
|
@for (itemByMonth of marketDataByMonth | keyvalue; track itemByMonth) {
|
||||||
<div class="date px-1 text-nowrap">{{ itemByMonth.key }}</div>
|
<div class="d-flex">
|
||||||
<div class="align-items-center d-flex flex-grow-1 px-1">
|
<div class="date px-1 text-nowrap">{{ itemByMonth.key }}</div>
|
||||||
<div
|
<div class="align-items-center d-flex flex-grow-1 px-1">
|
||||||
*ngFor="let dayItem of days; let i = index"
|
@for (dayItem of days; track dayItem; let i = $index) {
|
||||||
class="day"
|
<div
|
||||||
[ngClass]="{
|
class="day"
|
||||||
'cursor-pointer valid': isDateOfInterest(
|
[ngClass]="{
|
||||||
itemByMonth.key + '-' + (i + 1 < 10 ? '0' + (i + 1) : i + 1)
|
'cursor-pointer valid': isDateOfInterest(
|
||||||
),
|
itemByMonth.key + '-' + (i + 1 < 10 ? '0' + (i + 1) : i + 1)
|
||||||
available:
|
),
|
||||||
marketDataByMonth[itemByMonth.key][
|
available:
|
||||||
i + 1 < 10 ? '0' + (i + 1) : i + 1
|
marketDataByMonth[itemByMonth.key][
|
||||||
]?.marketPrice,
|
i + 1 < 10 ? '0' + (i + 1) : i + 1
|
||||||
today: isToday(
|
]?.marketPrice,
|
||||||
itemByMonth.key + '-' + (i + 1 < 10 ? '0' + (i + 1) : i + 1)
|
today: isToday(
|
||||||
)
|
itemByMonth.key + '-' + (i + 1 < 10 ? '0' + (i + 1) : i + 1)
|
||||||
}"
|
)
|
||||||
[title]="
|
}"
|
||||||
(itemByMonth.key + '-' + (i + 1 < 10 ? '0' + (i + 1) : i + 1)
|
[title]="
|
||||||
| date: defaultDateFormat) ?? ''
|
(itemByMonth.key + '-' + (i + 1 < 10 ? '0' + (i + 1) : i + 1)
|
||||||
"
|
| date: defaultDateFormat) ?? ''
|
||||||
(click)="
|
"
|
||||||
onOpenMarketDataDetail({
|
(click)="
|
||||||
day: i + 1 < 10 ? '0' + (i + 1) : i + 1,
|
onOpenMarketDataDetail({
|
||||||
yearMonth: itemByMonth.key
|
day: i + 1 < 10 ? '0' + (i + 1) : i + 1,
|
||||||
})
|
yearMonth: itemByMonth.key
|
||||||
"
|
})
|
||||||
></div>
|
"
|
||||||
|
></div>
|
||||||
|
}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
}
|
||||||
</div>
|
</div>
|
||||||
|
@ -6,10 +6,17 @@ import {
|
|||||||
ghostfolioScraperApiSymbolPrefix
|
ghostfolioScraperApiSymbolPrefix
|
||||||
} from '@ghostfolio/common/config';
|
} from '@ghostfolio/common/config';
|
||||||
import { getDateFormatString } from '@ghostfolio/common/helper';
|
import { getDateFormatString } from '@ghostfolio/common/helper';
|
||||||
import { Filter, UniqueAsset, User } from '@ghostfolio/common/interfaces';
|
import {
|
||||||
|
Filter,
|
||||||
|
InfoItem,
|
||||||
|
UniqueAsset,
|
||||||
|
User
|
||||||
|
} from '@ghostfolio/common/interfaces';
|
||||||
import { AdminMarketDataItem } from '@ghostfolio/common/interfaces/admin-market-data.interface';
|
import { AdminMarketDataItem } from '@ghostfolio/common/interfaces/admin-market-data.interface';
|
||||||
|
import { hasPermission, permissions } from '@ghostfolio/common/permissions';
|
||||||
import { translate } from '@ghostfolio/ui/i18n';
|
import { translate } from '@ghostfolio/ui/i18n';
|
||||||
|
|
||||||
|
import { SelectionModel } from '@angular/cdk/collections';
|
||||||
import {
|
import {
|
||||||
AfterViewInit,
|
AfterViewInit,
|
||||||
ChangeDetectionStrategy,
|
ChangeDetectionStrategy,
|
||||||
@ -68,6 +75,11 @@ export class AdminMarketDataComponent
|
|||||||
};
|
};
|
||||||
})
|
})
|
||||||
.concat([
|
.concat([
|
||||||
|
{
|
||||||
|
id: 'BENCHMARKS',
|
||||||
|
label: $localize`Benchmarks`,
|
||||||
|
type: <Filter['type']>'PRESET_ID'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: 'CURRENCIES',
|
id: 'CURRENCIES',
|
||||||
label: $localize`Currencies`,
|
label: $localize`Currencies`,
|
||||||
@ -91,32 +103,23 @@ export class AdminMarketDataComponent
|
|||||||
new MatTableDataSource();
|
new MatTableDataSource();
|
||||||
public defaultDateFormat: string;
|
public defaultDateFormat: string;
|
||||||
public deviceType: string;
|
public deviceType: string;
|
||||||
public displayedColumns = [
|
public displayedColumns: string[] = [];
|
||||||
'nameWithSymbol',
|
|
||||||
'dataSource',
|
|
||||||
'assetClass',
|
|
||||||
'assetSubClass',
|
|
||||||
'date',
|
|
||||||
'activitiesCount',
|
|
||||||
'marketDataItemCount',
|
|
||||||
'sectorsCount',
|
|
||||||
'countriesCount',
|
|
||||||
'comment',
|
|
||||||
'actions'
|
|
||||||
];
|
|
||||||
public filters$ = new Subject<Filter[]>();
|
public filters$ = new Subject<Filter[]>();
|
||||||
public ghostfolioScraperApiSymbolPrefix = ghostfolioScraperApiSymbolPrefix;
|
public ghostfolioScraperApiSymbolPrefix = ghostfolioScraperApiSymbolPrefix;
|
||||||
|
public hasPermissionForSubscription: boolean;
|
||||||
|
public info: InfoItem;
|
||||||
public isLoading = false;
|
public isLoading = false;
|
||||||
public isUUID = isUUID;
|
public isUUID = isUUID;
|
||||||
public placeholder = '';
|
public placeholder = '';
|
||||||
public pageSize = DEFAULT_PAGE_SIZE;
|
public pageSize = DEFAULT_PAGE_SIZE;
|
||||||
|
public selection: SelectionModel<Partial<SymbolProfile>>;
|
||||||
public totalItems = 0;
|
public totalItems = 0;
|
||||||
public user: User;
|
public user: User;
|
||||||
|
|
||||||
private unsubscribeSubject = new Subject<void>();
|
private unsubscribeSubject = new Subject<void>();
|
||||||
|
|
||||||
public constructor(
|
public constructor(
|
||||||
private adminMarketDataService: AdminMarketDataService,
|
public adminMarketDataService: AdminMarketDataService,
|
||||||
private adminService: AdminService,
|
private adminService: AdminService,
|
||||||
private changeDetectorRef: ChangeDetectorRef,
|
private changeDetectorRef: ChangeDetectorRef,
|
||||||
private dataService: DataService,
|
private dataService: DataService,
|
||||||
@ -126,6 +129,33 @@ export class AdminMarketDataComponent
|
|||||||
private router: Router,
|
private router: Router,
|
||||||
private userService: UserService
|
private userService: UserService
|
||||||
) {
|
) {
|
||||||
|
this.info = this.dataService.fetchInfo();
|
||||||
|
|
||||||
|
this.hasPermissionForSubscription = hasPermission(
|
||||||
|
this.info?.globalPermissions,
|
||||||
|
permissions.enableSubscription
|
||||||
|
);
|
||||||
|
|
||||||
|
this.displayedColumns = [
|
||||||
|
'select',
|
||||||
|
'nameWithSymbol',
|
||||||
|
'dataSource',
|
||||||
|
'assetClass',
|
||||||
|
'assetSubClass',
|
||||||
|
'date',
|
||||||
|
'activitiesCount',
|
||||||
|
'marketDataItemCount',
|
||||||
|
'sectorsCount',
|
||||||
|
'countriesCount'
|
||||||
|
];
|
||||||
|
|
||||||
|
if (this.hasPermissionForSubscription) {
|
||||||
|
this.displayedColumns.push('isUsedByUsersWithSubscription');
|
||||||
|
}
|
||||||
|
|
||||||
|
this.displayedColumns.push('comment');
|
||||||
|
this.displayedColumns.push('actions');
|
||||||
|
|
||||||
this.route.queryParams
|
this.route.queryParams
|
||||||
.pipe(takeUntil(this.unsubscribeSubject))
|
.pipe(takeUntil(this.unsubscribeSubject))
|
||||||
.subscribe((params) => {
|
.subscribe((params) => {
|
||||||
@ -183,6 +213,8 @@ export class AdminMarketDataComponent
|
|||||||
|
|
||||||
this.benchmarks = benchmarks;
|
this.benchmarks = benchmarks;
|
||||||
this.deviceType = this.deviceService.getDeviceInfo().deviceType;
|
this.deviceType = this.deviceService.getDeviceInfo().deviceType;
|
||||||
|
|
||||||
|
this.selection = new SelectionModel(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
public onChangePage(page: PageEvent) {
|
public onChangePage(page: PageEvent) {
|
||||||
@ -193,8 +225,16 @@ export class AdminMarketDataComponent
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
public onDeleteProfileData({ dataSource, symbol }: UniqueAsset) {
|
public onDeleteAssetProfile({ dataSource, symbol }: UniqueAsset) {
|
||||||
this.adminMarketDataService.deleteProfileData({ dataSource, symbol });
|
this.adminMarketDataService.deleteAssetProfile({ dataSource, symbol });
|
||||||
|
}
|
||||||
|
|
||||||
|
public onDeleteAssetProfiles() {
|
||||||
|
this.adminMarketDataService.deleteAssetProfiles(
|
||||||
|
this.selection.selected.map(({ dataSource, symbol }) => {
|
||||||
|
return { dataSource, symbol };
|
||||||
|
})
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public onGather7Days() {
|
public onGather7Days() {
|
||||||
@ -281,6 +321,8 @@ export class AdminMarketDataComponent
|
|||||||
this.placeholder =
|
this.placeholder =
|
||||||
this.activeFilters.length <= 0 ? $localize`Filter by...` : '';
|
this.activeFilters.length <= 0 ? $localize`Filter by...` : '';
|
||||||
|
|
||||||
|
this.selection.clear();
|
||||||
|
|
||||||
this.adminService
|
this.adminService
|
||||||
.fetchAdminMarketData({
|
.fetchAdminMarketData({
|
||||||
sortColumn,
|
sortColumn,
|
||||||
|
@ -11,206 +11,249 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<table
|
<div class="overflow-x-auto">
|
||||||
class="gf-table w-100"
|
<table
|
||||||
mat-table
|
class="gf-table w-100"
|
||||||
matSort
|
mat-table
|
||||||
matSortActive="symbol"
|
matSort
|
||||||
matSortDirection="asc"
|
matSortActive="symbol"
|
||||||
[dataSource]="dataSource"
|
matSortDirection="asc"
|
||||||
>
|
[dataSource]="dataSource"
|
||||||
<ng-container matColumnDef="symbol">
|
>
|
||||||
<th *matHeaderCellDef class="px-1" mat-header-cell mat-sort-header>
|
<ng-container matColumnDef="select">
|
||||||
<ng-container i18n>Symbol</ng-container>
|
<th *matHeaderCellDef class="px-1" mat-header-cell></th>
|
||||||
</th>
|
<td *matCellDef="let element" class="px-1" mat-cell>
|
||||||
<td *matCellDef="let element" class="px-1" mat-cell>
|
@if (
|
||||||
{{ element.symbol }}
|
adminMarketDataService.hasPermissionToDeleteAssetProfile({
|
||||||
</td>
|
activitiesCount: element.activitiesCount,
|
||||||
</ng-container>
|
isBenchmark: element.isBenchmark,
|
||||||
|
|
||||||
<ng-container matColumnDef="nameWithSymbol">
|
|
||||||
<th
|
|
||||||
*matHeaderCellDef
|
|
||||||
class="px-1"
|
|
||||||
mat-header-cell
|
|
||||||
mat-sort-header="symbol"
|
|
||||||
>
|
|
||||||
<ng-container i18n>Name</ng-container>
|
|
||||||
</th>
|
|
||||||
<td *matCellDef="let element" class="line-height-1 px-1" mat-cell>
|
|
||||||
<div class="text-truncate">{{ element.name }}</div>
|
|
||||||
<div *ngIf="!isUUID(element.symbol)">
|
|
||||||
<small class="text-muted">{{ element.symbol | gfSymbol }}</small>
|
|
||||||
</div>
|
|
||||||
</td>
|
|
||||||
<td *matFooterCellDef class="px-1" mat-footer-cell></td>
|
|
||||||
</ng-container>
|
|
||||||
|
|
||||||
<ng-container matColumnDef="dataSource">
|
|
||||||
<th *matHeaderCellDef class="px-1" mat-header-cell mat-sort-header>
|
|
||||||
<ng-container i18n>Data Source</ng-container>
|
|
||||||
</th>
|
|
||||||
<td *matCellDef="let element" class="px-1" mat-cell>
|
|
||||||
{{ element.dataSource }}
|
|
||||||
</td>
|
|
||||||
</ng-container>
|
|
||||||
|
|
||||||
<ng-container matColumnDef="assetClass">
|
|
||||||
<th *matHeaderCellDef class="px-1" mat-header-cell mat-sort-header>
|
|
||||||
<ng-container i18n>Asset Class</ng-container>
|
|
||||||
</th>
|
|
||||||
<td *matCellDef="let element" class="px-1" mat-cell>
|
|
||||||
{{ element.assetClass }}
|
|
||||||
</td>
|
|
||||||
</ng-container>
|
|
||||||
|
|
||||||
<ng-container matColumnDef="assetSubClass">
|
|
||||||
<th *matHeaderCellDef class="px-1" mat-header-cell mat-sort-header>
|
|
||||||
<ng-container i18n>Asset Sub Class</ng-container>
|
|
||||||
</th>
|
|
||||||
<td *matCellDef="let element" class="px-1" mat-cell>
|
|
||||||
{{ element.assetSubClass }}
|
|
||||||
</td>
|
|
||||||
</ng-container>
|
|
||||||
|
|
||||||
<ng-container matColumnDef="date">
|
|
||||||
<th *matHeaderCellDef class="px-1" mat-header-cell>
|
|
||||||
<ng-container i18n>First Activity</ng-container>
|
|
||||||
</th>
|
|
||||||
<td *matCellDef="let element" class="px-1" mat-cell>
|
|
||||||
{{ (element.date | date: defaultDateFormat) ?? '' }}
|
|
||||||
</td>
|
|
||||||
</ng-container>
|
|
||||||
|
|
||||||
<ng-container matColumnDef="activitiesCount">
|
|
||||||
<th *matHeaderCellDef class="px-1" mat-header-cell mat-sort-header>
|
|
||||||
<ng-container i18n>Activities Count</ng-container>
|
|
||||||
</th>
|
|
||||||
<td *matCellDef="let element" class="px-1 text-right" mat-cell>
|
|
||||||
{{ element.activitiesCount }}
|
|
||||||
</td>
|
|
||||||
</ng-container>
|
|
||||||
|
|
||||||
<ng-container matColumnDef="marketDataItemCount">
|
|
||||||
<th *matHeaderCellDef class="px-1" mat-header-cell>
|
|
||||||
<ng-container i18n>Historical Data</ng-container>
|
|
||||||
</th>
|
|
||||||
<td *matCellDef="let element" class="px-1 text-right" mat-cell>
|
|
||||||
{{ element.marketDataItemCount }}
|
|
||||||
</td>
|
|
||||||
</ng-container>
|
|
||||||
|
|
||||||
<ng-container matColumnDef="sectorsCount">
|
|
||||||
<th *matHeaderCellDef class="px-1" mat-header-cell>
|
|
||||||
<ng-container i18n>Sectors Count</ng-container>
|
|
||||||
</th>
|
|
||||||
<td *matCellDef="let element" class="px-1 text-right" mat-cell>
|
|
||||||
{{ element.sectorsCount }}
|
|
||||||
</td>
|
|
||||||
</ng-container>
|
|
||||||
|
|
||||||
<ng-container matColumnDef="countriesCount">
|
|
||||||
<th *matHeaderCellDef class="px-1" mat-header-cell>
|
|
||||||
<ng-container i18n>Countries Count</ng-container>
|
|
||||||
</th>
|
|
||||||
<td *matCellDef="let element" class="px-1 text-right" mat-cell>
|
|
||||||
{{ element.countriesCount }}
|
|
||||||
</td>
|
|
||||||
</ng-container>
|
|
||||||
|
|
||||||
<ng-container matColumnDef="comment">
|
|
||||||
<th *matHeaderCellDef class="px-1" mat-header-cell></th>
|
|
||||||
<td *matCellDef="let element" class="px-1" mat-cell>
|
|
||||||
<ion-icon
|
|
||||||
*ngIf="element.comment"
|
|
||||||
class="d-block"
|
|
||||||
name="document-text-outline"
|
|
||||||
/>
|
|
||||||
</td>
|
|
||||||
</ng-container>
|
|
||||||
|
|
||||||
<ng-container matColumnDef="actions" stickyEnd>
|
|
||||||
<th *matHeaderCellDef class="px-1 text-center" mat-header-cell>
|
|
||||||
<button
|
|
||||||
class="mx-1 no-min-width px-2"
|
|
||||||
mat-button
|
|
||||||
[matMenuTriggerFor]="assetProfilesActionsMenu"
|
|
||||||
(click)="$event.stopPropagation()"
|
|
||||||
>
|
|
||||||
<ion-icon name="ellipsis-vertical" />
|
|
||||||
</button>
|
|
||||||
<mat-menu #assetProfilesActionsMenu="matMenu" xPosition="before">
|
|
||||||
<button mat-menu-item (click)="onGather7Days()">
|
|
||||||
<ng-container i18n>Gather Recent Data</ng-container>
|
|
||||||
</button>
|
|
||||||
<button mat-menu-item (click)="onGatherMax()">
|
|
||||||
<ng-container i18n>Gather All Data</ng-container>
|
|
||||||
</button>
|
|
||||||
<button mat-menu-item (click)="onGatherProfileData()">
|
|
||||||
<ng-container i18n>Gather Profile Data</ng-container>
|
|
||||||
</button>
|
|
||||||
</mat-menu>
|
|
||||||
</th>
|
|
||||||
<td *matCellDef="let element" class="px-1 text-center" mat-cell>
|
|
||||||
<button
|
|
||||||
class="mx-1 no-min-width px-2"
|
|
||||||
mat-button
|
|
||||||
[matMenuTriggerFor]="assetProfileActionsMenu"
|
|
||||||
(click)="$event.stopPropagation()"
|
|
||||||
>
|
|
||||||
<ion-icon name="ellipsis-horizontal" />
|
|
||||||
</button>
|
|
||||||
<mat-menu #assetProfileActionsMenu="matMenu" xPosition="before">
|
|
||||||
<a
|
|
||||||
mat-menu-item
|
|
||||||
[queryParams]="{
|
|
||||||
assetProfileDialog: true,
|
|
||||||
dataSource: element.dataSource,
|
|
||||||
symbol: element.symbol
|
symbol: element.symbol
|
||||||
}"
|
})
|
||||||
[routerLink]="[]"
|
) {
|
||||||
>
|
<mat-checkbox
|
||||||
<span class="align-items-center d-flex">
|
color="primary"
|
||||||
<ion-icon class="mr-2" name="create-outline" />
|
[checked]="selection.isSelected(element)"
|
||||||
<span i18n>Edit</span>
|
(change)="$event ? selection.toggle(element) : null"
|
||||||
</span>
|
(click)="$event.stopPropagation()"
|
||||||
</a>
|
>
|
||||||
|
</mat-checkbox>
|
||||||
|
}
|
||||||
|
</td>
|
||||||
|
</ng-container>
|
||||||
|
|
||||||
|
<ng-container matColumnDef="symbol">
|
||||||
|
<th *matHeaderCellDef class="px-1" mat-header-cell mat-sort-header>
|
||||||
|
<ng-container i18n>Symbol</ng-container>
|
||||||
|
</th>
|
||||||
|
<td *matCellDef="let element" class="px-1" mat-cell>
|
||||||
|
{{ element.symbol }}
|
||||||
|
</td>
|
||||||
|
</ng-container>
|
||||||
|
|
||||||
|
<ng-container matColumnDef="nameWithSymbol">
|
||||||
|
<th
|
||||||
|
*matHeaderCellDef
|
||||||
|
class="px-1"
|
||||||
|
mat-header-cell
|
||||||
|
mat-sort-header="symbol"
|
||||||
|
>
|
||||||
|
<ng-container i18n>Name</ng-container>
|
||||||
|
</th>
|
||||||
|
<td *matCellDef="let element" class="line-height-1 px-1" mat-cell>
|
||||||
|
<div class="text-truncate">{{ element.name }}</div>
|
||||||
|
@if (!isUUID(element.symbol)) {
|
||||||
|
<div>
|
||||||
|
<small class="text-muted">{{
|
||||||
|
element.symbol | gfSymbol
|
||||||
|
}}</small>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
</td>
|
||||||
|
<td *matFooterCellDef class="px-1" mat-footer-cell></td>
|
||||||
|
</ng-container>
|
||||||
|
|
||||||
|
<ng-container matColumnDef="dataSource">
|
||||||
|
<th *matHeaderCellDef class="px-1" mat-header-cell mat-sort-header>
|
||||||
|
<ng-container i18n>Data Source</ng-container>
|
||||||
|
</th>
|
||||||
|
<td *matCellDef="let element" class="px-1" mat-cell>
|
||||||
|
{{ element.dataSource }}
|
||||||
|
</td>
|
||||||
|
</ng-container>
|
||||||
|
|
||||||
|
<ng-container matColumnDef="assetClass">
|
||||||
|
<th *matHeaderCellDef class="px-1" mat-header-cell mat-sort-header>
|
||||||
|
<ng-container i18n>Asset Class</ng-container>
|
||||||
|
</th>
|
||||||
|
<td *matCellDef="let element" class="px-1" mat-cell>
|
||||||
|
{{ element.assetClass }}
|
||||||
|
</td>
|
||||||
|
</ng-container>
|
||||||
|
|
||||||
|
<ng-container matColumnDef="assetSubClass">
|
||||||
|
<th *matHeaderCellDef class="px-1" mat-header-cell mat-sort-header>
|
||||||
|
<ng-container i18n>Asset Sub Class</ng-container>
|
||||||
|
</th>
|
||||||
|
<td *matCellDef="let element" class="px-1" mat-cell>
|
||||||
|
{{ element.assetSubClass }}
|
||||||
|
</td>
|
||||||
|
</ng-container>
|
||||||
|
|
||||||
|
<ng-container matColumnDef="date">
|
||||||
|
<th *matHeaderCellDef class="px-1" mat-header-cell>
|
||||||
|
<ng-container i18n>First Activity</ng-container>
|
||||||
|
</th>
|
||||||
|
<td *matCellDef="let element" class="px-1" mat-cell>
|
||||||
|
{{ (element.date | date: defaultDateFormat) ?? '' }}
|
||||||
|
</td>
|
||||||
|
</ng-container>
|
||||||
|
|
||||||
|
<ng-container matColumnDef="activitiesCount">
|
||||||
|
<th *matHeaderCellDef class="px-1" mat-header-cell mat-sort-header>
|
||||||
|
<ng-container i18n>Activities Count</ng-container>
|
||||||
|
</th>
|
||||||
|
<td *matCellDef="let element" class="px-1 text-right" mat-cell>
|
||||||
|
{{ element.activitiesCount }}
|
||||||
|
</td>
|
||||||
|
</ng-container>
|
||||||
|
|
||||||
|
<ng-container matColumnDef="marketDataItemCount">
|
||||||
|
<th *matHeaderCellDef class="px-1" mat-header-cell>
|
||||||
|
<ng-container i18n>Historical Data</ng-container>
|
||||||
|
</th>
|
||||||
|
<td *matCellDef="let element" class="px-1 text-right" mat-cell>
|
||||||
|
{{ element.marketDataItemCount }}
|
||||||
|
</td>
|
||||||
|
</ng-container>
|
||||||
|
|
||||||
|
<ng-container matColumnDef="sectorsCount">
|
||||||
|
<th *matHeaderCellDef class="px-1" mat-header-cell>
|
||||||
|
<ng-container i18n>Sectors Count</ng-container>
|
||||||
|
</th>
|
||||||
|
<td *matCellDef="let element" class="px-1 text-right" mat-cell>
|
||||||
|
{{ element.sectorsCount }}
|
||||||
|
</td>
|
||||||
|
</ng-container>
|
||||||
|
|
||||||
|
<ng-container matColumnDef="countriesCount">
|
||||||
|
<th *matHeaderCellDef class="px-1" mat-header-cell>
|
||||||
|
<ng-container i18n>Countries Count</ng-container>
|
||||||
|
</th>
|
||||||
|
<td *matCellDef="let element" class="px-1 text-right" mat-cell>
|
||||||
|
{{ element.countriesCount }}
|
||||||
|
</td>
|
||||||
|
</ng-container>
|
||||||
|
|
||||||
|
<ng-container matColumnDef="isUsedByUsersWithSubscription">
|
||||||
|
<th *matHeaderCellDef class="px-1" mat-header-cell></th>
|
||||||
|
<td *matCellDef="let element" class="px-1" mat-cell>
|
||||||
|
@if (element.isUsedByUsersWithSubscription) {
|
||||||
|
<gf-premium-indicator [enableLink]="false" />
|
||||||
|
}
|
||||||
|
</td>
|
||||||
|
</ng-container>
|
||||||
|
|
||||||
|
<ng-container matColumnDef="comment">
|
||||||
|
<th *matHeaderCellDef class="px-1" mat-header-cell></th>
|
||||||
|
<td *matCellDef="let element" class="px-1" mat-cell>
|
||||||
|
@if (element.comment) {
|
||||||
|
<ion-icon class="d-block" name="document-text-outline" />
|
||||||
|
}
|
||||||
|
</td>
|
||||||
|
</ng-container>
|
||||||
|
|
||||||
|
<ng-container matColumnDef="actions" stickyEnd>
|
||||||
|
<th *matHeaderCellDef class="px-1 text-center" mat-header-cell>
|
||||||
<button
|
<button
|
||||||
mat-menu-item
|
class="mx-1 no-min-width px-2"
|
||||||
[disabled]="
|
mat-button
|
||||||
element.activitiesCount !== 0 ||
|
[matMenuTriggerFor]="assetProfilesActionsMenu"
|
||||||
element.isBenchmark ||
|
(click)="$event.stopPropagation()"
|
||||||
element.symbol.startsWith(ghostfolioScraperApiSymbolPrefix)
|
>
|
||||||
"
|
<ion-icon name="ellipsis-vertical" />
|
||||||
(click)="
|
</button>
|
||||||
onDeleteProfileData({
|
<mat-menu #assetProfilesActionsMenu="matMenu" xPosition="before">
|
||||||
|
<button mat-menu-item (click)="onGather7Days()">
|
||||||
|
<ng-container i18n>Gather Recent Data</ng-container>
|
||||||
|
</button>
|
||||||
|
<button mat-menu-item (click)="onGatherMax()">
|
||||||
|
<ng-container i18n>Gather All Data</ng-container>
|
||||||
|
</button>
|
||||||
|
<button mat-menu-item (click)="onGatherProfileData()">
|
||||||
|
<ng-container i18n>Gather Profile Data</ng-container>
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
mat-menu-item
|
||||||
|
[disabled]="!selection.hasValue()"
|
||||||
|
(click)="onDeleteAssetProfiles()"
|
||||||
|
>
|
||||||
|
<ng-container i18n>Delete Profiles</ng-container>
|
||||||
|
</button>
|
||||||
|
</mat-menu>
|
||||||
|
</th>
|
||||||
|
<td *matCellDef="let element" class="px-1 text-center" mat-cell>
|
||||||
|
<button
|
||||||
|
class="mx-1 no-min-width px-2"
|
||||||
|
mat-button
|
||||||
|
[matMenuTriggerFor]="assetProfileActionsMenu"
|
||||||
|
(click)="$event.stopPropagation()"
|
||||||
|
>
|
||||||
|
<ion-icon name="ellipsis-horizontal" />
|
||||||
|
</button>
|
||||||
|
<mat-menu #assetProfileActionsMenu="matMenu" xPosition="before">
|
||||||
|
<a
|
||||||
|
mat-menu-item
|
||||||
|
[queryParams]="{
|
||||||
|
assetProfileDialog: true,
|
||||||
dataSource: element.dataSource,
|
dataSource: element.dataSource,
|
||||||
symbol: element.symbol
|
symbol: element.symbol
|
||||||
})
|
}"
|
||||||
"
|
[routerLink]="[]"
|
||||||
>
|
>
|
||||||
<span class="align-items-center d-flex">
|
<span class="align-items-center d-flex">
|
||||||
<ion-icon class="mr-2" name="trash-outline" />
|
<ion-icon class="mr-2" name="create-outline" />
|
||||||
<span i18n>Delete</span>
|
<span i18n>Edit</span>
|
||||||
</span>
|
</span>
|
||||||
</button>
|
</a>
|
||||||
</mat-menu>
|
<button
|
||||||
</td>
|
mat-menu-item
|
||||||
</ng-container>
|
[disabled]="
|
||||||
|
!adminMarketDataService.hasPermissionToDeleteAssetProfile({
|
||||||
|
activitiesCount: element.activitiesCount,
|
||||||
|
isBenchmark: element.isBenchmark,
|
||||||
|
symbol: element.symbol
|
||||||
|
})
|
||||||
|
"
|
||||||
|
(click)="
|
||||||
|
onDeleteAssetProfile({
|
||||||
|
dataSource: element.dataSource,
|
||||||
|
symbol: element.symbol
|
||||||
|
})
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<span class="align-items-center d-flex">
|
||||||
|
<ion-icon class="mr-2" name="trash-outline" />
|
||||||
|
<span i18n>Delete</span>
|
||||||
|
</span>
|
||||||
|
</button>
|
||||||
|
</mat-menu>
|
||||||
|
</td>
|
||||||
|
</ng-container>
|
||||||
|
|
||||||
<tr *matHeaderRowDef="displayedColumns" mat-header-row></tr>
|
<tr *matHeaderRowDef="displayedColumns" mat-header-row></tr>
|
||||||
<tr
|
<tr
|
||||||
*matRowDef="let row; columns: displayedColumns"
|
*matRowDef="let row; columns: displayedColumns"
|
||||||
class="cursor-pointer"
|
class="cursor-pointer"
|
||||||
mat-row
|
mat-row
|
||||||
(click)="
|
(click)="
|
||||||
onOpenAssetProfileDialog({
|
onOpenAssetProfileDialog({
|
||||||
dataSource: row.dataSource,
|
dataSource: row.dataSource,
|
||||||
symbol: row.symbol
|
symbol: row.symbol
|
||||||
})
|
})
|
||||||
"
|
"
|
||||||
></tr>
|
></tr>
|
||||||
</table>
|
</table>
|
||||||
|
</div>
|
||||||
|
|
||||||
<mat-paginator
|
<mat-paginator
|
||||||
[length]="totalItems"
|
[length]="totalItems"
|
||||||
@ -222,15 +265,16 @@
|
|||||||
(page)="onChangePage($event)"
|
(page)="onChangePage($event)"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<ngx-skeleton-loader
|
@if (isLoading && totalItems === 0) {
|
||||||
*ngIf="isLoading && totalItems === 0"
|
<ngx-skeleton-loader
|
||||||
animation="pulse"
|
animation="pulse"
|
||||||
class="px-4 py-3"
|
class="px-4 py-3"
|
||||||
[theme]="{
|
[theme]="{
|
||||||
height: '1.5rem',
|
height: '1.5rem',
|
||||||
width: '100%'
|
width: '100%'
|
||||||
}"
|
}"
|
||||||
/>
|
/>
|
||||||
|
}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -1,9 +1,11 @@
|
|||||||
import { GfSymbolModule } from '@ghostfolio/client/pipes/symbol/symbol.module';
|
import { GfSymbolModule } from '@ghostfolio/client/pipes/symbol/symbol.module';
|
||||||
import { GfActivitiesFilterComponent } from '@ghostfolio/ui/activities-filter';
|
import { GfActivitiesFilterComponent } from '@ghostfolio/ui/activities-filter';
|
||||||
|
import { GfPremiumIndicatorComponent } from '@ghostfolio/ui/premium-indicator';
|
||||||
|
|
||||||
import { CommonModule } from '@angular/common';
|
import { CommonModule } from '@angular/common';
|
||||||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
|
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
|
||||||
import { MatButtonModule } from '@angular/material/button';
|
import { MatButtonModule } from '@angular/material/button';
|
||||||
|
import { MatCheckboxModule } from '@angular/material/checkbox';
|
||||||
import { MatMenuModule } from '@angular/material/menu';
|
import { MatMenuModule } from '@angular/material/menu';
|
||||||
import { MatPaginatorModule } from '@angular/material/paginator';
|
import { MatPaginatorModule } from '@angular/material/paginator';
|
||||||
import { MatSortModule } from '@angular/material/sort';
|
import { MatSortModule } from '@angular/material/sort';
|
||||||
@ -23,8 +25,10 @@ import { GfCreateAssetProfileDialogModule } from './create-asset-profile-dialog/
|
|||||||
GfActivitiesFilterComponent,
|
GfActivitiesFilterComponent,
|
||||||
GfAssetProfileDialogModule,
|
GfAssetProfileDialogModule,
|
||||||
GfCreateAssetProfileDialogModule,
|
GfCreateAssetProfileDialogModule,
|
||||||
|
GfPremiumIndicatorComponent,
|
||||||
GfSymbolModule,
|
GfSymbolModule,
|
||||||
MatButtonModule,
|
MatButtonModule,
|
||||||
|
MatCheckboxModule,
|
||||||
MatMenuModule,
|
MatMenuModule,
|
||||||
MatPaginatorModule,
|
MatPaginatorModule,
|
||||||
MatSortModule,
|
MatSortModule,
|
||||||
|
@ -1,14 +1,19 @@
|
|||||||
import { AdminService } from '@ghostfolio/client/services/admin.service';
|
import { AdminService } from '@ghostfolio/client/services/admin.service';
|
||||||
import { UniqueAsset } from '@ghostfolio/common/interfaces';
|
import { ghostfolioScraperApiSymbolPrefix } from '@ghostfolio/common/config';
|
||||||
|
import { getCurrencyFromSymbol, isCurrency } from '@ghostfolio/common/helper';
|
||||||
|
import {
|
||||||
|
AdminMarketDataItem,
|
||||||
|
UniqueAsset
|
||||||
|
} from '@ghostfolio/common/interfaces';
|
||||||
|
|
||||||
import { Injectable } from '@angular/core';
|
import { Injectable } from '@angular/core';
|
||||||
import { takeUntil } from 'rxjs';
|
import { EMPTY, catchError, finalize, forkJoin, takeUntil } from 'rxjs';
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class AdminMarketDataService {
|
export class AdminMarketDataService {
|
||||||
public constructor(private adminService: AdminService) {}
|
public constructor(private adminService: AdminService) {}
|
||||||
|
|
||||||
public deleteProfileData({ dataSource, symbol }: UniqueAsset) {
|
public deleteAssetProfile({ dataSource, symbol }: UniqueAsset) {
|
||||||
const confirmation = confirm(
|
const confirmation = confirm(
|
||||||
$localize`Do you really want to delete this asset profile?`
|
$localize`Do you really want to delete this asset profile?`
|
||||||
);
|
);
|
||||||
@ -23,4 +28,44 @@ export class AdminMarketDataService {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public deleteAssetProfiles(uniqueAssets: UniqueAsset[]) {
|
||||||
|
const confirmation = confirm(
|
||||||
|
$localize`Do you really want to delete these profiles?`
|
||||||
|
);
|
||||||
|
|
||||||
|
if (confirmation) {
|
||||||
|
const deleteRequests = uniqueAssets.map(({ dataSource, symbol }) => {
|
||||||
|
return this.adminService.deleteProfileData({ dataSource, symbol });
|
||||||
|
});
|
||||||
|
|
||||||
|
forkJoin(deleteRequests)
|
||||||
|
.pipe(
|
||||||
|
catchError(() => {
|
||||||
|
alert($localize`Oops! Could not delete profiles.`);
|
||||||
|
|
||||||
|
return EMPTY;
|
||||||
|
}),
|
||||||
|
finalize(() => {
|
||||||
|
setTimeout(() => {
|
||||||
|
window.location.reload();
|
||||||
|
}, 300);
|
||||||
|
})
|
||||||
|
)
|
||||||
|
.subscribe(() => {});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public hasPermissionToDeleteAssetProfile({
|
||||||
|
activitiesCount,
|
||||||
|
isBenchmark,
|
||||||
|
symbol
|
||||||
|
}: Pick<AdminMarketDataItem, 'activitiesCount' | 'isBenchmark' | 'symbol'>) {
|
||||||
|
return (
|
||||||
|
activitiesCount === 0 &&
|
||||||
|
!isBenchmark &&
|
||||||
|
!isCurrency(getCurrencyFromSymbol(symbol)) &&
|
||||||
|
!symbol.startsWith(ghostfolioScraperApiSymbolPrefix)
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -87,7 +87,7 @@ export class AssetProfileDialog implements OnDestroy, OnInit {
|
|||||||
private unsubscribeSubject = new Subject<void>();
|
private unsubscribeSubject = new Subject<void>();
|
||||||
|
|
||||||
public constructor(
|
public constructor(
|
||||||
private adminMarketDataService: AdminMarketDataService,
|
public adminMarketDataService: AdminMarketDataService,
|
||||||
private adminService: AdminService,
|
private adminService: AdminService,
|
||||||
private changeDetectorRef: ChangeDetectorRef,
|
private changeDetectorRef: ChangeDetectorRef,
|
||||||
@Inject(MAT_DIALOG_DATA) public data: AssetProfileDialogParams,
|
@Inject(MAT_DIALOG_DATA) public data: AssetProfileDialogParams,
|
||||||
@ -176,7 +176,7 @@ export class AssetProfileDialog implements OnDestroy, OnInit {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public onDeleteProfileData({ dataSource, symbol }: UniqueAsset) {
|
public onDeleteProfileData({ dataSource, symbol }: UniqueAsset) {
|
||||||
this.adminMarketDataService.deleteProfileData({ dataSource, symbol });
|
this.adminMarketDataService.deleteAssetProfile({ dataSource, symbol });
|
||||||
|
|
||||||
this.dialogRef.close();
|
this.dialogRef.close();
|
||||||
}
|
}
|
||||||
|
@ -48,9 +48,11 @@
|
|||||||
mat-menu-item
|
mat-menu-item
|
||||||
type="button"
|
type="button"
|
||||||
[disabled]="
|
[disabled]="
|
||||||
assetProfile?.activitiesCount !== 0 ||
|
!adminMarketDataService.hasPermissionToDeleteAssetProfile({
|
||||||
isBenchmark ||
|
activitiesCount: assetProfile?.activitiesCount,
|
||||||
data.symbol.startsWith(ghostfolioScraperApiSymbolPrefix)
|
isBenchmark: isBenchmark,
|
||||||
|
symbol: data.symbol
|
||||||
|
})
|
||||||
"
|
"
|
||||||
(click)="
|
(click)="
|
||||||
onDeleteProfileData({
|
onDeleteProfileData({
|
||||||
@ -146,7 +148,7 @@
|
|||||||
i18n
|
i18n
|
||||||
size="medium"
|
size="medium"
|
||||||
[locale]="data.locale"
|
[locale]="data.locale"
|
||||||
[value]="assetProfile?.activitiesCount ?? 0"
|
[value]="assetProfile?.activitiesCount"
|
||||||
>Activities</gf-value
|
>Activities</gf-value
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
@ -243,11 +245,11 @@
|
|||||||
<mat-label i18n>Asset Class</mat-label>
|
<mat-label i18n>Asset Class</mat-label>
|
||||||
<mat-select formControlName="assetClass">
|
<mat-select formControlName="assetClass">
|
||||||
<mat-option [value]="null" />
|
<mat-option [value]="null" />
|
||||||
<mat-option
|
@for (assetClass of assetClasses; track assetClass) {
|
||||||
*ngFor="let assetClass of assetClasses"
|
<mat-option [value]="assetClass.id">{{
|
||||||
[value]="assetClass.id"
|
assetClass.label
|
||||||
>{{ assetClass.label }}</mat-option
|
}}</mat-option>
|
||||||
>
|
}
|
||||||
</mat-select>
|
</mat-select>
|
||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
</div>
|
</div>
|
||||||
@ -256,11 +258,11 @@
|
|||||||
<mat-label i18n>Asset Sub Class</mat-label>
|
<mat-label i18n>Asset Sub Class</mat-label>
|
||||||
<mat-select formControlName="assetSubClass">
|
<mat-select formControlName="assetSubClass">
|
||||||
<mat-option [value]="null" />
|
<mat-option [value]="null" />
|
||||||
<mat-option
|
@for (assetSubClass of assetSubClasses; track assetSubClass) {
|
||||||
*ngFor="let assetSubClass of assetSubClasses"
|
<mat-option [value]="assetSubClass.id">{{
|
||||||
[value]="assetSubClass.id"
|
assetSubClass.label
|
||||||
>{{ assetSubClass.label }}</mat-option
|
}}</mat-option>
|
||||||
>
|
}
|
||||||
</mat-select>
|
</mat-select>
|
||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
</div>
|
</div>
|
||||||
|
@ -20,21 +20,24 @@
|
|||||||
</mat-radio-group>
|
</mat-radio-group>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div *ngIf="mode === 'auto'">
|
@if (mode === 'auto') {
|
||||||
<mat-form-field appearance="outline" class="w-100">
|
<div>
|
||||||
<mat-label i18n>Name, symbol or ISIN</mat-label>
|
<mat-form-field appearance="outline" class="w-100">
|
||||||
<gf-symbol-autocomplete
|
<mat-label i18n>Name, symbol or ISIN</mat-label>
|
||||||
formControlName="searchSymbol"
|
<gf-symbol-autocomplete
|
||||||
[includeIndices]="true"
|
formControlName="searchSymbol"
|
||||||
/>
|
[includeIndices]="true"
|
||||||
</mat-form-field>
|
/>
|
||||||
</div>
|
</mat-form-field>
|
||||||
<div *ngIf="mode === 'manual'">
|
</div>
|
||||||
<mat-form-field appearance="outline" class="w-100">
|
} @else if (mode === 'manual') {
|
||||||
<mat-label i18n>Symbol</mat-label>
|
<div>
|
||||||
<input formControlName="addSymbol" matInput />
|
<mat-form-field appearance="outline" class="w-100">
|
||||||
</mat-form-field>
|
<mat-label i18n>Symbol</mat-label>
|
||||||
</div>
|
<input formControlName="addSymbol" matInput />
|
||||||
|
</mat-form-field>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
</div>
|
</div>
|
||||||
<div class="d-flex justify-content-end" mat-dialog-actions>
|
<div class="d-flex justify-content-end" mat-dialog-actions>
|
||||||
<button i18n mat-button type="button" (click)="onCancel()">Cancel</button>
|
<button i18n mat-button type="button" (click)="onCancel()">Cancel</button>
|
||||||
|
@ -12,11 +12,7 @@
|
|||||||
<div class="d-flex my-3">
|
<div class="d-flex my-3">
|
||||||
<div class="w-50" i18n>User Count</div>
|
<div class="w-50" i18n>User Count</div>
|
||||||
<div class="w-50">
|
<div class="w-50">
|
||||||
<gf-value
|
<gf-value [locale]="user?.settings?.locale" [value]="userCount" />
|
||||||
[locale]="user?.settings?.locale"
|
|
||||||
[precision]="0"
|
|
||||||
[value]="userCount"
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="d-flex my-3">
|
<div class="d-flex my-3">
|
||||||
@ -24,75 +20,79 @@
|
|||||||
<div class="w-50">
|
<div class="w-50">
|
||||||
<gf-value
|
<gf-value
|
||||||
[locale]="user?.settings?.locale"
|
[locale]="user?.settings?.locale"
|
||||||
[precision]="0"
|
|
||||||
[value]="transactionCount"
|
[value]="transactionCount"
|
||||||
/>
|
/>
|
||||||
<div *ngIf="transactionCount && userCount">
|
@if (transactionCount && userCount) {
|
||||||
{{ transactionCount / userCount | number: '1.2-2' }}
|
<div>
|
||||||
<span i18n>per User</span>
|
{{ transactionCount / userCount | number: '1.2-2' }}
|
||||||
</div>
|
<span i18n>per User</span>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="align-items-start d-flex my-3">
|
<div class="align-items-start d-flex my-3">
|
||||||
<div class="w-50" i18n>Exchange Rates</div>
|
<div class="w-50" i18n>Exchange Rates</div>
|
||||||
<div class="w-50">
|
<div class="w-50">
|
||||||
<table>
|
<table>
|
||||||
<tr *ngFor="let exchangeRate of exchangeRates">
|
@for (exchangeRate of exchangeRates; track exchangeRate) {
|
||||||
<td>
|
<tr>
|
||||||
<gf-value [locale]="user?.settings?.locale" [value]="1" />
|
<td>
|
||||||
</td>
|
<gf-value [locale]="user?.settings?.locale" [value]="1" />
|
||||||
<td class="pl-1">{{ exchangeRate.label1 }}</td>
|
</td>
|
||||||
<td class="px-1">=</td>
|
<td class="pl-1">{{ exchangeRate.label1 }}</td>
|
||||||
<td align="right">
|
<td class="px-1">=</td>
|
||||||
<gf-value
|
<td align="right">
|
||||||
class="d-inline-block"
|
<gf-value
|
||||||
[locale]="user?.settings?.locale"
|
class="d-inline-block"
|
||||||
[precision]="4"
|
[locale]="user?.settings?.locale"
|
||||||
[value]="exchangeRate.value"
|
[precision]="4"
|
||||||
/>
|
[value]="exchangeRate.value"
|
||||||
</td>
|
/>
|
||||||
<td class="pl-1">{{ exchangeRate.label2 }}</td>
|
</td>
|
||||||
<td>
|
<td class="pl-1">{{ exchangeRate.label2 }}</td>
|
||||||
<button
|
<td>
|
||||||
class="mx-1 no-min-width px-2"
|
|
||||||
mat-button
|
|
||||||
[matMenuTriggerFor]="exchangeRateActionsMenu"
|
|
||||||
(click)="$event.stopPropagation()"
|
|
||||||
>
|
|
||||||
<ion-icon name="ellipsis-horizontal" />
|
|
||||||
</button>
|
|
||||||
<mat-menu
|
|
||||||
#exchangeRateActionsMenu="matMenu"
|
|
||||||
class="h-100 mx-1 no-min-width px-2"
|
|
||||||
xPosition="before"
|
|
||||||
>
|
|
||||||
<a
|
|
||||||
mat-menu-item
|
|
||||||
[queryParams]="{
|
|
||||||
assetProfileDialog: true,
|
|
||||||
dataSource: exchangeRate.dataSource,
|
|
||||||
symbol: exchangeRate.symbol
|
|
||||||
}"
|
|
||||||
[routerLink]="['/admin', 'market-data']"
|
|
||||||
>
|
|
||||||
<span class="align-items-center d-flex">
|
|
||||||
<ion-icon class="mr-2" name="create-outline" />
|
|
||||||
<span i18n>Edit</span>
|
|
||||||
</span>
|
|
||||||
</a>
|
|
||||||
<button
|
<button
|
||||||
*ngIf="customCurrencies.includes(exchangeRate.label2)"
|
class="mx-1 no-min-width px-2"
|
||||||
mat-menu-item
|
mat-button
|
||||||
(click)="onDeleteCurrency(exchangeRate.label2)"
|
[matMenuTriggerFor]="exchangeRateActionsMenu"
|
||||||
|
(click)="$event.stopPropagation()"
|
||||||
>
|
>
|
||||||
<span class="align-items-center d-flex">
|
<ion-icon name="ellipsis-horizontal" />
|
||||||
<ion-icon class="mr-2" name="trash-outline" />
|
|
||||||
<span i18n>Delete</span>
|
|
||||||
</span>
|
|
||||||
</button>
|
</button>
|
||||||
</mat-menu>
|
<mat-menu
|
||||||
</td>
|
#exchangeRateActionsMenu="matMenu"
|
||||||
</tr>
|
class="h-100 mx-1 no-min-width px-2"
|
||||||
|
xPosition="before"
|
||||||
|
>
|
||||||
|
<a
|
||||||
|
mat-menu-item
|
||||||
|
[queryParams]="{
|
||||||
|
assetProfileDialog: true,
|
||||||
|
dataSource: exchangeRate.dataSource,
|
||||||
|
symbol: exchangeRate.symbol
|
||||||
|
}"
|
||||||
|
[routerLink]="['/admin', 'market-data']"
|
||||||
|
>
|
||||||
|
<span class="align-items-center d-flex">
|
||||||
|
<ion-icon class="mr-2" name="create-outline" />
|
||||||
|
<span i18n>Edit</span>
|
||||||
|
</span>
|
||||||
|
</a>
|
||||||
|
@if (customCurrencies.includes(exchangeRate.label2)) {
|
||||||
|
<button
|
||||||
|
mat-menu-item
|
||||||
|
(click)="onDeleteCurrency(exchangeRate.label2)"
|
||||||
|
>
|
||||||
|
<span class="align-items-center d-flex">
|
||||||
|
<ion-icon class="mr-2" name="trash-outline" />
|
||||||
|
<span i18n>Delete</span>
|
||||||
|
</span>
|
||||||
|
</button>
|
||||||
|
}
|
||||||
|
</mat-menu>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
}
|
||||||
</table>
|
</table>
|
||||||
<div class="mt-2">
|
<div class="mt-2">
|
||||||
<button
|
<button
|
||||||
@ -119,17 +119,19 @@
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div *ngIf="hasPermissionToToggleReadOnlyMode" class="d-flex my-3">
|
@if (hasPermissionToToggleReadOnlyMode) {
|
||||||
<div class="w-50" i18n>Read-only Mode</div>
|
<div class="d-flex my-3">
|
||||||
<div class="w-50">
|
<div class="w-50" i18n>Read-only Mode</div>
|
||||||
<mat-slide-toggle
|
<div class="w-50">
|
||||||
color="primary"
|
<mat-slide-toggle
|
||||||
hideIcon="true"
|
color="primary"
|
||||||
[checked]="info?.isReadOnlyMode"
|
hideIcon="true"
|
||||||
(change)="onReadOnlyModeChange($event)"
|
[checked]="info?.isReadOnlyMode"
|
||||||
/>
|
(change)="onReadOnlyModeChange($event)"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
}
|
||||||
<div class="d-flex my-3">
|
<div class="d-flex my-3">
|
||||||
<div class="w-50" i18n>Data Gathering</div>
|
<div class="w-50" i18n>Data Gathering</div>
|
||||||
<div class="w-50">
|
<div class="w-50">
|
||||||
@ -141,99 +143,105 @@
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div *ngIf="hasPermissionForSystemMessage" class="d-flex my-3">
|
@if (hasPermissionForSystemMessage) {
|
||||||
<div class="w-50" i18n>System Message</div>
|
<div class="d-flex my-3">
|
||||||
<div class="w-50">
|
<div class="w-50" i18n>System Message</div>
|
||||||
<div *ngIf="systemMessage" class="align-items-center d-flex">
|
<div class="w-50">
|
||||||
<div class="text-truncate">{{ systemMessage | json }}</div>
|
@if (systemMessage) {
|
||||||
<button
|
<div class="align-items-center d-flex">
|
||||||
class="h-100 mx-1 no-min-width px-2"
|
<div class="text-truncate">{{ systemMessage | json }}</div>
|
||||||
mat-button
|
|
||||||
(click)="onDeleteSystemMessage()"
|
|
||||||
>
|
|
||||||
<ion-icon name="trash-outline" />
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
<button
|
|
||||||
*ngIf="!info?.systemMessage"
|
|
||||||
class="mt-2"
|
|
||||||
color="accent"
|
|
||||||
mat-flat-button
|
|
||||||
(click)="onSetSystemMessage()"
|
|
||||||
>
|
|
||||||
<ion-icon class="mr-1" name="information-circle-outline" />
|
|
||||||
<span i18n>Set Message</span>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div
|
|
||||||
*ngIf="hasPermissionForSubscription"
|
|
||||||
class="d-flex my-3 subscription"
|
|
||||||
>
|
|
||||||
<div class="w-50" i18n>Coupons</div>
|
|
||||||
<div class="w-50">
|
|
||||||
<table>
|
|
||||||
<tr *ngFor="let coupon of coupons">
|
|
||||||
<td class="text-monospace">{{ coupon.code }}</td>
|
|
||||||
<td class="pl-2 text-right">{{ coupon.duration }}</td>
|
|
||||||
<td>
|
|
||||||
<button
|
<button
|
||||||
class="mx-1 no-min-width px-2"
|
|
||||||
mat-button
|
|
||||||
[matMenuTriggerFor]="couponActionsMenu"
|
|
||||||
(click)="$event.stopPropagation()"
|
|
||||||
>
|
|
||||||
<ion-icon name="ellipsis-horizontal" />
|
|
||||||
</button>
|
|
||||||
<mat-menu
|
|
||||||
#couponActionsMenu="matMenu"
|
|
||||||
class="h-100 mx-1 no-min-width px-2"
|
class="h-100 mx-1 no-min-width px-2"
|
||||||
xPosition="before"
|
mat-button
|
||||||
|
(click)="onDeleteSystemMessage()"
|
||||||
>
|
>
|
||||||
<button
|
<ion-icon name="trash-outline" />
|
||||||
mat-menu-item
|
</button>
|
||||||
(click)="onDeleteCoupon(coupon.code)"
|
</div>
|
||||||
>
|
}
|
||||||
<span class="align-items-center d-flex">
|
@if (!info?.systemMessage) {
|
||||||
<ion-icon class="mr-2" name="trash-outline" />
|
|
||||||
<span i18n>Delete</span>
|
|
||||||
</span>
|
|
||||||
</button>
|
|
||||||
</mat-menu>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
<div class="mt-2">
|
|
||||||
<form #couponForm="ngForm" class="align-items-center d-flex">
|
|
||||||
<mat-form-field
|
|
||||||
appearance="outline"
|
|
||||||
class="mr-2 without-hint"
|
|
||||||
>
|
|
||||||
<mat-select
|
|
||||||
name="duration"
|
|
||||||
[value]="couponDuration"
|
|
||||||
(selectionChange)="onChangeCouponDuration($event.value)"
|
|
||||||
>
|
|
||||||
<mat-option value="7 days">7 Days</mat-option>
|
|
||||||
<mat-option value="14 days">14 Days</mat-option>
|
|
||||||
<mat-option value="30 days">30 Days</mat-option>
|
|
||||||
<mat-option value="90 days">90 Days</mat-option>
|
|
||||||
<mat-option value="180 days">180 Days</mat-option>
|
|
||||||
<mat-option value="1 year">1 Year</mat-option>
|
|
||||||
</mat-select>
|
|
||||||
</mat-form-field>
|
|
||||||
<button
|
<button
|
||||||
class="mt-1"
|
class="mt-2"
|
||||||
color="primary"
|
color="accent"
|
||||||
mat-flat-button
|
mat-flat-button
|
||||||
(click)="onAddCoupon()"
|
(click)="onSetSystemMessage()"
|
||||||
>
|
>
|
||||||
<span i18n>Add</span>
|
<ion-icon class="mr-1" name="information-circle-outline" />
|
||||||
|
<span i18n>Set Message</span>
|
||||||
</button>
|
</button>
|
||||||
</form>
|
}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
}
|
||||||
|
@if (hasPermissionForSubscription) {
|
||||||
|
<div class="d-flex my-3 subscription">
|
||||||
|
<div class="w-50" i18n>Coupons</div>
|
||||||
|
<div class="w-50">
|
||||||
|
<table>
|
||||||
|
@for (coupon of coupons; track coupon) {
|
||||||
|
<tr>
|
||||||
|
<td class="text-monospace">{{ coupon.code }}</td>
|
||||||
|
<td class="pl-2 text-right">{{ coupon.duration }}</td>
|
||||||
|
<td>
|
||||||
|
<button
|
||||||
|
class="mx-1 no-min-width px-2"
|
||||||
|
mat-button
|
||||||
|
[matMenuTriggerFor]="couponActionsMenu"
|
||||||
|
(click)="$event.stopPropagation()"
|
||||||
|
>
|
||||||
|
<ion-icon name="ellipsis-horizontal" />
|
||||||
|
</button>
|
||||||
|
<mat-menu
|
||||||
|
#couponActionsMenu="matMenu"
|
||||||
|
class="h-100 mx-1 no-min-width px-2"
|
||||||
|
xPosition="before"
|
||||||
|
>
|
||||||
|
<button
|
||||||
|
mat-menu-item
|
||||||
|
(click)="onDeleteCoupon(coupon.code)"
|
||||||
|
>
|
||||||
|
<span class="align-items-center d-flex">
|
||||||
|
<ion-icon class="mr-2" name="trash-outline" />
|
||||||
|
<span i18n>Delete</span>
|
||||||
|
</span>
|
||||||
|
</button>
|
||||||
|
</mat-menu>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
}
|
||||||
|
</table>
|
||||||
|
<div class="mt-2">
|
||||||
|
<form #couponForm="ngForm" class="align-items-center d-flex">
|
||||||
|
<mat-form-field
|
||||||
|
appearance="outline"
|
||||||
|
class="mr-2 without-hint"
|
||||||
|
>
|
||||||
|
<mat-select
|
||||||
|
name="duration"
|
||||||
|
[value]="couponDuration"
|
||||||
|
(selectionChange)="onChangeCouponDuration($event.value)"
|
||||||
|
>
|
||||||
|
<mat-option value="7 days">7 Days</mat-option>
|
||||||
|
<mat-option value="14 days">14 Days</mat-option>
|
||||||
|
<mat-option value="30 days">30 Days</mat-option>
|
||||||
|
<mat-option value="90 days">90 Days</mat-option>
|
||||||
|
<mat-option value="180 days">180 Days</mat-option>
|
||||||
|
<mat-option value="1 year">1 Year</mat-option>
|
||||||
|
</mat-select>
|
||||||
|
</mat-form-field>
|
||||||
|
<button
|
||||||
|
class="mt-1"
|
||||||
|
color="primary"
|
||||||
|
mat-flat-button
|
||||||
|
(click)="onAddCoupon()"
|
||||||
|
>
|
||||||
|
<span i18n>Add</span>
|
||||||
|
</button>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
<div class="d-flex my-3">
|
<div class="d-flex my-3">
|
||||||
<div class="w-50" i18n>Housekeeping</div>
|
<div class="w-50" i18n>Housekeeping</div>
|
||||||
<div class="w-50">
|
<div class="w-50">
|
||||||
|
@ -30,12 +30,13 @@
|
|||||||
<ng-container i18n>Name</ng-container>
|
<ng-container i18n>Name</ng-container>
|
||||||
</th>
|
</th>
|
||||||
<td *matCellDef="let element" class="px-1" mat-cell>
|
<td *matCellDef="let element" class="px-1" mat-cell>
|
||||||
<gf-asset-profile-icon
|
@if (element.url) {
|
||||||
*ngIf="element.url"
|
<gf-asset-profile-icon
|
||||||
class="d-inline mr-1"
|
class="d-inline mr-1"
|
||||||
[tooltip]="element.name"
|
[tooltip]="element.name"
|
||||||
[url]="element.url"
|
[url]="element.url"
|
||||||
/>
|
/>
|
||||||
|
}
|
||||||
<span>{{ element.name }}</span>
|
<span>{{ element.name }}</span>
|
||||||
</td></ng-container
|
</td></ng-container
|
||||||
>
|
>
|
||||||
|
@ -4,8 +4,11 @@
|
|||||||
(keyup.enter)="platformForm.valid && onSubmit()"
|
(keyup.enter)="platformForm.valid && onSubmit()"
|
||||||
(ngSubmit)="onSubmit()"
|
(ngSubmit)="onSubmit()"
|
||||||
>
|
>
|
||||||
<h1 *ngIf="data.platform.id" i18n mat-dialog-title>Update platform</h1>
|
@if (data.platform.id) {
|
||||||
<h1 *ngIf="!data.platform.id" i18n mat-dialog-title>Add platform</h1>
|
<h1 i18n mat-dialog-title>Update platform</h1>
|
||||||
|
} @else {
|
||||||
|
<h1 i18n mat-dialog-title>Add platform</h1>
|
||||||
|
}
|
||||||
<div class="flex-grow-1 py-3" mat-dialog-content>
|
<div class="flex-grow-1 py-3" mat-dialog-content>
|
||||||
<div>
|
<div>
|
||||||
<mat-form-field appearance="outline" class="w-100">
|
<mat-form-field appearance="outline" class="w-100">
|
||||||
|
@ -4,8 +4,11 @@
|
|||||||
(keyup.enter)="tagForm.valid && onSubmit()"
|
(keyup.enter)="tagForm.valid && onSubmit()"
|
||||||
(ngSubmit)="onSubmit()"
|
(ngSubmit)="onSubmit()"
|
||||||
>
|
>
|
||||||
<h1 *ngIf="data.tag.id" i18n mat-dialog-title>Update tag</h1>
|
@if (data.tag.id) {
|
||||||
<h1 *ngIf="!data.tag.id" i18n mat-dialog-title>Add tag</h1>
|
<h1 i18n mat-dialog-title>Update tag</h1>
|
||||||
|
} @else {
|
||||||
|
<h1 i18n mat-dialog-title>Add tag</h1>
|
||||||
|
}
|
||||||
<div class="flex-grow-1 py-3" mat-dialog-content>
|
<div class="flex-grow-1 py-3" mat-dialog-content>
|
||||||
<div>
|
<div>
|
||||||
<mat-form-field appearance="outline" class="w-100">
|
<mat-form-field appearance="outline" class="w-100">
|
||||||
|
@ -49,43 +49,44 @@
|
|||||||
}"
|
}"
|
||||||
>{{ (element.id | slice: 0 : 5) + '...' }}</span
|
>{{ (element.id | slice: 0 : 5) + '...' }}</span
|
||||||
>
|
>
|
||||||
<gf-premium-indicator
|
@if (element?.subscription?.type === 'Premium') {
|
||||||
*ngIf="element?.subscription?.type === 'Premium'"
|
<gf-premium-indicator
|
||||||
class="ml-1"
|
class="ml-1"
|
||||||
[enableLink]="false"
|
[enableLink]="false"
|
||||||
[title]="
|
[title]="
|
||||||
'Expires ' +
|
'Expires ' +
|
||||||
formatDistanceToNow(element.subscription.expiresAt) +
|
formatDistanceToNow(element.subscription.expiresAt) +
|
||||||
' (' +
|
' (' +
|
||||||
(element.subscription.expiresAt | date: defaultDateFormat) +
|
(element.subscription.expiresAt
|
||||||
')'
|
| date: defaultDateFormat) +
|
||||||
"
|
')'
|
||||||
/>
|
"
|
||||||
|
/>
|
||||||
|
}
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
|
||||||
<ng-container
|
@if (hasPermissionForSubscription) {
|
||||||
*ngIf="hasPermissionForSubscription"
|
<ng-container matColumnDef="country">
|
||||||
matColumnDef="country"
|
<th
|
||||||
>
|
*matHeaderCellDef
|
||||||
<th
|
class="mat-mdc-header-cell px-1 py-2"
|
||||||
*matHeaderCellDef
|
mat-header-cell
|
||||||
class="mat-mdc-header-cell px-1 py-2"
|
>
|
||||||
mat-header-cell
|
<ng-container i18n>Country</ng-container>
|
||||||
>
|
</th>
|
||||||
<ng-container i18n>Country</ng-container>
|
<td
|
||||||
</th>
|
*matCellDef="let element"
|
||||||
<td
|
class="mat-mdc-cell px-1 py-2"
|
||||||
*matCellDef="let element"
|
mat-cell
|
||||||
class="mat-mdc-cell px-1 py-2"
|
>
|
||||||
mat-cell
|
<span class="h5" [title]="element.country">{{
|
||||||
>
|
getEmojiFlag(element.country)
|
||||||
<span class="h5" [title]="element.country">{{
|
}}</span>
|
||||||
getEmojiFlag(element.country)
|
</td>
|
||||||
}}</span>
|
</ng-container>
|
||||||
</td>
|
}
|
||||||
</ng-container>
|
|
||||||
|
|
||||||
<ng-container matColumnDef="registration">
|
<ng-container matColumnDef="registration">
|
||||||
<th
|
<th
|
||||||
@ -146,51 +147,49 @@
|
|||||||
</td>
|
</td>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
|
||||||
<ng-container
|
@if (hasPermissionForSubscription) {
|
||||||
*ngIf="hasPermissionForSubscription"
|
<ng-container matColumnDef="engagementPerDay">
|
||||||
matColumnDef="engagementPerDay"
|
<th
|
||||||
>
|
*matHeaderCellDef
|
||||||
<th
|
class="mat-mdc-header-cell px-1 py-2 text-right"
|
||||||
*matHeaderCellDef
|
mat-header-cell
|
||||||
class="mat-mdc-header-cell px-1 py-2 text-right"
|
>
|
||||||
mat-header-cell
|
<ng-container i18n>Engagement per Day</ng-container>
|
||||||
>
|
</th>
|
||||||
<ng-container i18n>Engagement per Day</ng-container>
|
<td
|
||||||
</th>
|
*matCellDef="let element"
|
||||||
<td
|
class="mat-mdc-cell px-1 py-2 text-right"
|
||||||
*matCellDef="let element"
|
mat-cell
|
||||||
class="mat-mdc-cell px-1 py-2 text-right"
|
>
|
||||||
mat-cell
|
<gf-value
|
||||||
>
|
class="d-inline-block justify-content-end"
|
||||||
<gf-value
|
[locale]="user?.settings?.locale"
|
||||||
class="d-inline-block justify-content-end"
|
[precision]="0"
|
||||||
[locale]="user?.settings?.locale"
|
[value]="element.engagement"
|
||||||
[precision]="0"
|
/>
|
||||||
[value]="element.engagement"
|
</td>
|
||||||
/>
|
</ng-container>
|
||||||
</td>
|
}
|
||||||
</ng-container>
|
|
||||||
|
|
||||||
<ng-container
|
@if (hasPermissionForSubscription) {
|
||||||
*ngIf="hasPermissionForSubscription"
|
<ng-container matColumnDef="lastRequest">
|
||||||
matColumnDef="lastRequest"
|
<th
|
||||||
>
|
*matHeaderCellDef
|
||||||
<th
|
class="mat-mdc-header-cell px-1 py-2"
|
||||||
*matHeaderCellDef
|
i18n
|
||||||
class="mat-mdc-header-cell px-1 py-2"
|
mat-header-cell
|
||||||
i18n
|
>
|
||||||
mat-header-cell
|
Last Request
|
||||||
>
|
</th>
|
||||||
Last Request
|
<td
|
||||||
</th>
|
*matCellDef="let element"
|
||||||
<td
|
class="mat-mdc-cell px-1 py-2"
|
||||||
*matCellDef="let element"
|
mat-cell
|
||||||
class="mat-mdc-cell px-1 py-2"
|
>
|
||||||
mat-cell
|
{{ formatDistanceToNow(element.lastActivity) }}
|
||||||
>
|
</td>
|
||||||
{{ formatDistanceToNow(element.lastActivity) }}
|
</ng-container>
|
||||||
</td>
|
}
|
||||||
</ng-container>
|
|
||||||
|
|
||||||
<ng-container matColumnDef="actions" stickyEnd>
|
<ng-container matColumnDef="actions" stickyEnd>
|
||||||
<th
|
<th
|
||||||
@ -212,16 +211,14 @@
|
|||||||
<ion-icon name="ellipsis-horizontal" />
|
<ion-icon name="ellipsis-horizontal" />
|
||||||
</button>
|
</button>
|
||||||
<mat-menu #userMenu="matMenu" xPosition="before">
|
<mat-menu #userMenu="matMenu" xPosition="before">
|
||||||
<button
|
@if (hasPermissionToImpersonateAllUsers) {
|
||||||
*ngIf="hasPermissionToImpersonateAllUsers"
|
<button mat-menu-item (click)="onImpersonateUser(element.id)">
|
||||||
mat-menu-item
|
<span class="align-items-center d-flex">
|
||||||
(click)="onImpersonateUser(element.id)"
|
<ion-icon class="mr-2" name="contract-outline" />
|
||||||
>
|
<span i18n>Impersonate User</span>
|
||||||
<span class="align-items-center d-flex">
|
</span>
|
||||||
<ion-icon class="mr-2" name="contract-outline" />
|
</button>
|
||||||
<span i18n>Impersonate User</span>
|
}
|
||||||
</span>
|
|
||||||
</button>
|
|
||||||
<button
|
<button
|
||||||
mat-menu-item
|
mat-menu-item
|
||||||
[disabled]="element.id === user?.id"
|
[disabled]="element.id === user?.id"
|
||||||
|
@ -4,10 +4,9 @@
|
|||||||
class="align-items-center d-flex flex-grow-1 h5 mb-0 py-2 text-truncate"
|
class="align-items-center d-flex flex-grow-1 h5 mb-0 py-2 text-truncate"
|
||||||
>
|
>
|
||||||
<span i18n>Performance</span>
|
<span i18n>Performance</span>
|
||||||
<gf-premium-indicator
|
@if (user?.subscription?.type === 'Basic') {
|
||||||
*ngIf="user?.subscription?.type === 'Basic'"
|
<gf-premium-indicator class="ml-1" />
|
||||||
class="ml-1"
|
}
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-6 col-xs-12 d-flex justify-content-end">
|
<div class="col-md-6 col-xs-12 d-flex justify-content-end">
|
||||||
@ -24,33 +23,33 @@
|
|||||||
(selectionChange)="onChangeBenchmark($event.value)"
|
(selectionChange)="onChangeBenchmark($event.value)"
|
||||||
>
|
>
|
||||||
<mat-option [value]="null" />
|
<mat-option [value]="null" />
|
||||||
<mat-option
|
@for (symbolProfile of benchmarks; track symbolProfile) {
|
||||||
*ngFor="let symbolProfile of benchmarks"
|
<mat-option [value]="symbolProfile.id">{{
|
||||||
[value]="symbolProfile.id"
|
symbolProfile.name
|
||||||
>{{ symbolProfile.name }}</mat-option
|
}}</mat-option>
|
||||||
>
|
}
|
||||||
<mat-option
|
@if (hasPermissionToAccessAdminControl) {
|
||||||
*ngIf="hasPermissionToAccessAdminControl"
|
<mat-option [routerLink]="['/admin', 'market-data']">
|
||||||
[routerLink]="['/admin', 'market-data']"
|
<div class="align-items-center d-flex">
|
||||||
>
|
<ion-icon class="mr-2 text-muted" name="arrow-forward-outline" />
|
||||||
<div class="align-items-center d-flex">
|
<span i18n>Manage Benchmarks</span>
|
||||||
<ion-icon class="mr-2 text-muted" name="arrow-forward-outline" />
|
</div>
|
||||||
<span i18n>Manage Benchmarks</span>
|
</mat-option>
|
||||||
</div>
|
}
|
||||||
</mat-option>
|
|
||||||
</mat-select>
|
</mat-select>
|
||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="chart-container">
|
<div class="chart-container">
|
||||||
<ngx-skeleton-loader
|
@if (isLoading) {
|
||||||
*ngIf="isLoading"
|
<ngx-skeleton-loader
|
||||||
animation="pulse"
|
animation="pulse"
|
||||||
[theme]="{
|
[theme]="{
|
||||||
height: '100%',
|
height: '100%',
|
||||||
width: '100%'
|
width: '100%'
|
||||||
}"
|
}"
|
||||||
/>
|
/>
|
||||||
|
}
|
||||||
<canvas
|
<canvas
|
||||||
#chartCanvas
|
#chartCanvas
|
||||||
class="h-100"
|
class="h-100"
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
<button
|
@if (deviceType === 'mobile') {
|
||||||
*ngIf="deviceType === 'mobile'"
|
<button mat-button (click)="onClickCloseButton()">
|
||||||
mat-button
|
<ion-icon name="close" size="large" />
|
||||||
(click)="onClickCloseButton()"
|
</button>
|
||||||
>
|
}
|
||||||
<ion-icon name="close" size="large" />
|
|
||||||
</button>
|
|
||||||
|
@ -3,11 +3,8 @@
|
|||||||
[ngClass]="{ 'text-center': position === 'center' }"
|
[ngClass]="{ 'text-center': position === 'center' }"
|
||||||
>{{ title }}</span
|
>{{ title }}</span
|
||||||
>
|
>
|
||||||
<button
|
@if (deviceType !== 'mobile') {
|
||||||
*ngIf="deviceType !== 'mobile'"
|
<button class="no-min-width px-0" mat-button (click)="onClickCloseButton()">
|
||||||
class="no-min-width px-0"
|
<ion-icon name="close" size="large" />
|
||||||
mat-button
|
</button>
|
||||||
(click)="onClickCloseButton()"
|
}
|
||||||
>
|
|
||||||
<ion-icon name="close" size="large" />
|
|
||||||
</button>
|
|
||||||
|
@ -12,12 +12,13 @@
|
|||||||
<small class="d-block" i18n>Current Market Mood</small>
|
<small class="d-block" i18n>Current Market Mood</small>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<ngx-skeleton-loader
|
@if (!fearAndGreedIndex) {
|
||||||
*ngIf="!fearAndGreedIndex"
|
<ngx-skeleton-loader
|
||||||
animation="pulse"
|
animation="pulse"
|
||||||
class="position-absolute w-100"
|
class="position-absolute w-100"
|
||||||
[theme]="{
|
[theme]="{
|
||||||
height: '100%'
|
height: '100%'
|
||||||
}"
|
}"
|
||||||
/>
|
/>
|
||||||
|
}
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<mat-toolbar class="px-0">
|
<mat-toolbar class="px-0">
|
||||||
<ng-container *ngIf="user">
|
@if (user) {
|
||||||
<div class="d-flex h-100 logo-container" [ngClass]="{ filled: hasTabs }">
|
<div class="d-flex h-100 logo-container" [ngClass]="{ filled: hasTabs }">
|
||||||
<a
|
<a
|
||||||
class="align-items-center justify-content-start rounded-0"
|
class="align-items-center justify-content-start rounded-0"
|
||||||
@ -54,19 +54,21 @@
|
|||||||
>Accounts</a
|
>Accounts</a
|
||||||
>
|
>
|
||||||
</li>
|
</li>
|
||||||
<li *ngIf="hasPermissionToAccessAdminControl" class="list-inline-item">
|
@if (hasPermissionToAccessAdminControl) {
|
||||||
<a
|
<li class="list-inline-item">
|
||||||
class="d-none d-sm-block"
|
<a
|
||||||
i18n
|
class="d-none d-sm-block"
|
||||||
mat-flat-button
|
i18n
|
||||||
[ngClass]="{
|
mat-flat-button
|
||||||
'font-weight-bold': currentRoute === 'admin',
|
[ngClass]="{
|
||||||
'text-decoration-underline': currentRoute === 'admin'
|
'font-weight-bold': currentRoute === 'admin',
|
||||||
}"
|
'text-decoration-underline': currentRoute === 'admin'
|
||||||
[routerLink]="['/admin']"
|
}"
|
||||||
>Admin Control</a
|
[routerLink]="['/admin']"
|
||||||
>
|
>Admin Control</a
|
||||||
</li>
|
>
|
||||||
|
</li>
|
||||||
|
}
|
||||||
<li class="list-inline-item">
|
<li class="list-inline-item">
|
||||||
<a
|
<a
|
||||||
class="d-none d-sm-block"
|
class="d-none d-sm-block"
|
||||||
@ -80,24 +82,23 @@
|
|||||||
>Resources</a
|
>Resources</a
|
||||||
>
|
>
|
||||||
</li>
|
</li>
|
||||||
<li
|
@if (
|
||||||
*ngIf="
|
hasPermissionForSubscription && user?.subscription?.type === 'Basic'
|
||||||
hasPermissionForSubscription && user?.subscription?.type === 'Basic'
|
) {
|
||||||
"
|
<li class="list-inline-item">
|
||||||
class="list-inline-item"
|
<a
|
||||||
>
|
class="d-none d-sm-block"
|
||||||
<a
|
i18n
|
||||||
class="d-none d-sm-block"
|
mat-flat-button
|
||||||
i18n
|
[ngClass]="{
|
||||||
mat-flat-button
|
'font-weight-bold': currentRoute === routePricing,
|
||||||
[ngClass]="{
|
'text-decoration-underline': currentRoute === routePricing
|
||||||
'font-weight-bold': currentRoute === routePricing,
|
}"
|
||||||
'text-decoration-underline': currentRoute === routePricing
|
[routerLink]="routerLinkPricing"
|
||||||
}"
|
>Pricing</a
|
||||||
[routerLink]="routerLinkPricing"
|
>
|
||||||
>Pricing</a
|
</li>
|
||||||
>
|
}
|
||||||
</li>
|
|
||||||
<li class="list-inline-item">
|
<li class="list-inline-item">
|
||||||
<a
|
<a
|
||||||
class="d-none d-sm-block"
|
class="d-none d-sm-block"
|
||||||
@ -111,42 +112,42 @@
|
|||||||
>About</a
|
>About</a
|
||||||
>
|
>
|
||||||
</li>
|
</li>
|
||||||
<li *ngIf="hasPermissionToAccessAssistant" class="list-inline-item">
|
@if (hasPermissionToAccessAssistant) {
|
||||||
<button
|
<li class="list-inline-item">
|
||||||
#assistantTrigger="matMenuTrigger"
|
<button
|
||||||
class="h-100 no-min-width px-2"
|
#assistantTrigger="matMenuTrigger"
|
||||||
mat-button
|
class="h-100 no-min-width px-2"
|
||||||
matBadge="✓"
|
mat-button
|
||||||
matBadgeSize="small"
|
matBadge="✓"
|
||||||
[mat-menu-trigger-for]="assistantMenu"
|
matBadgeSize="small"
|
||||||
[matBadgeHidden]="
|
[mat-menu-trigger-for]="assistantMenu"
|
||||||
!hasFilters || !user?.settings?.isExperimentalFeatures
|
[matBadgeHidden]="!hasFilters"
|
||||||
"
|
[matMenuTriggerRestoreFocus]="false"
|
||||||
[matMenuTriggerRestoreFocus]="false"
|
(menuOpened)="onOpenAssistant()"
|
||||||
(menuOpened)="onOpenAssistant()"
|
>
|
||||||
>
|
<ion-icon class="rotate-90" name="options-outline" />
|
||||||
<ion-icon class="rotate-90" name="options-outline" />
|
</button>
|
||||||
</button>
|
<mat-menu
|
||||||
<mat-menu
|
#assistantMenu="matMenu"
|
||||||
#assistantMenu="matMenu"
|
class="assistant"
|
||||||
class="assistant"
|
xPosition="before"
|
||||||
xPosition="before"
|
[overlapTrigger]="true"
|
||||||
[overlapTrigger]="true"
|
(closed)="assistantElement?.setIsOpen(false)"
|
||||||
(closed)="assistantElement?.setIsOpen(false)"
|
>
|
||||||
>
|
<gf-assistant
|
||||||
<gf-assistant
|
#assistant
|
||||||
#assistant
|
[deviceType]="deviceType"
|
||||||
[deviceType]="deviceType"
|
[hasPermissionToAccessAdminControl]="
|
||||||
[hasPermissionToAccessAdminControl]="
|
hasPermissionToAccessAdminControl
|
||||||
hasPermissionToAccessAdminControl
|
"
|
||||||
"
|
[user]="user"
|
||||||
[user]="user"
|
(closed)="closeAssistant()"
|
||||||
(closed)="closeAssistant()"
|
(dateRangeChanged)="onDateRangeChange($event)"
|
||||||
(dateRangeChanged)="onDateRangeChange($event)"
|
(filtersChanged)="onFiltersChanged($event)"
|
||||||
(filtersChanged)="onFiltersChanged($event)"
|
/>
|
||||||
/>
|
</mat-menu>
|
||||||
</mat-menu>
|
</li>
|
||||||
</li>
|
}
|
||||||
<li class="list-inline-item">
|
<li class="list-inline-item">
|
||||||
<button
|
<button
|
||||||
class="no-min-width px-1"
|
class="no-min-width px-1"
|
||||||
@ -167,40 +168,31 @@
|
|||||||
/>
|
/>
|
||||||
</button>
|
</button>
|
||||||
<mat-menu #accountMenu="matMenu" xPosition="before">
|
<mat-menu #accountMenu="matMenu" xPosition="before">
|
||||||
<ng-container
|
@if (
|
||||||
*ngIf="
|
hasPermissionForSubscription && user?.subscription?.type === 'Basic'
|
||||||
hasPermissionForSubscription &&
|
) {
|
||||||
user?.subscription?.type === 'Basic'
|
|
||||||
"
|
|
||||||
>
|
|
||||||
<a class="d-flex" mat-menu-item [routerLink]="routerLinkPricing"
|
<a class="d-flex" mat-menu-item [routerLink]="routerLinkPricing"
|
||||||
><span class="align-items-center d-flex"
|
><span class="align-items-center d-flex"
|
||||||
><span
|
><span>
|
||||||
><ng-container
|
@if (user.subscription.offer === 'default') {
|
||||||
*ngIf="user.subscription.offer === 'default'"
|
<ng-container i18n>Upgrade Plan</ng-container>
|
||||||
i18n
|
} @else if (
|
||||||
>Upgrade Plan</ng-container
|
user.subscription.offer === 'renewal' ||
|
||||||
>
|
user.subscription.offer === 'renewal-early-bird'
|
||||||
<ng-container
|
) {
|
||||||
*ngIf="
|
<ng-container i18n>Renew Plan</ng-container>
|
||||||
user.subscription.offer === 'renewal' ||
|
}
|
||||||
user.subscription.offer === 'renewal-early-bird'
|
</span>
|
||||||
"
|
|
||||||
i18n
|
|
||||||
>Renew Plan</ng-container
|
|
||||||
></span
|
|
||||||
>
|
|
||||||
<gf-premium-indicator
|
<gf-premium-indicator
|
||||||
class="d-inline-block ml-1"
|
class="d-inline-block ml-1"
|
||||||
[enableLink]="false" /></span
|
[enableLink]="false" /></span
|
||||||
></a>
|
></a>
|
||||||
<hr class="m-0" />
|
<hr class="m-0" />
|
||||||
</ng-container>
|
}
|
||||||
<ng-container *ngIf="user?.access?.length > 0">
|
@if (user?.access?.length > 0) {
|
||||||
<button mat-menu-item (click)="impersonateAccount(null)">
|
<button mat-menu-item (click)="impersonateAccount(null)">
|
||||||
<span class="align-items-center d-flex">
|
<span class="align-items-center d-flex">
|
||||||
<ion-icon
|
<ion-icon
|
||||||
*ngIf="user?.access?.length > 0"
|
|
||||||
class="mr-2"
|
class="mr-2"
|
||||||
[name]="
|
[name]="
|
||||||
impersonationId
|
impersonationId
|
||||||
@ -211,27 +203,28 @@
|
|||||||
<span i18n>Me</span>
|
<span i18n>Me</span>
|
||||||
</span>
|
</span>
|
||||||
</button>
|
</button>
|
||||||
<button
|
@for (accessItem of user?.access; track accessItem) {
|
||||||
*ngFor="let accessItem of user?.access"
|
<button mat-menu-item (click)="impersonateAccount(accessItem.id)">
|
||||||
mat-menu-item
|
<span class="align-items-center d-flex">
|
||||||
(click)="impersonateAccount(accessItem.id)"
|
<ion-icon
|
||||||
>
|
class="mr-2"
|
||||||
<span class="align-items-center d-flex">
|
name="square-outline"
|
||||||
<ion-icon
|
[name]="
|
||||||
class="mr-2"
|
accessItem.id === impersonationId
|
||||||
name="square-outline"
|
? 'radio-button-on-outline'
|
||||||
[name]="
|
: 'radio-button-off-outline'
|
||||||
accessItem.id === impersonationId
|
"
|
||||||
? 'radio-button-on-outline'
|
/>
|
||||||
: 'radio-button-off-outline'
|
@if (accessItem.alias) {
|
||||||
"
|
<span>{{ accessItem.alias }}</span>
|
||||||
/>
|
} @else {
|
||||||
<span *ngIf="accessItem.alias">{{ accessItem.alias }}</span>
|
<span i18n>User</span>
|
||||||
<span *ngIf="!accessItem.alias" i18n>User</span>
|
}
|
||||||
</span>
|
</span>
|
||||||
</button>
|
</button>
|
||||||
|
}
|
||||||
<hr class="m-0" />
|
<hr class="m-0" />
|
||||||
</ng-container>
|
}
|
||||||
<a
|
<a
|
||||||
class="d-flex d-sm-none"
|
class="d-flex d-sm-none"
|
||||||
i18n
|
i18n
|
||||||
@ -268,15 +261,16 @@
|
|||||||
[routerLink]="['/account']"
|
[routerLink]="['/account']"
|
||||||
>My Ghostfolio</a
|
>My Ghostfolio</a
|
||||||
>
|
>
|
||||||
<a
|
@if (hasPermissionToAccessAdminControl) {
|
||||||
*ngIf="hasPermissionToAccessAdminControl"
|
<a
|
||||||
class="d-flex d-sm-none"
|
class="d-flex d-sm-none"
|
||||||
i18n
|
i18n
|
||||||
mat-menu-item
|
mat-menu-item
|
||||||
[ngClass]="{ 'font-weight-bold': currentRoute === 'admin' }"
|
[ngClass]="{ 'font-weight-bold': currentRoute === 'admin' }"
|
||||||
[routerLink]="['/admin']"
|
[routerLink]="['/admin']"
|
||||||
>Admin Control</a
|
>Admin Control</a
|
||||||
>
|
>
|
||||||
|
}
|
||||||
<hr class="m-0" />
|
<hr class="m-0" />
|
||||||
<a
|
<a
|
||||||
class="d-flex d-sm-none"
|
class="d-flex d-sm-none"
|
||||||
@ -288,18 +282,18 @@
|
|||||||
[routerLink]="routerLinkResources"
|
[routerLink]="routerLinkResources"
|
||||||
>Resources</a
|
>Resources</a
|
||||||
>
|
>
|
||||||
<a
|
@if (
|
||||||
*ngIf="
|
hasPermissionForSubscription && user?.subscription?.type === 'Basic'
|
||||||
hasPermissionForSubscription &&
|
) {
|
||||||
user?.subscription?.type === 'Basic'
|
<a
|
||||||
"
|
class="d-flex d-sm-none"
|
||||||
class="d-flex d-sm-none"
|
i18n
|
||||||
i18n
|
mat-menu-item
|
||||||
mat-menu-item
|
[ngClass]="{ 'font-weight-bold': currentRoute === routePricing }"
|
||||||
[ngClass]="{ 'font-weight-bold': currentRoute === routePricing }"
|
[routerLink]="routerLinkPricing"
|
||||||
[routerLink]="routerLinkPricing"
|
>Pricing</a
|
||||||
>Pricing</a
|
>
|
||||||
>
|
}
|
||||||
<a
|
<a
|
||||||
class="d-flex d-sm-none"
|
class="d-flex d-sm-none"
|
||||||
i18n
|
i18n
|
||||||
@ -313,8 +307,8 @@
|
|||||||
</mat-menu>
|
</mat-menu>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</ng-container>
|
}
|
||||||
<ng-container *ngIf="user === null">
|
@if (user === null) {
|
||||||
<div class="d-flex h-100 logo-container" [ngClass]="{ filled: hasTabs }">
|
<div class="d-flex h-100 logo-container" [ngClass]="{ filled: hasTabs }">
|
||||||
<a
|
<a
|
||||||
class="align-items-center justify-content-start rounded-0"
|
class="align-items-center justify-content-start rounded-0"
|
||||||
@ -357,35 +351,36 @@
|
|||||||
>About</a
|
>About</a
|
||||||
>
|
>
|
||||||
</li>
|
</li>
|
||||||
<li *ngIf="hasPermissionForSubscription" class="list-inline-item">
|
@if (hasPermissionForSubscription) {
|
||||||
<a
|
<li class="list-inline-item">
|
||||||
class="d-sm-block"
|
<a
|
||||||
i18n
|
class="d-sm-block"
|
||||||
mat-flat-button
|
i18n
|
||||||
[ngClass]="{
|
mat-flat-button
|
||||||
'font-weight-bold': currentRoute === routePricing,
|
[ngClass]="{
|
||||||
'text-decoration-underline': currentRoute === routePricing
|
'font-weight-bold': currentRoute === routePricing,
|
||||||
}"
|
'text-decoration-underline': currentRoute === routePricing
|
||||||
[routerLink]="routerLinkPricing"
|
}"
|
||||||
>Pricing</a
|
[routerLink]="routerLinkPricing"
|
||||||
>
|
>Pricing</a
|
||||||
</li>
|
>
|
||||||
<li
|
</li>
|
||||||
*ngIf="hasPermissionToAccessFearAndGreedIndex"
|
}
|
||||||
class="list-inline-item"
|
@if (hasPermissionToAccessFearAndGreedIndex) {
|
||||||
>
|
<li class="list-inline-item">
|
||||||
<a
|
<a
|
||||||
class="d-none d-sm-block"
|
class="d-none d-sm-block"
|
||||||
i18n
|
i18n
|
||||||
mat-flat-button
|
mat-flat-button
|
||||||
[ngClass]="{
|
[ngClass]="{
|
||||||
'font-weight-bold': currentRoute === routeMarkets,
|
'font-weight-bold': currentRoute === routeMarkets,
|
||||||
'text-decoration-underline': currentRoute === routeMarkets
|
'text-decoration-underline': currentRoute === routeMarkets
|
||||||
}"
|
}"
|
||||||
[routerLink]="routerLinkMarkets"
|
[routerLink]="routerLinkMarkets"
|
||||||
>Markets</a
|
>Markets</a
|
||||||
>
|
>
|
||||||
</li>
|
</li>
|
||||||
|
}
|
||||||
<li class="list-inline-item">
|
<li class="list-inline-item">
|
||||||
<a
|
<a
|
||||||
class="d-none d-sm-block no-min-width p-1"
|
class="d-none d-sm-block no-min-width p-1"
|
||||||
@ -399,18 +394,17 @@
|
|||||||
<ng-container i18n>Sign in</ng-container>
|
<ng-container i18n>Sign in</ng-container>
|
||||||
</button>
|
</button>
|
||||||
</li>
|
</li>
|
||||||
<li
|
@if (currentRoute !== 'register' && hasPermissionToCreateUser) {
|
||||||
*ngIf="currentRoute !== 'register' && hasPermissionToCreateUser"
|
<li class="list-inline-item ml-1">
|
||||||
class="list-inline-item ml-1"
|
<a
|
||||||
>
|
class="d-none d-sm-block"
|
||||||
<a
|
color="primary"
|
||||||
class="d-none d-sm-block"
|
mat-flat-button
|
||||||
color="primary"
|
[routerLink]="routerLinkRegister"
|
||||||
mat-flat-button
|
><ng-container i18n>Get started</ng-container>
|
||||||
[routerLink]="routerLinkRegister"
|
</a>
|
||||||
><ng-container i18n>Get started</ng-container>
|
</li>
|
||||||
</a>
|
}
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</ng-container>
|
}
|
||||||
</mat-toolbar>
|
</mat-toolbar>
|
||||||
|
@ -4,6 +4,7 @@ import { GfDialogFooterModule } from '@ghostfolio/client/components/dialog-foote
|
|||||||
import { GfDialogHeaderModule } from '@ghostfolio/client/components/dialog-header/dialog-header.module';
|
import { GfDialogHeaderModule } from '@ghostfolio/client/components/dialog-header/dialog-header.module';
|
||||||
import { DataService } from '@ghostfolio/client/services/data.service';
|
import { DataService } from '@ghostfolio/client/services/data.service';
|
||||||
import { UserService } from '@ghostfolio/client/services/user/user.service';
|
import { UserService } from '@ghostfolio/client/services/user/user.service';
|
||||||
|
import { NUMERICAL_PRECISION_THRESHOLD } from '@ghostfolio/common/config';
|
||||||
import { DATE_FORMAT, downloadAsFile } from '@ghostfolio/common/helper';
|
import { DATE_FORMAT, downloadAsFile } from '@ghostfolio/common/helper';
|
||||||
import {
|
import {
|
||||||
DataProviderInfo,
|
DataProviderInfo,
|
||||||
@ -18,16 +19,24 @@ import { GfLineChartComponent } from '@ghostfolio/ui/line-chart';
|
|||||||
import { GfPortfolioProportionChartComponent } from '@ghostfolio/ui/portfolio-proportion-chart';
|
import { GfPortfolioProportionChartComponent } from '@ghostfolio/ui/portfolio-proportion-chart';
|
||||||
import { GfValueComponent } from '@ghostfolio/ui/value';
|
import { GfValueComponent } from '@ghostfolio/ui/value';
|
||||||
|
|
||||||
|
import { COMMA, ENTER } from '@angular/cdk/keycodes';
|
||||||
import { CommonModule } from '@angular/common';
|
import { CommonModule } from '@angular/common';
|
||||||
import {
|
import {
|
||||||
CUSTOM_ELEMENTS_SCHEMA,
|
CUSTOM_ELEMENTS_SCHEMA,
|
||||||
ChangeDetectionStrategy,
|
ChangeDetectionStrategy,
|
||||||
ChangeDetectorRef,
|
ChangeDetectorRef,
|
||||||
Component,
|
Component,
|
||||||
|
ElementRef,
|
||||||
Inject,
|
Inject,
|
||||||
OnDestroy,
|
OnDestroy,
|
||||||
OnInit
|
OnInit,
|
||||||
|
ViewChild
|
||||||
} from '@angular/core';
|
} from '@angular/core';
|
||||||
|
import { FormBuilder, FormGroup } from '@angular/forms';
|
||||||
|
import {
|
||||||
|
MatAutocompleteModule,
|
||||||
|
MatAutocompleteSelectedEvent
|
||||||
|
} from '@angular/material/autocomplete';
|
||||||
import { MatButtonModule } from '@angular/material/button';
|
import { MatButtonModule } from '@angular/material/button';
|
||||||
import { MatChipsModule } from '@angular/material/chips';
|
import { MatChipsModule } from '@angular/material/chips';
|
||||||
import {
|
import {
|
||||||
@ -35,14 +44,15 @@ import {
|
|||||||
MatDialogModule,
|
MatDialogModule,
|
||||||
MatDialogRef
|
MatDialogRef
|
||||||
} from '@angular/material/dialog';
|
} from '@angular/material/dialog';
|
||||||
|
import { MatFormFieldModule } from '@angular/material/form-field';
|
||||||
import { SortDirection } from '@angular/material/sort';
|
import { SortDirection } from '@angular/material/sort';
|
||||||
import { MatTableDataSource } from '@angular/material/table';
|
import { MatTableDataSource } from '@angular/material/table';
|
||||||
import { MatTabsModule } from '@angular/material/tabs';
|
import { MatTabsModule } from '@angular/material/tabs';
|
||||||
import { Account, Tag } from '@prisma/client';
|
import { Account, Tag } from '@prisma/client';
|
||||||
import { format, isSameMonth, isToday, parseISO } from 'date-fns';
|
import { format, isSameMonth, isToday, parseISO } from 'date-fns';
|
||||||
import { NgxSkeletonLoaderModule } from 'ngx-skeleton-loader';
|
import { NgxSkeletonLoaderModule } from 'ngx-skeleton-loader';
|
||||||
import { Subject } from 'rxjs';
|
import { Observable, of, Subject } from 'rxjs';
|
||||||
import { takeUntil } from 'rxjs/operators';
|
import { map, startWith, takeUntil } from 'rxjs/operators';
|
||||||
|
|
||||||
import { HoldingDetailDialogParams } from './interfaces/interfaces';
|
import { HoldingDetailDialogParams } from './interfaces/interfaces';
|
||||||
|
|
||||||
@ -59,9 +69,11 @@ import { HoldingDetailDialogParams } from './interfaces/interfaces';
|
|||||||
GfLineChartComponent,
|
GfLineChartComponent,
|
||||||
GfPortfolioProportionChartComponent,
|
GfPortfolioProportionChartComponent,
|
||||||
GfValueComponent,
|
GfValueComponent,
|
||||||
|
MatAutocompleteModule,
|
||||||
MatButtonModule,
|
MatButtonModule,
|
||||||
MatChipsModule,
|
MatChipsModule,
|
||||||
MatDialogModule,
|
MatDialogModule,
|
||||||
|
MatFormFieldModule,
|
||||||
MatTabsModule,
|
MatTabsModule,
|
||||||
NgxSkeletonLoaderModule
|
NgxSkeletonLoaderModule
|
||||||
],
|
],
|
||||||
@ -72,6 +84,9 @@ import { HoldingDetailDialogParams } from './interfaces/interfaces';
|
|||||||
templateUrl: 'holding-detail-dialog.html'
|
templateUrl: 'holding-detail-dialog.html'
|
||||||
})
|
})
|
||||||
export class GfHoldingDetailDialogComponent implements OnDestroy, OnInit {
|
export class GfHoldingDetailDialogComponent implements OnDestroy, OnInit {
|
||||||
|
@ViewChild('tagInput') tagInput: ElementRef<HTMLInputElement>;
|
||||||
|
|
||||||
|
public activityForm: FormGroup;
|
||||||
public accounts: Account[];
|
public accounts: Account[];
|
||||||
public activities: Activity[];
|
public activities: Activity[];
|
||||||
public assetClass: string;
|
public assetClass: string;
|
||||||
@ -84,28 +99,35 @@ export class GfHoldingDetailDialogComponent implements OnDestroy, OnInit {
|
|||||||
public dataProviderInfo: DataProviderInfo;
|
public dataProviderInfo: DataProviderInfo;
|
||||||
public dataSource: MatTableDataSource<Activity>;
|
public dataSource: MatTableDataSource<Activity>;
|
||||||
public dividendInBaseCurrency: number;
|
public dividendInBaseCurrency: number;
|
||||||
|
public dividendInBaseCurrencyPrecision = 2;
|
||||||
public dividendYieldPercentWithCurrencyEffect: number;
|
public dividendYieldPercentWithCurrencyEffect: number;
|
||||||
public feeInBaseCurrency: number;
|
public feeInBaseCurrency: number;
|
||||||
|
public filteredTagsObservable: Observable<Tag[]> = of([]);
|
||||||
public firstBuyDate: string;
|
public firstBuyDate: string;
|
||||||
public historicalDataItems: LineChartItem[];
|
public historicalDataItems: LineChartItem[];
|
||||||
public investment: number;
|
public investment: number;
|
||||||
|
public investmentPrecision = 2;
|
||||||
public marketPrice: number;
|
public marketPrice: number;
|
||||||
public maxPrice: number;
|
public maxPrice: number;
|
||||||
public minPrice: number;
|
public minPrice: number;
|
||||||
public netPerformance: number;
|
public netPerformance: number;
|
||||||
|
public netPerformancePrecision = 2;
|
||||||
public netPerformancePercent: number;
|
public netPerformancePercent: number;
|
||||||
public netPerformancePercentWithCurrencyEffect: number;
|
public netPerformancePercentWithCurrencyEffect: number;
|
||||||
public netPerformanceWithCurrencyEffect: number;
|
public netPerformanceWithCurrencyEffect: number;
|
||||||
|
public netPerformanceWithCurrencyEffectPrecision = 2;
|
||||||
public quantity: number;
|
public quantity: number;
|
||||||
public quantityPrecision = 2;
|
public quantityPrecision = 2;
|
||||||
public reportDataGlitchMail: string;
|
public reportDataGlitchMail: string;
|
||||||
public sectors: {
|
public sectors: {
|
||||||
[name: string]: { name: string; value: number };
|
[name: string]: { name: string; value: number };
|
||||||
};
|
};
|
||||||
|
public separatorKeysCodes: number[] = [COMMA, ENTER];
|
||||||
public sortColumn = 'date';
|
public sortColumn = 'date';
|
||||||
public sortDirection: SortDirection = 'desc';
|
public sortDirection: SortDirection = 'desc';
|
||||||
public SymbolProfile: EnhancedSymbolProfile;
|
public SymbolProfile: EnhancedSymbolProfile;
|
||||||
public tags: Tag[];
|
public tags: Tag[];
|
||||||
|
public tagsAvailable: Tag[];
|
||||||
public totalItems: number;
|
public totalItems: number;
|
||||||
public transactionCount: number;
|
public transactionCount: number;
|
||||||
public user: User;
|
public user: User;
|
||||||
@ -118,10 +140,38 @@ export class GfHoldingDetailDialogComponent implements OnDestroy, OnInit {
|
|||||||
private dataService: DataService,
|
private dataService: DataService,
|
||||||
public dialogRef: MatDialogRef<GfHoldingDetailDialogComponent>,
|
public dialogRef: MatDialogRef<GfHoldingDetailDialogComponent>,
|
||||||
@Inject(MAT_DIALOG_DATA) public data: HoldingDetailDialogParams,
|
@Inject(MAT_DIALOG_DATA) public data: HoldingDetailDialogParams,
|
||||||
|
private formBuilder: FormBuilder,
|
||||||
private userService: UserService
|
private userService: UserService
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
public ngOnInit() {
|
public ngOnInit() {
|
||||||
|
const { tags } = this.dataService.fetchInfo();
|
||||||
|
|
||||||
|
this.activityForm = this.formBuilder.group({
|
||||||
|
tags: <string[]>[]
|
||||||
|
});
|
||||||
|
|
||||||
|
this.tagsAvailable = tags.map(({ id, name }) => {
|
||||||
|
return {
|
||||||
|
id,
|
||||||
|
name: translate(name)
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
|
this.activityForm
|
||||||
|
.get('tags')
|
||||||
|
.valueChanges.pipe(takeUntil(this.unsubscribeSubject))
|
||||||
|
.subscribe((tags) => {
|
||||||
|
this.dataService
|
||||||
|
.putHoldingTags({
|
||||||
|
tags,
|
||||||
|
dataSource: this.data.dataSource,
|
||||||
|
symbol: this.data.symbol
|
||||||
|
})
|
||||||
|
.pipe(takeUntil(this.unsubscribeSubject))
|
||||||
|
.subscribe();
|
||||||
|
});
|
||||||
|
|
||||||
this.dataService
|
this.dataService
|
||||||
.fetchHoldingDetail({
|
.fetchHoldingDetail({
|
||||||
dataSource: this.data.dataSource,
|
dataSource: this.data.dataSource,
|
||||||
@ -161,10 +211,20 @@ export class GfHoldingDetailDialogComponent implements OnDestroy, OnInit {
|
|||||||
this.dataProviderInfo = dataProviderInfo;
|
this.dataProviderInfo = dataProviderInfo;
|
||||||
this.dataSource = new MatTableDataSource(orders.reverse());
|
this.dataSource = new MatTableDataSource(orders.reverse());
|
||||||
this.dividendInBaseCurrency = dividendInBaseCurrency;
|
this.dividendInBaseCurrency = dividendInBaseCurrency;
|
||||||
|
|
||||||
|
if (
|
||||||
|
this.data.deviceType === 'mobile' &&
|
||||||
|
this.dividendInBaseCurrency >= NUMERICAL_PRECISION_THRESHOLD
|
||||||
|
) {
|
||||||
|
this.dividendInBaseCurrencyPrecision = 0;
|
||||||
|
}
|
||||||
|
|
||||||
this.dividendYieldPercentWithCurrencyEffect =
|
this.dividendYieldPercentWithCurrencyEffect =
|
||||||
dividendYieldPercentWithCurrencyEffect;
|
dividendYieldPercentWithCurrencyEffect;
|
||||||
|
|
||||||
this.feeInBaseCurrency = feeInBaseCurrency;
|
this.feeInBaseCurrency = feeInBaseCurrency;
|
||||||
this.firstBuyDate = firstBuyDate;
|
this.firstBuyDate = firstBuyDate;
|
||||||
|
|
||||||
this.historicalDataItems = historicalData.map(
|
this.historicalDataItems = historicalData.map(
|
||||||
({ averagePrice, date, marketPrice }) => {
|
({ averagePrice, date, marketPrice }) => {
|
||||||
this.benchmarkDataItems.push({
|
this.benchmarkDataItems.push({
|
||||||
@ -178,26 +238,82 @@ export class GfHoldingDetailDialogComponent implements OnDestroy, OnInit {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
this.investment = investment;
|
this.investment = investment;
|
||||||
|
|
||||||
|
if (
|
||||||
|
this.data.deviceType === 'mobile' &&
|
||||||
|
this.investment >= NUMERICAL_PRECISION_THRESHOLD
|
||||||
|
) {
|
||||||
|
this.investmentPrecision = 0;
|
||||||
|
}
|
||||||
|
|
||||||
this.marketPrice = marketPrice;
|
this.marketPrice = marketPrice;
|
||||||
this.maxPrice = maxPrice;
|
this.maxPrice = maxPrice;
|
||||||
this.minPrice = minPrice;
|
this.minPrice = minPrice;
|
||||||
this.netPerformance = netPerformance;
|
this.netPerformance = netPerformance;
|
||||||
|
|
||||||
|
if (
|
||||||
|
this.data.deviceType === 'mobile' &&
|
||||||
|
this.netPerformance >= NUMERICAL_PRECISION_THRESHOLD
|
||||||
|
) {
|
||||||
|
this.netPerformancePrecision = 0;
|
||||||
|
}
|
||||||
|
|
||||||
this.netPerformancePercent = netPerformancePercent;
|
this.netPerformancePercent = netPerformancePercent;
|
||||||
|
|
||||||
this.netPerformancePercentWithCurrencyEffect =
|
this.netPerformancePercentWithCurrencyEffect =
|
||||||
netPerformancePercentWithCurrencyEffect;
|
netPerformancePercentWithCurrencyEffect;
|
||||||
|
|
||||||
this.netPerformanceWithCurrencyEffect =
|
this.netPerformanceWithCurrencyEffect =
|
||||||
netPerformanceWithCurrencyEffect;
|
netPerformanceWithCurrencyEffect;
|
||||||
|
|
||||||
|
if (
|
||||||
|
this.data.deviceType === 'mobile' &&
|
||||||
|
this.netPerformanceWithCurrencyEffect >=
|
||||||
|
NUMERICAL_PRECISION_THRESHOLD
|
||||||
|
) {
|
||||||
|
this.netPerformanceWithCurrencyEffectPrecision = 0;
|
||||||
|
}
|
||||||
|
|
||||||
this.quantity = quantity;
|
this.quantity = quantity;
|
||||||
|
|
||||||
|
if (Number.isInteger(this.quantity)) {
|
||||||
|
this.quantityPrecision = 0;
|
||||||
|
} else if (this.SymbolProfile?.assetSubClass === 'CRYPTOCURRENCY') {
|
||||||
|
if (this.quantity < 1) {
|
||||||
|
this.quantityPrecision = 7;
|
||||||
|
} else if (this.quantity < 1000) {
|
||||||
|
this.quantityPrecision = 5;
|
||||||
|
} else if (this.quantity >= 10000000) {
|
||||||
|
this.quantityPrecision = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
this.reportDataGlitchMail = `mailto:hi@ghostfol.io?Subject=Ghostfolio Data Glitch Report&body=Hello%0D%0DI would like to report a data glitch for%0D%0DSymbol: ${SymbolProfile?.symbol}%0DData Source: ${SymbolProfile?.dataSource}%0D%0DAdditional notes:%0D%0DCan you please take a look?%0D%0DKind regards`;
|
this.reportDataGlitchMail = `mailto:hi@ghostfol.io?Subject=Ghostfolio Data Glitch Report&body=Hello%0D%0DI would like to report a data glitch for%0D%0DSymbol: ${SymbolProfile?.symbol}%0DData Source: ${SymbolProfile?.dataSource}%0D%0DAdditional notes:%0D%0DCan you please take a look?%0D%0DKind regards`;
|
||||||
this.sectors = {};
|
this.sectors = {};
|
||||||
this.SymbolProfile = SymbolProfile;
|
this.SymbolProfile = SymbolProfile;
|
||||||
|
|
||||||
this.tags = tags.map(({ id, name }) => {
|
this.tags = tags.map(({ id, name }) => {
|
||||||
return {
|
return {
|
||||||
id,
|
id,
|
||||||
name: translate(name)
|
name: translate(name)
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
this.activityForm.setValue({ tags: this.tags }, { emitEvent: false });
|
||||||
|
|
||||||
|
this.filteredTagsObservable = this.activityForm.controls[
|
||||||
|
'tags'
|
||||||
|
].valueChanges.pipe(
|
||||||
|
startWith(this.activityForm.get('tags').value),
|
||||||
|
map((aTags: Tag[] | null) => {
|
||||||
|
return aTags
|
||||||
|
? this.filterTags(aTags)
|
||||||
|
: this.tagsAvailable.slice();
|
||||||
|
})
|
||||||
|
);
|
||||||
|
|
||||||
this.transactionCount = transactionCount;
|
this.transactionCount = transactionCount;
|
||||||
this.totalItems = transactionCount;
|
this.totalItems = transactionCount;
|
||||||
this.value = value;
|
this.value = value;
|
||||||
@ -282,18 +398,6 @@ export class GfHoldingDetailDialogComponent implements OnDestroy, OnInit {
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
if (Number.isInteger(this.quantity)) {
|
|
||||||
this.quantityPrecision = 0;
|
|
||||||
} else if (this.SymbolProfile?.assetSubClass === 'CRYPTOCURRENCY') {
|
|
||||||
if (this.quantity < 1) {
|
|
||||||
this.quantityPrecision = 7;
|
|
||||||
} else if (this.quantity < 1000) {
|
|
||||||
this.quantityPrecision = 5;
|
|
||||||
} else if (this.quantity > 10000000) {
|
|
||||||
this.quantityPrecision = 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
this.changeDetectorRef.markForCheck();
|
this.changeDetectorRef.markForCheck();
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
@ -309,6 +413,17 @@ export class GfHoldingDetailDialogComponent implements OnDestroy, OnInit {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public onAddTag(event: MatAutocompleteSelectedEvent) {
|
||||||
|
this.activityForm.get('tags').setValue([
|
||||||
|
...(this.activityForm.get('tags').value ?? []),
|
||||||
|
this.tagsAvailable.find(({ id }) => {
|
||||||
|
return id === event.option.value;
|
||||||
|
})
|
||||||
|
]);
|
||||||
|
|
||||||
|
this.tagInput.nativeElement.value = '';
|
||||||
|
}
|
||||||
|
|
||||||
public onClose() {
|
public onClose() {
|
||||||
this.dialogRef.close();
|
this.dialogRef.close();
|
||||||
}
|
}
|
||||||
@ -333,8 +448,26 @@ export class GfHoldingDetailDialogComponent implements OnDestroy, OnInit {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public onRemoveTag(aTag: Tag) {
|
||||||
|
this.activityForm.get('tags').setValue(
|
||||||
|
this.activityForm.get('tags').value.filter(({ id }) => {
|
||||||
|
return id !== aTag.id;
|
||||||
|
})
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
public ngOnDestroy() {
|
public ngOnDestroy() {
|
||||||
this.unsubscribeSubject.next();
|
this.unsubscribeSubject.next();
|
||||||
this.unsubscribeSubject.complete();
|
this.unsubscribeSubject.complete();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private filterTags(aTags: Tag[]) {
|
||||||
|
const tagIds = aTags.map(({ id }) => {
|
||||||
|
return id;
|
||||||
|
});
|
||||||
|
|
||||||
|
return this.tagsAvailable.filter(({ id }) => {
|
||||||
|
return !tagIds.includes(id);
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -47,6 +47,7 @@
|
|||||||
[colorizeSign]="true"
|
[colorizeSign]="true"
|
||||||
[isCurrency]="true"
|
[isCurrency]="true"
|
||||||
[locale]="data.locale"
|
[locale]="data.locale"
|
||||||
|
[precision]="netPerformanceWithCurrencyEffectPrecision"
|
||||||
[unit]="data.baseCurrency"
|
[unit]="data.baseCurrency"
|
||||||
[value]="netPerformanceWithCurrencyEffect"
|
[value]="netPerformanceWithCurrencyEffect"
|
||||||
>Change with currency effect</gf-value
|
>Change with currency effect</gf-value
|
||||||
@ -58,6 +59,7 @@
|
|||||||
[colorizeSign]="true"
|
[colorizeSign]="true"
|
||||||
[isCurrency]="true"
|
[isCurrency]="true"
|
||||||
[locale]="data.locale"
|
[locale]="data.locale"
|
||||||
|
[precision]="netPerformancePrecision"
|
||||||
[unit]="data.baseCurrency"
|
[unit]="data.baseCurrency"
|
||||||
[value]="netPerformance"
|
[value]="netPerformance"
|
||||||
>Change</gf-value
|
>Change</gf-value
|
||||||
@ -160,6 +162,7 @@
|
|||||||
size="medium"
|
size="medium"
|
||||||
[isCurrency]="true"
|
[isCurrency]="true"
|
||||||
[locale]="data.locale"
|
[locale]="data.locale"
|
||||||
|
[precision]="investmentPrecision"
|
||||||
[unit]="data.baseCurrency"
|
[unit]="data.baseCurrency"
|
||||||
[value]="investment"
|
[value]="investment"
|
||||||
>Investment</gf-value
|
>Investment</gf-value
|
||||||
@ -172,6 +175,7 @@
|
|||||||
size="medium"
|
size="medium"
|
||||||
[isCurrency]="true"
|
[isCurrency]="true"
|
||||||
[locale]="data.locale"
|
[locale]="data.locale"
|
||||||
|
[precision]="dividendInBaseCurrencyPrecision"
|
||||||
[unit]="data.baseCurrency"
|
[unit]="data.baseCurrency"
|
||||||
[value]="dividendInBaseCurrency"
|
[value]="dividendInBaseCurrency"
|
||||||
>Dividend</gf-value
|
>Dividend</gf-value
|
||||||
@ -321,7 +325,7 @@
|
|||||||
|
|
||||||
<mat-tab-group
|
<mat-tab-group
|
||||||
animationDuration="0"
|
animationDuration="0"
|
||||||
class="mb-3"
|
class="mb-5"
|
||||||
[mat-stretch-tabs]="false"
|
[mat-stretch-tabs]="false"
|
||||||
[ngClass]="{ 'd-none': !activities?.length }"
|
[ngClass]="{ 'd-none': !activities?.length }"
|
||||||
>
|
>
|
||||||
@ -371,14 +375,56 @@
|
|||||||
</mat-tab>
|
</mat-tab>
|
||||||
</mat-tab-group>
|
</mat-tab-group>
|
||||||
|
|
||||||
@if (tags?.length > 0) {
|
<div
|
||||||
|
class="row"
|
||||||
|
[ngClass]="{
|
||||||
|
'd-none': !data.hasPermissionToUpdateOrder
|
||||||
|
}"
|
||||||
|
>
|
||||||
|
<div class="col">
|
||||||
|
<mat-form-field appearance="outline" class="w-100 without-hint">
|
||||||
|
<mat-label i18n>Tags</mat-label>
|
||||||
|
<mat-chip-grid #tagsChipList>
|
||||||
|
@for (tag of activityForm.get('tags')?.value; track tag.id) {
|
||||||
|
<mat-chip-row
|
||||||
|
matChipRemove
|
||||||
|
[removable]="true"
|
||||||
|
(removed)="onRemoveTag(tag)"
|
||||||
|
>
|
||||||
|
{{ tag.name }}
|
||||||
|
<ion-icon class="ml-2" matPrefix name="close-outline" />
|
||||||
|
</mat-chip-row>
|
||||||
|
}
|
||||||
|
<input
|
||||||
|
#tagInput
|
||||||
|
name="close-outline"
|
||||||
|
[matAutocomplete]="autocompleteTags"
|
||||||
|
[matChipInputFor]="tagsChipList"
|
||||||
|
[matChipInputSeparatorKeyCodes]="separatorKeysCodes"
|
||||||
|
/>
|
||||||
|
</mat-chip-grid>
|
||||||
|
<mat-autocomplete
|
||||||
|
#autocompleteTags="matAutocomplete"
|
||||||
|
(optionSelected)="onAddTag($event)"
|
||||||
|
>
|
||||||
|
@for (tag of filteredTagsObservable | async; track tag.id) {
|
||||||
|
<mat-option [value]="tag.id">
|
||||||
|
{{ tag.name }}
|
||||||
|
</mat-option>
|
||||||
|
}
|
||||||
|
</mat-autocomplete>
|
||||||
|
</mat-form-field>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
@if (!data.hasPermissionToUpdateOrder && tagsAvailable?.length > 0) {
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<div class="h5" i18n>Tags</div>
|
<div class="h5" i18n>Tags</div>
|
||||||
<mat-chip-listbox>
|
<mat-chip-listbox>
|
||||||
<mat-chip-option *ngFor="let tag of tags" disabled>{{
|
@for (tag of tags; track tag) {
|
||||||
tag.name
|
<mat-chip-option disabled>{{ tag.name }}</mat-chip-option>
|
||||||
}}</mat-chip-option>
|
}
|
||||||
</mat-chip-listbox>
|
</mat-chip-listbox>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -9,6 +9,7 @@ export interface HoldingDetailDialogParams {
|
|||||||
deviceType: string;
|
deviceType: string;
|
||||||
hasImpersonationId: boolean;
|
hasImpersonationId: boolean;
|
||||||
hasPermissionToReportDataGlitch: boolean;
|
hasPermissionToReportDataGlitch: boolean;
|
||||||
|
hasPermissionToUpdateOrder: boolean;
|
||||||
locale: string;
|
locale: string;
|
||||||
symbol: string;
|
symbol: string;
|
||||||
}
|
}
|
||||||
|
@ -1,14 +1,24 @@
|
|||||||
import { DataService } from '@ghostfolio/client/services/data.service';
|
import { DataService } from '@ghostfolio/client/services/data.service';
|
||||||
import { ImpersonationStorageService } from '@ghostfolio/client/services/impersonation-storage.service';
|
import { ImpersonationStorageService } from '@ghostfolio/client/services/impersonation-storage.service';
|
||||||
import { UserService } from '@ghostfolio/client/services/user/user.service';
|
import { UserService } from '@ghostfolio/client/services/user/user.service';
|
||||||
import { PortfolioPosition, User } from '@ghostfolio/common/interfaces';
|
import {
|
||||||
|
PortfolioPosition,
|
||||||
|
UniqueAsset,
|
||||||
|
User
|
||||||
|
} from '@ghostfolio/common/interfaces';
|
||||||
import { hasPermission, permissions } from '@ghostfolio/common/permissions';
|
import { hasPermission, permissions } from '@ghostfolio/common/permissions';
|
||||||
import { HoldingType, ToggleOption } from '@ghostfolio/common/types';
|
import {
|
||||||
|
HoldingType,
|
||||||
|
HoldingsViewMode,
|
||||||
|
ToggleOption
|
||||||
|
} from '@ghostfolio/common/types';
|
||||||
|
|
||||||
import { ChangeDetectorRef, Component, OnDestroy, OnInit } from '@angular/core';
|
import { ChangeDetectorRef, Component, OnDestroy, OnInit } from '@angular/core';
|
||||||
|
import { FormControl } from '@angular/forms';
|
||||||
|
import { Router } from '@angular/router';
|
||||||
import { DeviceDetectorService } from 'ngx-device-detector';
|
import { DeviceDetectorService } from 'ngx-device-detector';
|
||||||
import { Subject } from 'rxjs';
|
import { Subject } from 'rxjs';
|
||||||
import { takeUntil } from 'rxjs/operators';
|
import { skip, takeUntil } from 'rxjs/operators';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'gf-home-holdings',
|
selector: 'gf-home-holdings',
|
||||||
@ -16,8 +26,11 @@ import { takeUntil } from 'rxjs/operators';
|
|||||||
templateUrl: './home-holdings.html'
|
templateUrl: './home-holdings.html'
|
||||||
})
|
})
|
||||||
export class HomeHoldingsComponent implements OnDestroy, OnInit {
|
export class HomeHoldingsComponent implements OnDestroy, OnInit {
|
||||||
|
public static DEFAULT_HOLDINGS_VIEW_MODE: HoldingsViewMode = 'TABLE';
|
||||||
|
|
||||||
public deviceType: string;
|
public deviceType: string;
|
||||||
public hasImpersonationId: boolean;
|
public hasImpersonationId: boolean;
|
||||||
|
public hasPermissionToAccessHoldingsChart: boolean;
|
||||||
public hasPermissionToCreateOrder: boolean;
|
public hasPermissionToCreateOrder: boolean;
|
||||||
public holdings: PortfolioPosition[];
|
public holdings: PortfolioPosition[];
|
||||||
public holdingType: HoldingType = 'ACTIVE';
|
public holdingType: HoldingType = 'ACTIVE';
|
||||||
@ -26,6 +39,9 @@ export class HomeHoldingsComponent implements OnDestroy, OnInit {
|
|||||||
{ label: $localize`Closed`, value: 'CLOSED' }
|
{ label: $localize`Closed`, value: 'CLOSED' }
|
||||||
];
|
];
|
||||||
public user: User;
|
public user: User;
|
||||||
|
public viewModeFormControl = new FormControl<HoldingsViewMode>(
|
||||||
|
HomeHoldingsComponent.DEFAULT_HOLDINGS_VIEW_MODE
|
||||||
|
);
|
||||||
|
|
||||||
private unsubscribeSubject = new Subject<void>();
|
private unsubscribeSubject = new Subject<void>();
|
||||||
|
|
||||||
@ -34,6 +50,7 @@ export class HomeHoldingsComponent implements OnDestroy, OnInit {
|
|||||||
private dataService: DataService,
|
private dataService: DataService,
|
||||||
private deviceService: DeviceDetectorService,
|
private deviceService: DeviceDetectorService,
|
||||||
private impersonationStorageService: ImpersonationStorageService,
|
private impersonationStorageService: ImpersonationStorageService,
|
||||||
|
private router: Router,
|
||||||
private userService: UserService
|
private userService: UserService
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
@ -53,38 +70,50 @@ export class HomeHoldingsComponent implements OnDestroy, OnInit {
|
|||||||
if (state?.user) {
|
if (state?.user) {
|
||||||
this.user = state.user;
|
this.user = state.user;
|
||||||
|
|
||||||
|
this.hasPermissionToAccessHoldingsChart = hasPermission(
|
||||||
|
this.user.permissions,
|
||||||
|
permissions.accessHoldingsChart
|
||||||
|
);
|
||||||
|
|
||||||
this.hasPermissionToCreateOrder = hasPermission(
|
this.hasPermissionToCreateOrder = hasPermission(
|
||||||
this.user.permissions,
|
this.user.permissions,
|
||||||
permissions.createOrder
|
permissions.createOrder
|
||||||
);
|
);
|
||||||
|
|
||||||
this.holdings = undefined;
|
this.initialize();
|
||||||
|
|
||||||
this.fetchHoldings()
|
|
||||||
.pipe(takeUntil(this.unsubscribeSubject))
|
|
||||||
.subscribe(({ holdings }) => {
|
|
||||||
this.holdings = holdings;
|
|
||||||
|
|
||||||
this.changeDetectorRef.markForCheck();
|
|
||||||
});
|
|
||||||
|
|
||||||
this.changeDetectorRef.markForCheck();
|
this.changeDetectorRef.markForCheck();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
this.viewModeFormControl.valueChanges
|
||||||
|
.pipe(
|
||||||
|
// Skip inizialization: "new FormControl"
|
||||||
|
skip(1),
|
||||||
|
takeUntil(this.unsubscribeSubject)
|
||||||
|
)
|
||||||
|
.subscribe((holdingsViewMode) => {
|
||||||
|
this.dataService
|
||||||
|
.putUserSetting({ holdingsViewMode })
|
||||||
|
.pipe(takeUntil(this.unsubscribeSubject))
|
||||||
|
.subscribe(() => {
|
||||||
|
this.userService.remove();
|
||||||
|
});
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
public onChangeHoldingType(aHoldingType: HoldingType) {
|
public onChangeHoldingType(aHoldingType: HoldingType) {
|
||||||
this.holdingType = aHoldingType;
|
this.holdingType = aHoldingType;
|
||||||
|
|
||||||
this.holdings = undefined;
|
this.initialize();
|
||||||
|
}
|
||||||
|
|
||||||
this.fetchHoldings()
|
public onSymbolClicked({ dataSource, symbol }: UniqueAsset) {
|
||||||
.pipe(takeUntil(this.unsubscribeSubject))
|
if (dataSource && symbol) {
|
||||||
.subscribe(({ holdings }) => {
|
this.router.navigate([], {
|
||||||
this.holdings = holdings;
|
queryParams: { dataSource, symbol, holdingDetailDialog: true }
|
||||||
|
|
||||||
this.changeDetectorRef.markForCheck();
|
|
||||||
});
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public ngOnDestroy() {
|
public ngOnDestroy() {
|
||||||
@ -104,4 +133,38 @@ export class HomeHoldingsComponent implements OnDestroy, OnInit {
|
|||||||
range: this.user?.settings?.dateRange
|
range: this.user?.settings?.dateRange
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private initialize() {
|
||||||
|
this.viewModeFormControl.disable();
|
||||||
|
|
||||||
|
if (
|
||||||
|
this.hasPermissionToAccessHoldingsChart &&
|
||||||
|
this.holdingType === 'ACTIVE'
|
||||||
|
) {
|
||||||
|
this.viewModeFormControl.enable({ emitEvent: false });
|
||||||
|
|
||||||
|
this.viewModeFormControl.setValue(
|
||||||
|
this.deviceType === 'mobile'
|
||||||
|
? HomeHoldingsComponent.DEFAULT_HOLDINGS_VIEW_MODE
|
||||||
|
: this.user?.settings?.holdingsViewMode ||
|
||||||
|
HomeHoldingsComponent.DEFAULT_HOLDINGS_VIEW_MODE,
|
||||||
|
{ emitEvent: false }
|
||||||
|
);
|
||||||
|
} else if (this.holdingType === 'CLOSED') {
|
||||||
|
this.viewModeFormControl.setValue(
|
||||||
|
HomeHoldingsComponent.DEFAULT_HOLDINGS_VIEW_MODE,
|
||||||
|
{ emitEvent: false }
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
this.holdings = undefined;
|
||||||
|
|
||||||
|
this.fetchHoldings()
|
||||||
|
.pipe(takeUntil(this.unsubscribeSubject))
|
||||||
|
.subscribe(({ holdings }) => {
|
||||||
|
this.holdings = holdings;
|
||||||
|
|
||||||
|
this.changeDetectorRef.markForCheck();
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -6,33 +6,62 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-lg">
|
<div class="col-lg">
|
||||||
<div class="d-flex justify-content-end">
|
<div class="d-flex">
|
||||||
<gf-toggle
|
@if (user?.settings?.isExperimentalFeatures) {
|
||||||
class="d-none d-lg-block"
|
<div class="d-flex">
|
||||||
[defaultValue]="holdingType"
|
<div class="d-none d-lg-block">
|
||||||
[isLoading]="false"
|
<mat-button-toggle-group
|
||||||
[options]="holdingTypeOptions"
|
[formControl]="viewModeFormControl"
|
||||||
(change)="onChangeHoldingType($event.value)"
|
[hideSingleSelectionIndicator]="true"
|
||||||
/>
|
>
|
||||||
</div>
|
<mat-button-toggle i18n-title title="Table" value="TABLE">
|
||||||
<gf-holdings-table
|
<ion-icon name="reorder-four-outline" />
|
||||||
[baseCurrency]="user?.settings?.baseCurrency"
|
</mat-button-toggle>
|
||||||
[deviceType]="deviceType"
|
<mat-button-toggle i18n-title title="Chart" value="CHART">
|
||||||
[hasPermissionToCreateActivity]="hasPermissionToCreateOrder"
|
<ion-icon name="grid-outline" />
|
||||||
[holdings]="holdings"
|
</mat-button-toggle>
|
||||||
[locale]="user?.settings?.locale"
|
</mat-button-toggle-group>
|
||||||
/>
|
</div>
|
||||||
@if (hasPermissionToCreateOrder && holdings?.length > 0) {
|
</div>
|
||||||
<div class="text-center">
|
}
|
||||||
<a
|
<div class="align-items-center d-flex flex-grow-1 justify-content-end">
|
||||||
class="mt-3"
|
<gf-toggle
|
||||||
i18n
|
class="d-none d-lg-block"
|
||||||
mat-stroked-button
|
[defaultValue]="holdingType"
|
||||||
[routerLink]="['/portfolio', 'activities']"
|
[isLoading]="false"
|
||||||
>Manage Activities</a
|
[options]="holdingTypeOptions"
|
||||||
>
|
(change)="onChangeHoldingType($event.value)"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
@if (viewModeFormControl.value === 'CHART') {
|
||||||
|
<gf-treemap-chart
|
||||||
|
class="mt-3"
|
||||||
|
cursor="pointer"
|
||||||
|
[holdings]="holdings"
|
||||||
|
(treemapChartClicked)="onSymbolClicked($event)"
|
||||||
|
/>
|
||||||
}
|
}
|
||||||
|
<div [ngClass]="{ 'd-none': viewModeFormControl.value !== 'TABLE' }">
|
||||||
|
<gf-holdings-table
|
||||||
|
[baseCurrency]="user?.settings?.baseCurrency"
|
||||||
|
[deviceType]="deviceType"
|
||||||
|
[hasPermissionToCreateActivity]="hasPermissionToCreateOrder"
|
||||||
|
[holdings]="holdings"
|
||||||
|
[locale]="user?.settings?.locale"
|
||||||
|
/>
|
||||||
|
@if (hasPermissionToCreateOrder && holdings?.length > 0) {
|
||||||
|
<div class="text-center">
|
||||||
|
<a
|
||||||
|
class="mt-3"
|
||||||
|
i18n
|
||||||
|
mat-stroked-button
|
||||||
|
[routerLink]="['/portfolio', 'activities']"
|
||||||
|
>Manage Activities</a
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,9 +1,12 @@
|
|||||||
import { GfToggleModule } from '@ghostfolio/client/components/toggle/toggle.module';
|
import { GfToggleModule } from '@ghostfolio/client/components/toggle/toggle.module';
|
||||||
import { GfHoldingsTableComponent } from '@ghostfolio/ui/holdings-table';
|
import { GfHoldingsTableComponent } from '@ghostfolio/ui/holdings-table';
|
||||||
|
import { GfTreemapChartComponent } from '@ghostfolio/ui/treemap-chart';
|
||||||
|
|
||||||
import { CommonModule } from '@angular/common';
|
import { CommonModule } from '@angular/common';
|
||||||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
|
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
|
||||||
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
||||||
import { MatButtonModule } from '@angular/material/button';
|
import { MatButtonModule } from '@angular/material/button';
|
||||||
|
import { MatButtonToggleModule } from '@angular/material/button-toggle';
|
||||||
import { RouterModule } from '@angular/router';
|
import { RouterModule } from '@angular/router';
|
||||||
|
|
||||||
import { HomeHoldingsComponent } from './home-holdings.component';
|
import { HomeHoldingsComponent } from './home-holdings.component';
|
||||||
@ -12,9 +15,13 @@ import { HomeHoldingsComponent } from './home-holdings.component';
|
|||||||
declarations: [HomeHoldingsComponent],
|
declarations: [HomeHoldingsComponent],
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
|
FormsModule,
|
||||||
GfHoldingsTableComponent,
|
GfHoldingsTableComponent,
|
||||||
GfToggleModule,
|
GfToggleModule,
|
||||||
|
GfTreemapChartComponent,
|
||||||
MatButtonModule,
|
MatButtonModule,
|
||||||
|
MatButtonToggleModule,
|
||||||
|
ReactiveFormsModule,
|
||||||
RouterModule
|
RouterModule
|
||||||
],
|
],
|
||||||
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
:host {
|
:host {
|
||||||
display: block;
|
display: block;
|
||||||
|
|
||||||
|
.mat-button-toggle-group {
|
||||||
|
.mat-button-toggle-appearance-standard {
|
||||||
|
--mat-standard-button-toggle-height: 1.5rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -11,6 +11,7 @@ import {
|
|||||||
import { hasPermission, permissions } from '@ghostfolio/common/permissions';
|
import { hasPermission, permissions } from '@ghostfolio/common/permissions';
|
||||||
|
|
||||||
import { ChangeDetectorRef, Component, OnDestroy, OnInit } from '@angular/core';
|
import { ChangeDetectorRef, Component, OnDestroy, OnInit } from '@angular/core';
|
||||||
|
import { DeviceDetectorService } from 'ngx-device-detector';
|
||||||
import { Subject } from 'rxjs';
|
import { Subject } from 'rxjs';
|
||||||
import { takeUntil } from 'rxjs/operators';
|
import { takeUntil } from 'rxjs/operators';
|
||||||
|
|
||||||
@ -21,6 +22,7 @@ import { takeUntil } from 'rxjs/operators';
|
|||||||
})
|
})
|
||||||
export class HomeMarketComponent implements OnDestroy, OnInit {
|
export class HomeMarketComponent implements OnDestroy, OnInit {
|
||||||
public benchmarks: Benchmark[];
|
public benchmarks: Benchmark[];
|
||||||
|
public deviceType: string;
|
||||||
public fearAndGreedIndex: number;
|
public fearAndGreedIndex: number;
|
||||||
public fearLabel = $localize`Fear`;
|
public fearLabel = $localize`Fear`;
|
||||||
public greedLabel = $localize`Greed`;
|
public greedLabel = $localize`Greed`;
|
||||||
@ -36,8 +38,10 @@ export class HomeMarketComponent implements OnDestroy, OnInit {
|
|||||||
public constructor(
|
public constructor(
|
||||||
private changeDetectorRef: ChangeDetectorRef,
|
private changeDetectorRef: ChangeDetectorRef,
|
||||||
private dataService: DataService,
|
private dataService: DataService,
|
||||||
|
private deviceService: DeviceDetectorService,
|
||||||
private userService: UserService
|
private userService: UserService
|
||||||
) {
|
) {
|
||||||
|
this.deviceType = this.deviceService.getDeviceInfo().deviceType;
|
||||||
this.info = this.dataService.fetchInfo();
|
this.info = this.dataService.fetchInfo();
|
||||||
this.isLoading = true;
|
this.isLoading = true;
|
||||||
|
|
||||||
|
@ -1,47 +1,51 @@
|
|||||||
<div class="container">
|
<div class="container">
|
||||||
<h1 class="d-none d-sm-block h3 mb-4 text-center" i18n>Markets</h1>
|
<h1 class="d-none d-sm-block h3 mb-4 text-center" i18n>Markets</h1>
|
||||||
<div *ngIf="hasPermissionToAccessFearAndGreedIndex" class="mb-5 row">
|
@if (hasPermissionToAccessFearAndGreedIndex) {
|
||||||
<div class="col-xs-12 col-md-8 offset-md-2">
|
<div class="mb-5 row">
|
||||||
<div class="mb-2 text-center text-muted">
|
<div class="col-xs-12 col-md-8 offset-md-2">
|
||||||
<small i18n>Last {{ numberOfDays }} Days</small>
|
<div class="mb-2 text-center text-muted">
|
||||||
|
<small i18n>Last {{ numberOfDays }} Days</small>
|
||||||
|
</div>
|
||||||
|
<gf-line-chart
|
||||||
|
class="mb-3"
|
||||||
|
symbol="Fear & Greed Index"
|
||||||
|
[colorScheme]="user?.settings?.colorScheme"
|
||||||
|
[historicalDataItems]="historicalDataItems"
|
||||||
|
[isAnimated]="true"
|
||||||
|
[locale]="user?.settings?.locale || undefined"
|
||||||
|
[showXAxis]="true"
|
||||||
|
[showYAxis]="true"
|
||||||
|
[yMax]="100"
|
||||||
|
[yMaxLabel]="greedLabel"
|
||||||
|
[yMin]="0"
|
||||||
|
[yMinLabel]="fearLabel"
|
||||||
|
/>
|
||||||
|
<gf-fear-and-greed-index
|
||||||
|
class="d-flex justify-content-center"
|
||||||
|
[fearAndGreedIndex]="fearAndGreedIndex"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
<gf-line-chart
|
|
||||||
class="mb-3"
|
|
||||||
symbol="Fear & Greed Index"
|
|
||||||
[colorScheme]="user?.settings?.colorScheme"
|
|
||||||
[historicalDataItems]="historicalDataItems"
|
|
||||||
[isAnimated]="true"
|
|
||||||
[locale]="user?.settings?.locale || undefined"
|
|
||||||
[showXAxis]="true"
|
|
||||||
[showYAxis]="true"
|
|
||||||
[yMax]="100"
|
|
||||||
[yMaxLabel]="greedLabel"
|
|
||||||
[yMin]="0"
|
|
||||||
[yMinLabel]="fearLabel"
|
|
||||||
/>
|
|
||||||
<gf-fear-and-greed-index
|
|
||||||
class="d-flex justify-content-center"
|
|
||||||
[fearAndGreedIndex]="fearAndGreedIndex"
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
}
|
||||||
|
|
||||||
<div class="mb-3 row">
|
<div class="mb-3 row">
|
||||||
<div class="col-xs-12 col-md-8 offset-md-2">
|
<div class="col-xs-12 col-md-8 offset-md-2">
|
||||||
<gf-benchmark
|
<gf-benchmark
|
||||||
[benchmarks]="benchmarks"
|
[benchmarks]="benchmarks"
|
||||||
|
[deviceType]="deviceType"
|
||||||
[locale]="user?.settings?.locale || undefined"
|
[locale]="user?.settings?.locale || undefined"
|
||||||
[user]="user"
|
[user]="user"
|
||||||
/>
|
/>
|
||||||
<ngx-skeleton-loader
|
@if (isLoading) {
|
||||||
*ngIf="isLoading"
|
<ngx-skeleton-loader
|
||||||
animation="pulse"
|
animation="pulse"
|
||||||
class="px-2 py-3"
|
class="px-2 py-3"
|
||||||
[theme]="{
|
[theme]="{
|
||||||
height: '1.5rem',
|
height: '1.5rem',
|
||||||
width: '100%'
|
width: '100%'
|
||||||
}"
|
}"
|
||||||
/>
|
/>
|
||||||
|
}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -3,6 +3,7 @@ import { LayoutService } from '@ghostfolio/client/core/layout.service';
|
|||||||
import { DataService } from '@ghostfolio/client/services/data.service';
|
import { DataService } from '@ghostfolio/client/services/data.service';
|
||||||
import { ImpersonationStorageService } from '@ghostfolio/client/services/impersonation-storage.service';
|
import { ImpersonationStorageService } from '@ghostfolio/client/services/impersonation-storage.service';
|
||||||
import { UserService } from '@ghostfolio/client/services/user/user.service';
|
import { UserService } from '@ghostfolio/client/services/user/user.service';
|
||||||
|
import { NUMERICAL_PRECISION_THRESHOLD } from '@ghostfolio/common/config';
|
||||||
import {
|
import {
|
||||||
LineChartItem,
|
LineChartItem,
|
||||||
PortfolioPerformance,
|
PortfolioPerformance,
|
||||||
@ -34,6 +35,7 @@ export class HomeOverviewComponent implements OnDestroy, OnInit {
|
|||||||
public isAllTimeLow: boolean;
|
public isAllTimeLow: boolean;
|
||||||
public isLoadingPerformance = true;
|
public isLoadingPerformance = true;
|
||||||
public performance: PortfolioPerformance;
|
public performance: PortfolioPerformance;
|
||||||
|
public precision = 2;
|
||||||
public showDetails = false;
|
public showDetails = false;
|
||||||
public unit: string;
|
public unit: string;
|
||||||
public user: User;
|
public user: User;
|
||||||
@ -67,6 +69,12 @@ export class HomeOverviewComponent implements OnDestroy, OnInit {
|
|||||||
public ngOnInit() {
|
public ngOnInit() {
|
||||||
this.deviceType = this.deviceService.getDeviceInfo().deviceType;
|
this.deviceType = this.deviceService.getDeviceInfo().deviceType;
|
||||||
|
|
||||||
|
this.showDetails =
|
||||||
|
!this.user.settings.isRestrictedView &&
|
||||||
|
this.user.settings.viewMode !== 'ZEN';
|
||||||
|
|
||||||
|
this.unit = this.showDetails ? this.user.settings.baseCurrency : '%';
|
||||||
|
|
||||||
this.impersonationStorageService
|
this.impersonationStorageService
|
||||||
.onChangeHasImpersonation()
|
.onChangeHasImpersonation()
|
||||||
.pipe(takeUntil(this.unsubscribeSubject))
|
.pipe(takeUntil(this.unsubscribeSubject))
|
||||||
@ -81,12 +89,6 @@ export class HomeOverviewComponent implements OnDestroy, OnInit {
|
|||||||
.subscribe(() => {
|
.subscribe(() => {
|
||||||
this.update();
|
this.update();
|
||||||
});
|
});
|
||||||
|
|
||||||
this.showDetails =
|
|
||||||
!this.user.settings.isRestrictedView &&
|
|
||||||
this.user.settings.viewMode !== 'ZEN';
|
|
||||||
|
|
||||||
this.unit = this.showDetails ? this.user.settings.baseCurrency : '%';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public onChangeDateRange(dateRange: DateRange) {
|
public onChangeDateRange(dateRange: DateRange) {
|
||||||
@ -134,6 +136,14 @@ export class HomeOverviewComponent implements OnDestroy, OnInit {
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
if (
|
||||||
|
this.deviceType === 'mobile' &&
|
||||||
|
this.performance.currentValueInBaseCurrency >=
|
||||||
|
NUMERICAL_PRECISION_THRESHOLD
|
||||||
|
) {
|
||||||
|
this.precision = 0;
|
||||||
|
}
|
||||||
|
|
||||||
this.isLoadingPerformance = false;
|
this.isLoadingPerformance = false;
|
||||||
|
|
||||||
this.changeDetectorRef.markForCheck();
|
this.changeDetectorRef.markForCheck();
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user