mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 18:23:55 +00:00
14 lines
285 B
Python
14 lines
285 B
Python
import logging
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
try:
|
|
from plotly import tools
|
|
from plotly.offline import plot
|
|
import plotly.graph_objs as go
|
|
except ImportError:
|
|
logger.exception("Module plotly not found \n Please install using `pip install plotly`")
|
|
exit()
|