Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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?

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 upx

make build-prod && make compress-prod
```