Closed
Description
Expected Behavior
Stats table should appear on bt.run()
Actual Behavior
Only the .html chart is visible.
Run window only shows Process finished with exit code 0
.
Additional info
Running this on PyCharm (latest, MacOS), latest Backtesting version.
Running GOOG script from PyCharm directly (ie, not using Terminal)
Brute force solution was to modify def run()
on backtesting.py (line 724) from:
self._results = self._compute_stats(broker, strategy)
return self._results
to:
self._results = self._compute_stats(broker, strategy)
print(self._results.to_string())
return self._results