kauabarros-24 commited on
Commit ·
cebf67b
1
Parent(s): 93847ad
CHORE: Added basic structure to my project
Browse files- .gitignore +7 -0
- README.md +0 -0
- __pypackages__/.gitignore +2 -0
- notebooks/1.ipynb +0 -0
- pdm.lock +0 -0
- pyproject.toml +22 -0
- scripts/load_datas.py +0 -0
- src/__init__.py +0 -0
- src/backtest.py +0 -0
- src/data_collection.py +0 -0
- src/features.py +0 -0
- src/models.py +0 -0
- tests/test_models.py +0 -0
.gitignore
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
.py[cod]
|
| 2 |
+
__pycache__/
|
| 3 |
+
.mypy_cache/
|
| 4 |
+
.pytest_cache/
|
| 5 |
+
.ruff_cache/
|
| 6 |
+
.pdm-python
|
| 7 |
+
__pypackages__/
|
README.md
ADDED
|
File without changes
|
__pypackages__/.gitignore
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*
|
| 2 |
+
!.gitignore
|
notebooks/1.ipynb
ADDED
|
File without changes
|
pdm.lock
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
pyproject.toml
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "AllStreet"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
description = "Default template for PDM package"
|
| 5 |
+
authors = [
|
| 6 |
+
{name = "kauabarros-24", email = "user.mail:martinsbarroskaua@gmail.com"},
|
| 7 |
+
]
|
| 8 |
+
dependencies = ["fastapi>=0.135.1", "pandas>=3.0.1", "numpy>=2.4.2", "scipy>=1.17.1", "statsmodels>=0.14.6", "scikit-learn>=1.8.0", "yfinance>=1.2.0", "pandas-datareader>=0.10.0", "alpha-vantage>=3.0.0", "investpy>=1.0.8", "backtrader>=1.9.78.123", "vectorbt>=0.28.2", "influxdb-client>=1.50.0", "jupyter>=1.1.1", "jupyterlab>=4.5.5", "ipykernel>=7.2.0"]
|
| 9 |
+
requires-python = "==3.12.*"
|
| 10 |
+
readme = "README.md"
|
| 11 |
+
license = {text = "MIT"}
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
[tool.pdm]
|
| 15 |
+
distribution = false
|
| 16 |
+
|
| 17 |
+
[dependency-groups]
|
| 18 |
+
dev = [
|
| 19 |
+
"black>=26.3.0",
|
| 20 |
+
"flake8>=7.3.0",
|
| 21 |
+
"pytest>=9.0.2",
|
| 22 |
+
]
|
scripts/load_datas.py
ADDED
|
File without changes
|
src/__init__.py
ADDED
|
File without changes
|
src/backtest.py
ADDED
|
File without changes
|
src/data_collection.py
ADDED
|
File without changes
|
src/features.py
ADDED
|
File without changes
|
src/models.py
ADDED
|
File without changes
|
tests/test_models.py
ADDED
|
File without changes
|