|
|
@ -1,4 +1,5 @@ |
|
|
|
import pandas as pd # type: ignore |
|
|
|
import logging |
|
|
|
|
|
|
|
from auto_trading.broker.backtest import Backtest |
|
|
|
from auto_trading.strat.hold import Hold |
|
|
@ -7,6 +8,7 @@ from auto_trading.bot import Bot |
|
|
|
|
|
|
|
|
|
|
|
pd.options.plotting.backend = "plotly" |
|
|
|
logging.basicConfig(level=logging.DEBUG) |
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__": |
|
|
|