mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-07-27 23:47:46 +00:00
e0a5e6d86c
Moved from root to results/: - 45+ fin_quant_run*.log files (30+ GB total) → results/logs/ - selector.log → results/logs/ - .coverage → results/ - data_raw/ → results/ - .env.backup, .env.local → results/ - log/ → results/ - pickle_cache/ → results/ - predix.egg-info/ → results/ - prompt_cache.db → results/ - intraday_pv_*.h5 → git_ignore_folder/ Updated .gitignore: - *.log, fin_quant*.log - .coverage, htmlcov/ - ..bfg-report/ - .env.backup, .env.local - data_raw/ - *.h5, intraday_pv*.h5 - pickle_cache/, predix.egg-info/, __pycache__/ - log/, prompt_cache.db, strategies_new/ Root directory: 53 files → 44 files (clean)
156 lines
1.9 KiB
Plaintext
156 lines
1.9 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
|
|
|
|
# Generated strategy JSON files (root directory only)
|
|
*.json
|
|
!package.json
|
|
!package-lock.json
|
|
!pyproject.json
|
|
..bfg-report/
|
|
|
|
# Log files (should be in results/logs/)
|
|
*.log
|
|
fin_quant*.log
|
|
selector.log
|
|
|
|
# Coverage files
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
|
|
# BFG report
|
|
..bfg-report/
|
|
|
|
# Env backups
|
|
.env.backup
|
|
.env.local
|
|
|
|
# Raw data
|
|
data_raw/
|
|
|
|
# HDF5 data files
|
|
*.h5
|
|
intraday_pv*.h5
|
|
|
|
# Cache and build artifacts
|
|
pickle_cache/
|
|
predix.egg-info/
|
|
__pycache__/
|
|
*.pyc
|
|
|
|
# Log folder
|
|
log/
|