We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b3547e commit 5aa08c4Copy full SHA for 5aa08c4
backtesting/test/_test.py
@@ -649,8 +649,6 @@ def test_file_size(self):
649
def test_params(self):
650
bt = Backtest(GOOG.iloc[:100], SmaCross)
651
bt.run()
652
- fbt = FractionalBacktest(GOOG.iloc[:100], SmaCross, fractional_unit=1/1e6)
653
- fbt.run()
654
with _tempfile() as f:
655
for p in dict(plot_volume=False, # noqa: C408
656
plot_equity=False,
@@ -666,7 +664,6 @@ def test_params(self):
666
664
show_legend=False).items():
667
665
with self.subTest(param=p[0]):
668
bt.plot(**dict([p]), filename=f, open_browser=False)
669
- fbt.plot(**dict([p]), filename=f, open_browser=False)
670
671
def test_hide_legend(self):
672
0 commit comments