mirror of
https://github.com/kernc/backtesting.py.git
synced 2024-01-28 15:29:30 +03:00
* initial commit * initial commit * added optimize_skopt to backtesting * _optomize_skopt refactor * made dimensions dynamic * added unit test-apply PR comments * added heatmap to skopt and update unit tests * removed eggs folder * remove egg folder * fixed gitignore * add scikit-optimize dependancy for test * comment out pickle TRUE * fixed flake8 errors * added skopt to Parameter Heatmap notebook * Revert unwanted changes * Fixup .gitignore * Reword docstring * Refactor Backtest.optimize() code * make Backtest.optimize() arguments kw-only * add random_state for reproducible results * ensure function arguments consistency * ensure all kwargs have values * make scikit-optimize package optional * cast timedelta/datetime dimensions to int * cache objective_function evaluations (avoid warning) * ensure param combo matches constraint= * adjust skopt.forest_minimize() params * return ordering: stats, heatmap, optimize_result * clean heatmap and optimize_result * Make max_tries for method=grid be randomized search * Update example notebook * doc/build.sh: unescape URLs * mypy happy * minor restyle * fix typo * Add changelog entry Co-authored-by: Tony Freeman <tfreeman@approachci.com> Co-authored-by: Kernc <kerncece@gmail.com>
24 lines
175 B
Plaintext
24 lines
175 B
Plaintext
*.py[cod]
|
|
*.html
|
|
*.png
|
|
_version.py
|
|
|
|
*.egg-info
|
|
.eggs/*
|
|
__pycache__/*
|
|
dist/*
|
|
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/*
|
|
|
|
doc/build/*
|
|
|
|
.idea/*
|
|
.vscode/
|
|
|
|
**/.ipynb_checkpoints
|
|
*~*
|
|
|
|
.venv/
|