stable/freqtrade/plot/plotting.py

14 lines
285 B
Python
Raw Normal View History

2018-06-23 12:18:30 +00:00
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()