Files
links/invest/apps.py
T
OpenClaw Sub-agent 8d05a11eb6 feat(invest): Add investment portfolio management feature
- Portfolio management (MOMO, IBKR personal, IBKR Yanhua)
- Stock holdings with transaction history (buy/sell)
- Weekly AI report generation
- Real-time price cache via Finnhub API
- Dashboard with tree view and performance charts
- REST API with AI-friendly batch update endpoint
- Management command for scheduled report generation

For大哥's personal investment advisor system.
2026-04-18 11:26:48 +10:00

8 lines
186 B
Python

from django.apps import AppConfig
class InvestConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'invest'
verbose_name = 'Investment Portfolio'