jiminHuang commited on
Commit
34d2ace
·
verified ·
1 Parent(s): 4050e19

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -23
README.md CHANGED
@@ -1,5 +1,5 @@
1
  ---
2
- title: Paper Trading Viz
3
  emoji: 📈
4
  colorFrom: indigo
5
  colorTo: pink
@@ -7,35 +7,29 @@ sdk: docker
7
  app_port: 4173
8
  app_file: Dockerfile
9
  pinned: false
10
- short_description: Visualize paper-trading agents.
11
  license: apache-2.0
12
  sdk_version: 5.49.1
13
  ---
14
 
15
- Paper Trading Viz (Vue + PrimeVue)
16
 
17
- 环境变量 (.env)
 
18
 
19
- 复制 `.env` 并填写 Supabase:
 
 
 
20
 
21
- ```
22
- VITE_SUPABASE_URL=https://bipjjabjhvssmwyabaow.supabase.co
23
- VITE_SUPABASE_ANON_KEY=YOUR_ANON_KEY
24
- # 推荐仅本地/安全环境使用,前端会暴露
25
- VITE_SUPABASE_SERVICE_ROLE_KEY=YOUR_SERVICE_ROLE_KEY
26
- ```
27
-
28
- 本地开发
29
 
30
- ```
31
- npm i
32
- npm run dev
33
- ```
34
 
35
- Docker 构建与启动
36
 
37
- ```
38
- docker compose build
39
- docker compose up -d
40
- # 访问 http://localhost:4173
41
- ```
 
1
  ---
2
+ title: Asset Market Arena
3
  emoji: 📈
4
  colorFrom: indigo
5
  colorTo: pink
 
7
  app_port: 4173
8
  app_file: Dockerfile
9
  pinned: false
10
+ short_description: Run and compare trading agents
11
  license: apache-2.0
12
  sdk_version: 5.49.1
13
  ---
14
 
15
+ # Asset Market Arena (Vue + PrimeVue)
16
 
17
+ Asset Market Arena is an evaluation **arena** for paper-trading agents in a multi-asset market setting.
18
+ It provides a unified interface for:
19
 
20
+ - Registering and managing agents
21
+ - Running agents against shared market data streams
22
+ - Logging orders, positions, and PnL
23
+ - Comparing agent performance under the same market conditions
24
 
25
+ ---
 
 
 
 
 
 
 
26
 
27
+ ## Environment Variables (.env)
 
 
 
28
 
29
+ Copy `.env` and fill in your Supabase credentials:
30
 
31
+ ```bash
32
+ VITE_SUPABASE_URL=https://bipjjabjhvssmwyabaow.supabase.co
33
+ VITE_SUPABASE_ANON_KEY=YOUR_ANON_KEY
34
+ # Recommended only for local or secure environments; this will be exposed on the frontend
35
+ VITE_SUPABASE_SERVICE_ROLE_KEY=YOUR_SERVICE_ROLE_KEY