mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-08-04 10:47:43 +00:00
4c45ba33ab
Implemented realistic backtesting: - Load real OHLCV close prices from intraday_pv.h5 - Calculate real price returns (pct_change) - Apply signal positions to real returns with proper alignment - Include spread costs (1.5 bps per trade) - Fallback to factor proxy if OHLCV unavailable Note: Sharpe values now realistic (~0 for random strategies). Strategies need LLM to select predictive factors for positive Sharpe. Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
116 lines
1.4 KiB
Plaintext
116 lines
1.4 KiB
Plaintext
# Environment
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Virtual environments
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.venv/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
|
|
# Logs
|
|
*.log
|
|
log/
|
|
|
|
# Cache
|
|
pickle_cache/
|
|
prompt_cache.db
|
|
.cache/
|
|
|
|
# Generated/processed data
|
|
git_ignore_folder/
|
|
data_raw/
|
|
|
|
# Build artifacts
|
|
*.manifest
|
|
*.spec
|
|
|
|
# Local scripts (generated)
|
|
convert_1min.py
|
|
import_1min_qlib.py
|
|
|
|
# Results (Backtesting, Factors, Runs)
|
|
results/
|
|
*.db
|
|
*.csv
|
|
*_export.json
|
|
*.h5
|
|
|
|
# Documentation (generated)
|
|
QWEN.md
|
|
|
|
# AI Agent Files (generated by Qwen Code)
|
|
.qwen/
|
|
|
|
# Parallel run workspaces (isolated per run)
|
|
RD-Agent_workspace_run*/
|
|
|
|
# Internal documentation (not for public)
|
|
TODO.md
|
|
|
|
# Private prompts (your improved versions)
|
|
prompts/local/
|
|
*.local.yaml
|
|
*_private.yaml
|
|
|
|
# Private models (your improved versions)
|
|
models/local/
|
|
*.local.py
|
|
*_private.py
|
|
|
|
# Test credentials
|
|
.env.test
|
|
*.test.env
|
|
test_credentials.py
|
|
|
|
# Closed source local components
|
|
rdagent/scenarios/qlib/local/
|
|
docs/COMPLETE_WORKFLOW.md
|
|
|
|
# Local scripts (not for public)
|
|
predix_quick_daytrading.py
|
|
predix_smart_strategy_gen.py
|
|
test/backtesting/test_smart_strategy_gen.py
|
|
docs/SMART_STRATEGY_GEN.md
|
|
|
|
# OpenACP local workspace (contains secrets)
|
|
.openacp
|
|
CLAUDE.md
|