Initialize README with project details and setup
Browse filesAdded project overview, tasks, and setup instructions.
README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Quant-Gym: Financial Analysis Environment for AI Agents
|
| 2 |
+
|
| 3 |
+
An OpenEnv-compliant environment that tests AI agents on:
|
| 4 |
+
- Real-time market data retrieval
|
| 5 |
+
- News sentiment analysis with explainable reasoning
|
| 6 |
+
- Trading strategy backtesting with risk metrics
|
| 7 |
+
|
| 8 |
+
## 🎯 Tasks
|
| 9 |
+
1. **Fetch Market Data** - Retrieve current price for AAPL
|
| 10 |
+
2. **News Analysis** - Analyze headlines and recommend Buy/Sell/Hold with rationale
|
| 11 |
+
3. **Backtest Strategy** - Simulate strategy and report Sharpe ratio & max drawdown
|
| 12 |
+
|
| 13 |
+
## 🛠️ Setup
|
| 14 |
+
```bash
|
| 15 |
+
pip install -r requirements.txt
|
| 16 |
+
uvicorn server.app:app --reload
|