Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/charles-m-knox/investment-balancer
Splits up investable cash into percentages. Want to always invest 25% to a few large companies? And 75% into some ETFs? Or something completely different?
https://github.com/charles-m-knox/investment-balancer
cli finance go golang investment investment-balancer
Last synced: 14 days ago
JSON representation
Splits up investable cash into percentages. Want to always invest 25% to a few large companies? And 75% into some ETFs? Or something completely different?
- Host: GitHub
- URL: https://github.com/charles-m-knox/investment-balancer
- Owner: charles-m-knox
- License: mit
- Created: 2024-09-09T23:58:31.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-09-10T00:08:31.000Z (4 months ago)
- Last Synced: 2024-11-09T11:39:13.175Z (2 months ago)
- Topics: cli, finance, go, golang, investment, investment-balancer
- Language: Go
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# investment-balancer-v3
Copy `config.example.yml` to `config.yml` and then run:
```bash
make build && make run
```On Linux you can then do
```bash
xdg-open outputs/investments.csv
```## Production-ready build
Will produce a file called `investment-balancer-v3-compressed`.
```bash
# install upx for compressing binaries:
# https://upx.github.io/
sudo dnf install upxmake build-prod && make compress-prod
```