Skip to content

Commit 7010d68

Browse files
committed
DOC: Add TODO marker about multiprocessing on Windos
1 parent 152d894 commit 7010d68

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

backtesting/backtesting.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -749,7 +749,7 @@ def optimize(self,
749749
series, an additional `pd.Series` is returned with a multiindex
750750
of all admissible parameter combinations, which can be further
751751
inspected or projected onto 2D to plot a heatmap
752-
(see `backtesting.backtesting.lib.plot_heatmaps()`).
752+
(see `backtesting.lib.plot_heatmaps()`).
753753
754754
Additional keyword arguments represent strategy arguments with
755755
list-like collections of possible values. For example, the following
@@ -762,6 +762,9 @@ def optimize(self,
762762
.. TODO::
763763
Add parameter `max_tries: Union[int, float] = None` which switches
764764
from exhaustive grid search to random search. See notes in the source.
765+
766+
.. TODO::
767+
Improve multiprocessing/parallel execution on Windos with start method 'spawn'.
765768
"""
766769
if not kwargs:
767770
raise ValueError('Need some strategy parameters to optimize')

0 commit comments

Comments
 (0)