removed backtesting stuff, fixed mypy errors

This commit is contained in:
Sam Germain
2021-10-22 11:41:24 -06:00
parent b54711a2ea
commit 70332ce16f
3 changed files with 7 additions and 11 deletions

View File

@@ -3,7 +3,6 @@
"""
This module contains the backtesting logic
"""
import ccxt
import logging
from collections import defaultdict
from copy import deepcopy
@@ -127,10 +126,6 @@ class Backtesting:
self.progress = BTProgress()
self.abort = False
self.funding_rate_history = getattr(ccxt, self._exchange_name).load_funding_rate_history(
self.timerange.startts,
self.timerange.stopts
)
self.init_backtest()
def __del__(self):