diegobeyl/backtesting
2
1# Python
2__pycache__/
3*.py[cod]
4*$py.class
5*.so
6.Python
7build/
8develop-eggs/
9dist/
10downloads/
11eggs/
12.eggs/
13lib/
14lib64/
15parts/
16sdist/
17var/
18wheels/
19share/python-wheels/
20*.egg-info/
21.installed.cfg
22*.egg
23MANIFEST
24pip-log.txt
25pip-delete-this-directory.txt
26
27# Virtual Environment
28venv/
29env/
30ENV/
31env.bak/
32venv.bak/
33.venv
34
35# IDEs
36.vscode/
37.idea/
38*.swp
39*.swo
40*~
41.DS_Store
42
43# Jupyter Notebook
44.ipynb_checkpoints
45*.ipynb
46
47# Environment Variables
48.env
49.env.local
50.env.*.local
51
52# Logs
53logs/
54*.log
55
56# Cache
57cache/
58.cache/
59*.cache
60
61# Testing
62.pytest_cache/
63.coverage
64htmlcov/
65.tox/
66.nox/
67
68# Database
69*.db
70*.sqlite
71*.sqlite3
72
73# Backtest Results (optional - uncomment if you want to ignore)
74# results/
75# *.pkl
76# *.pickle
77
78# OS specific
79Thumbs.db
80.DS_Store
81
82# Temporary files
83*.tmp
84*.temp
85tmp/
86temp/
87
88# Documentation builds
89docs/_build/
90site/
91
92# mypy
93.mypy_cache/
94.dmypy.json
95dmypy.json
96
97# pytype
98.pytype/
99
100# Cython debug symbols
101cython_debug/
102
103# Archives
104*.zip
105*.tar
106*.tar.gz
107*.rar
108*.7z
109
110# Large files
111*.pdf
112*.jpg
113*.jpeg
114*.png
115*.gif
116*.mp4
117*.avi
118*.mov
119 