Python 3.x 类型为'的值无效;builtins.bool';已收到';fillcolor';分散性

Python 3.x 类型为'的值无效;builtins.bool';已收到';fillcolor';分散性,python-3.x,plotly,quantmod,Python 3.x,Plotly,Quantmod,我正在尝试使用quantmod和python 3.6中的plotly创建股票价值的财务图表。我基本上复制了示例代码thehttps://github.com/jackluo/py-quantmod/blob/master/start_here.ipynb . 这是抛出一个错误。 这是我的密码: import pandas as pd pd.core.common.is_list_like = pd.api.types.is_list_like import plotly.graph_objs a

我正在尝试使用quantmod和python 3.6中的plotly创建股票价值的财务图表。我基本上复制了示例代码thehttps://github.com/jackluo/py-quantmod/blob/master/start_here.ipynb . 这是抛出一个错误。 这是我的密码:

import pandas as pd
pd.core.common.is_list_like = pd.api.types.is_list_like
import plotly.graph_objs as go
from plotly.offline import download_plotlyjs, init_notebook_mode, plot, iplot
init_notebook_mode(connected=True)
from plotly import tools
from datetime import datetime
from dateutil import parser
import quantmod as qm
import talib as ta

df = pd.read_csv('es-sample.csv', index_col=0)
df.columns = [c.strip() for c in df.columns]

ch = qm.Chart(df)

ch.add_RSI(14)
ch.plot()
下面是显示的错误:

ValueError: 
    Invalid value of type 'builtins.bool' received for the 'fillcolor' property of scatter
        Received value: False

    The 'fillcolor' property is a color and may be specified as:
      - A hex string (e.g. '#ff0000')
      - An rgb/rgba string (e.g. 'rgb(255,0,0)')
      - An hsl/hsla string (e.g. 'hsl(0,100%,50%)')
      - An hsv/hsva string (e.g. 'hsv(0,100%,100%)')
      - A named CSS color:
            aliceblue, antiquewhite, aqua, aquamarine, azure,
            beige, bisque, black, blanchedalmond, blue,
            blueviolet, brown, burlywood, cadetblue,
我不知道该怎么补救