mplfinance
mplfinance copied to clipboard
multiple line(style,color,width) in make_addplot()
"https://github.com/matplotlib/mplfinance/blob/master/examples/addplot.ipynb" mentions about adding multiple columns to make_addplot() via a dataframe. Ex: adding multiple lines for the (bbands,ADX,macd)
But the make_addplot() does not accept list of values for the linecolor,style,width etc. Interestingly, the label keyword accepts list of lables
Since the function does accept multiple datasets, is it possible to color/style the lines in the same function call? Ex: mpl.make_addplot( plot_df[["A","B" ,"C"]], linestyle=["dashdot","dashed","dotted"], width=[0.5,1,1.5], panel=1, color=["blue","green","black"], label=["A","_" ,"C"], )