.gitignore 885 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. # Python
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. *.so
  6. .Python
  7. build/
  8. develop-eggs/
  9. dist/
  10. downloads/
  11. eggs/
  12. .eggs/
  13. lib/
  14. lib64/
  15. parts/
  16. sdist/
  17. var/
  18. wheels/
  19. *.egg-info/
  20. .installed.cfg
  21. *.egg
  22. # IDE
  23. .kimi/
  24. .vscode/
  25. .idea/
  26. *.swp
  27. *.swo
  28. # Data files
  29. *.csv
  30. *.png
  31. *.pdf
  32. *.tar.gz
  33. *.ris
  34. # Logs
  35. *.log
  36. # Local config
  37. .openclaw/
  38. # Embedded project runtime artifacts
  39. index-rotation/.venv/
  40. index-rotation/.codex/
  41. index-rotation/.codex-orchestrator/
  42. # Local agent / runtime artifacts
  43. backtrader-lab/.bt-runs/
  44. # Generated experiment outputs
  45. index-rotation/outputs/backtests/
  46. cat-fly/t1/backtest_results/
  47. cat-fly/t1/final_backtest/
  48. cat-fly/t1/no_lookahead_backtest/
  49. cat-fly/t1/optimization_results/
  50. # Generated reports / exports
  51. backtrader-lab/*.html
  52. backtrader-lab/*.json
  53. backtrader-lab/email_strategy_*.txt
  54. trend-quality-evaluator/*.html
  55. # Windows reserved device name
  56. NUL
  57. nul
  58. research/NUL
  59. research/nul