-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitignore
More file actions
50 lines (41 loc) · 919 Bytes
/
.gitignore
File metadata and controls
50 lines (41 loc) · 919 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Data
# 数据目录 — 默认大文件忽略,small backtest data 允许
data/stock_data/ # 5000 只股票 OHLCV,太大
data/fundamentals/ # 季度基本面 panel
data/cubes.db # 雪球 55k 数据
data/strategy_data.db # 中间结果
data/backtest_results.txt
# data/market_cache/ 不 ignore — 4 个 ETF cache (<200KB) 可 commit
*.db
*.csv
*.json
*.xlsx
*.log
logs/
research/factors_v2/cache/
# Config
config.py
.env
# Python
__pycache__/
*.py[cod]
*$py.class
.venv/
env/
venv/
# IDE
.vscode/
.idea/
.trae/
*.swp
# OS
.DS_Store
Thumbs.db
# Archive
archive/**/*.zip
# 4 ETF cache + 拼接历史(<500 KB 总)— 让 clone 后能直接跑 30/30/40
!data/market_cache/etf_*.csv
!data/market_cache/hs300_daily_cache.csv
!research/factors_v2/output/long_history*.csv
# 逐年表现 CSV — 让 README 表格可复现
!research/factors_v2/output/yearly_breakdown_30_30_40.csv