Remove Memory profiler in Backtesting

This commit is contained in:
Gerald Lonlas 2018-03-02 22:53:36 +08:00
parent 6148f98980
commit d274f13480

View File

@ -19,7 +19,6 @@ from freqtrade.logger import Logger
from freqtrade.misc import file_dump_json from freqtrade.misc import file_dump_json
from freqtrade.persistence import Trade from freqtrade.persistence import Trade
from memory_profiler import profile
class Backtesting(object): class Backtesting(object):
""" """
@ -221,7 +220,6 @@ class Backtesting(object):
labels = ['currency', 'profit_percent', 'profit_BTC', 'duration'] labels = ['currency', 'profit_percent', 'profit_BTC', 'duration']
return DataFrame.from_records(trades, columns=labels) return DataFrame.from_records(trades, columns=labels)
@profile(precision=10)
def start(self) -> None: def start(self) -> None:
""" """
Run a backtesting end-to-end Run a backtesting end-to-end