Astocoder commited on
Commit
fa1c25e
·
unverified ·
1 Parent(s): e3b51f2

Initialize README with project details and setup

Browse files

Added project overview, tasks, and setup instructions.

Files changed (1) hide show
  1. README.md +16 -0
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