├── .env.example ├── .gitignore ├── Dockerfile ├── README.md ├── docs ├── ARCHITECTURE.md └── architecture.png ├── poetry.lock ├── pyproject.toml └── src ├── __init__.py ├── agent ├── __init__.py └── decision_maker.py ├── config_loader.py ├── indicators ├── __init__.py └── taapi_client.py ├── main.py ├── trading ├── __init__.py └── hyperliquid_api.py └── utils ├── __init__.py ├── formatting.py └── prompt_utils.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gajesh2007/ai-trading-agent/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gajesh2007/ai-trading-agent/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gajesh2007/ai-trading-agent/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gajesh2007/ai-trading-agent/HEAD/README.md -------------------------------------------------------------------------------- /docs/ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gajesh2007/ai-trading-agent/HEAD/docs/ARCHITECTURE.md -------------------------------------------------------------------------------- /docs/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gajesh2007/ai-trading-agent/HEAD/docs/architecture.png -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gajesh2007/ai-trading-agent/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gajesh2007/ai-trading-agent/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/agent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/agent/decision_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gajesh2007/ai-trading-agent/HEAD/src/agent/decision_maker.py -------------------------------------------------------------------------------- /src/config_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gajesh2007/ai-trading-agent/HEAD/src/config_loader.py -------------------------------------------------------------------------------- /src/indicators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/indicators/taapi_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gajesh2007/ai-trading-agent/HEAD/src/indicators/taapi_client.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gajesh2007/ai-trading-agent/HEAD/src/main.py -------------------------------------------------------------------------------- /src/trading/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/trading/hyperliquid_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gajesh2007/ai-trading-agent/HEAD/src/trading/hyperliquid_api.py -------------------------------------------------------------------------------- /src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | """Utility modules for the trading agent.""" 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/utils/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gajesh2007/ai-trading-agent/HEAD/src/utils/formatting.py -------------------------------------------------------------------------------- /src/utils/prompt_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gajesh2007/ai-trading-agent/HEAD/src/utils/prompt_utils.py --------------------------------------------------------------------------------