Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dcapal/dcapal
DcaPal is a free, no registration, online tool to help you keep your portfolio balanced with dollar cost averaging investments
https://github.com/dcapal/dcapal
crypto dollar-cost-averaging hacktoberfest investment personal-finance portfolio-management portfolio-optimization
Last synced: 23 days ago
JSON representation
DcaPal is a free, no registration, online tool to help you keep your portfolio balanced with dollar cost averaging investments
- Host: GitHub
- URL: https://github.com/dcapal/dcapal
- Owner: dcapal
- License: mit
- Created: 2022-11-20T21:07:12.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-08-28T12:26:13.000Z (5 months ago)
- Last Synced: 2024-08-28T22:53:48.281Z (5 months ago)
- Topics: crypto, dollar-cost-averaging, hacktoberfest, investment, personal-finance, portfolio-management, portfolio-optimization
- Language: Rust
- Homepage: https://dcapal.com
- Size: 2.24 MB
- Stars: 53
- Watchers: 4
- Forks: 9
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
- awesome-rust - dcapal - DcaPal is a free, no registration, online tool to help you keep your portfolio balanced with dollar cost averaging investments. (Applications / Utilities)
- fucking-awesome-rust - dcapal - DcaPal is a free, no registration, online tool to help you keep your portfolio balanced with dollar cost averaging investments. (Applications / Utilities)
- fucking-awesome-rust - dcapal - DcaPal is a free, no registration, online tool to help you keep your portfolio balanced with dollar cost averaging investments. (Applications / Utilities)
README
## About
[DcaPal](https://dcapal.com) is a pragmatic **Dollar Cost Averaging tool** for passive investors like me:
financially-educated people managing their own portfolios of not-too-many assets replicating major world indices.I was facing a common problem: it's that time of the month, got some savings to invest and have to split them across my
portfolio assets. *How the heck can I do it so that my portfolio stays balanced?*Hence DcaPal. You come here every week/month/quarter, build your portfolio, define asset allocation in percentage, input
how much you want to invest and **let the algorithm do the splitting for you**.## Getting started
You can start using [DcaPal](https://dcapal.com) right away. It's free. No registration required.
**Build** your own portfolio or, if you don't know where to start, explore our **Demo** portfolios:
- [60/40 Portfolio](https://dcapal.com/demo/60-40)
- [All-seasons Portfolio](https://dcapal.com/demo/all-seasons)
- [21Shares Crypto Basket 10 (HODLX)](https://dcapal.com/demo/hodlx)## Build Instructions
DcaPal does not store any user data. But if you are still concerned for your privacy, you can build and run it on your
machine.**Start Docker environment**
```bash
cd dcapal-backend
docker compose -f docker-compose.yml -f docker/docker-compose.dev.yml up -d
```(Note: if you're using a Mac with an ARM processor, you should replace (in the docker-compose dev file) Cadvisor's image
version with gcr.io/cadvisor/cadvisor:v0.47.1 and set platform: linux/aarch64)**Run DcaPal backend**
Prepare `dcapal.yml` config file
```bash
cd dcapal-backend
cp config/dcapal/dcapal.yml dcapal.yml
```Compile and start backend service
```bash
cargo run --release
```**Run DcaPal frontend**
Build DcaPal Optimizer
```bash
cd dcapal-optimizer-wasm
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
wasm-pack build --release
```Install NPM dependencies. Note: this is installing `dcapal-optimizer-wasm` package as well.
```bash
cd ../dcapal-frontend
npm install # Install dcapal-optimizer-wasm pkg as well
```Run frontend server
```bash
npm run start
```## Architecture
```mermaid
flowchart LR
Frontend[Frontend] ---|"/api/external/search?q={query}
/api/external/chart/${symbol}"|nginx[nginx]
subgraph dcapal.com
nginx---TradFiProvider[TradFi Provider]
nginx---Backend[Backend]
Backend---CryptoProvider[Crypto Provider REST API]
Backend---|"/assets/fiat
/assets/crypto
/price/{base}?quote={quote}"|Redis[Redis]
end
```## Contributing
Contributions and suggestions about how to improve this project are welcome! Please follow
our [contribution guidelines](CONTRIBUTING.md).## Thanks to all Contributors ❤️
Born as a personal Sunday morning project, DcaPal would have never grown so much without the help of heros willing to
contribute with their time and work. Thank you very much ya all!