I've written this Symfony application to keep track of my stock portfolio.
- Add any stock available on Yahoo Finance
- Show daily wins/losses
- Show overall wins/losses
- Add stocks to watch
- Auto and forced refresh on the tabular view
- Privacy feature to hide sensitive information
- Configure Symfony environment variables, e.g. as an
.env.local
file (example can be found in.env.dist
) - Install Composer dependencies:
composer install
- Initialize the database:
bin/console doctrine:schema:create
- Install Yarn dependencies:
yarn install
- Build production assets:
yarn build