add plot module proto
This commit is contained in:
parent
2369161bb0
commit
583d70ec9c
0
freqtrade/plot/__init__.py
Normal file
0
freqtrade/plot/__init__.py
Normal file
13
freqtrade/plot/plotting.py
Normal file
13
freqtrade/plot/plotting.py
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
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()
|
Loading…
Reference in New Issue
Block a user