├── .env.example ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── README.md ├── poetry.lock ├── pyproject.toml └── src ├── agents ├── fundamentals.py ├── portfolio_manager.py ├── risk_manager.py ├── sentiment.py ├── technicals.py └── valuation.py ├── backtester.py ├── data ├── cache.py └── models.py ├── graph └── state.py ├── main.py ├── tools └── api.py └── utils ├── __init__.py ├── analysts.py ├── display.py └── progress.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/ai-hedge-fund/HEAD/.env.example -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/ai-hedge-fund/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/ai-hedge-fund/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/ai-hedge-fund/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/ai-hedge-fund/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/ai-hedge-fund/HEAD/README.md -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/ai-hedge-fund/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/ai-hedge-fund/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/agents/fundamentals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/ai-hedge-fund/HEAD/src/agents/fundamentals.py -------------------------------------------------------------------------------- /src/agents/portfolio_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/ai-hedge-fund/HEAD/src/agents/portfolio_manager.py -------------------------------------------------------------------------------- /src/agents/risk_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/ai-hedge-fund/HEAD/src/agents/risk_manager.py -------------------------------------------------------------------------------- /src/agents/sentiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/ai-hedge-fund/HEAD/src/agents/sentiment.py -------------------------------------------------------------------------------- /src/agents/technicals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/ai-hedge-fund/HEAD/src/agents/technicals.py -------------------------------------------------------------------------------- /src/agents/valuation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/ai-hedge-fund/HEAD/src/agents/valuation.py -------------------------------------------------------------------------------- /src/backtester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/ai-hedge-fund/HEAD/src/backtester.py -------------------------------------------------------------------------------- /src/data/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/ai-hedge-fund/HEAD/src/data/cache.py -------------------------------------------------------------------------------- /src/data/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/ai-hedge-fund/HEAD/src/data/models.py -------------------------------------------------------------------------------- /src/graph/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/ai-hedge-fund/HEAD/src/graph/state.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/ai-hedge-fund/HEAD/src/main.py -------------------------------------------------------------------------------- /src/tools/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/ai-hedge-fund/HEAD/src/tools/api.py -------------------------------------------------------------------------------- /src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # This file can be empty 2 | -------------------------------------------------------------------------------- /src/utils/analysts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/ai-hedge-fund/HEAD/src/utils/analysts.py -------------------------------------------------------------------------------- /src/utils/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/ai-hedge-fund/HEAD/src/utils/display.py -------------------------------------------------------------------------------- /src/utils/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/ai-hedge-fund/HEAD/src/utils/progress.py --------------------------------------------------------------------------------