b5bf689e72
- Add yfinance.org and defeatbeta-api.org reference docs - Fix defeatbeta_mapping.org: deprecated yfinance property names (quarterly_financials→quarterly_income_stmt, financials→income_stmt), longName vs longBusinessSummary conceptual mismatch, cashflow note typo - Add Mapping Limitations section with live verification results (AAPL): DuckDB 1.4.3 incompatibility, format differences, coverage gaps - Add docs/test_mapping.py as runnable mapping verification script - Add offline.py, persistent_cache.py, download_data.py, warmup_cache.py for offline/cached defeatbeta usage - Add aapl_yfinance.py exploration script and quant.py scaffold - Add .envrc (uv layout) and update pyproject.toml + uv.lock Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
53 lines
1.2 KiB
TOML
53 lines
1.2 KiB
TOML
[project]
|
|
name = "learn-trading"
|
|
version = "0.0.1"
|
|
description = "Combined trading research environment"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"marimo>=0.23.2",
|
|
"arch>=8.0.0",
|
|
"backtesting>=0.6.5",
|
|
"backtrader>=1.9.78.123",
|
|
"ccxt>=4.5.50",
|
|
"empyrical-reloaded>=0.5.12",
|
|
"finta>=1.3",
|
|
"hmmlearn>=0.3.3",
|
|
"jupyterlab>=4.5.6",
|
|
"lightgbm>=4.6.0",
|
|
"lxml>=6.1.0",
|
|
"matplotlib>=3.10.8",
|
|
"mplfinance>=0.12.10b0",
|
|
"numpy>=2.2.6,<2.3",
|
|
"pandas>=2.3.3",
|
|
"pandas-ta>=0.4.71b0",
|
|
"plotly>=6.7.0",
|
|
"polars>=1.40.1",
|
|
"pyarrow>=24.0.0",
|
|
"pyportfolioopt>=1.6.0",
|
|
"qlib>=0.0.2.dev20",
|
|
"quantstats>=0.0.81",
|
|
"riskfolio-lib>=7.2.1",
|
|
"scikit-learn>=1.7.2",
|
|
"scipy>=1.17.1",
|
|
"sktime>=0.40.1",
|
|
"statsmodels>=0.14.6",
|
|
"ta>=0.11.0",
|
|
"ta-lib>=0.6.8",
|
|
"torch>=2.0.0",
|
|
"transformers>=4.0.0",
|
|
"tscv>=0.1.3",
|
|
"vectorbt[full,rust]>=1.0.0",
|
|
"xgboost>=3.2.0",
|
|
"yfinance>=1.3.0",
|
|
"defeatbeta-api>=0.0.45",
|
|
]
|
|
|
|
[[tool.uv.index]]
|
|
name = "pytorch-cpu"
|
|
url = "https://download.pytorch.org/whl/cpu"
|
|
explicit = true
|
|
|
|
[tool.uv.sources]
|
|
torch = { index = "pytorch-cpu" }
|