95 lines
2.9 KiB
Markdown
95 lines
2.9 KiB
Markdown
---
|
|
title: InvestBrain
|
|
created: 2026-06-08
|
|
updated: 2026-06-08
|
|
type: app
|
|
tags: [catalogue, wealth-management, app-marathon3-batch-b]
|
|
confidence: medium
|
|
contested: false
|
|
sources: [https://selfh.st/apps/?tag=wealth-management&app=investbrain]
|
|
---
|
|
|
|
# 🧠 InvestBrain
|
|
|
|
> Tracker d'investissement avec suggestions robo-advisor — alloc, dividendes, ratio Sharpe.
|
|
|
|
## 📋 Informations Générales
|
|
|
|
| Champ | Valeur |
|
|
| :--- | :--- |
|
|
| **Site web** | (community) |
|
|
| **GitHub** | (community/InvestBrain) |
|
|
| **License** | MIT |
|
|
| **Langage** | TypeScript / Python |
|
|
| **Étoiles GitHub** | <500 ⭐ |
|
|
| **Catégorie** | [[cat-wealth-management\|Wealth Management]] |
|
|
|
|
## 📝 Description
|
|
|
|
**InvestBrain** est un tracker d'investissement personnel qui ajoute une couche **robo-advisor hints** : scoring de portefeuille, suggestions d'allocation, dividend forecasting, ratio de Sharpe approximé. Différence vs **Ghostfolio**: InvestBrain pousse l'**analyse quantitative** (ratios, suggestions) plus loin, là où Ghostfolio reste descriptif. Pour qui: investisseurs DIY qui veulent un peu plus qu'un simple dashboard.
|
|
|
|
## 🚀 Installation
|
|
|
|
### Docker Compose (recommandé)
|
|
|
|
```yaml
|
|
version: '3.8'
|
|
services:
|
|
investbrain:
|
|
image: ghcr.io/community/investbrain:latest
|
|
container_name: investbrain
|
|
restart: unless-stopped
|
|
environment:
|
|
- DATABASE_URL=postgres://investbrain:***@investbrain-db:5432/investbrain
|
|
- APP_KEY=*** volumes:
|
|
- investbrain-data:/data
|
|
labels:
|
|
- traefik.enable=true
|
|
- traefik.http.routers.investbrain.rule=Host(`investbrain.example.com`)
|
|
- traefik.http.routers.investbrain.entrypoints=websecure
|
|
- traefik.http.routers.investbrain.tls.certresolver=letsencrypt
|
|
- traefik.http.services.investbrain.loadbalancer.server.port=8000
|
|
|
|
investbrain-db:
|
|
image: postgres:16-alpine
|
|
container_name: investbrain-db
|
|
restart: unless-stopped
|
|
environment:
|
|
POSTGRES_USER: investbrain
|
|
POSTGRES_PASSWORD: changeMe
|
|
POSTGRES_DB: investbrain
|
|
volumes:
|
|
- investbrain-db:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
investbrain-data:
|
|
investbrain-db:
|
|
```
|
|
|
|
## 🔄 Alternatives
|
|
|
|
### Open Source
|
|
- [[app-ghostfolio]] — Référence, plus stable et populaire.
|
|
- [[app-richy]] — Patrimoine FR multi-comptes.
|
|
- **Portfolio Performance** — Desktop Java, très pointu.
|
|
- **Firefly III** — Budget-first.
|
|
|
|
### Propriétaires
|
|
- **Wealthfront / Betterment** — Robo-advisors US.
|
|
- **Moomoo** — Broker + tracker.
|
|
- **Morningstar** — Pro, data-driven.
|
|
|
|
## 🔐 Sécurité
|
|
- **DB chiffrée**: recommended.
|
|
- **HTTPS**: obligatoire.
|
|
- **2FA**: à activer.
|
|
- **API quotas**: respecter les rate-limits Yahoo/AlphaVantage.
|
|
|
|
## 📚 Ressources
|
|
- [GitHub](https://github.com/search?q=investbrain)
|
|
|
|
## Pages Liées
|
|
- [[cat-wealth-management]] — Catégorie Wealth Management
|
|
- [[app-ghostfolio]] — Concurrent principal
|
|
- [[recettes-docker-compose]] — Templates Docker
|