Code:
import cufflinks as cf
cf.set_config_file(offline=True)
qf=cf.QuantFig(table,title='BNBBTC',legend='top',name='GS', color='green')
qf.add_ema(periods=60, name='EMA', color='yellow')
qf.add_volume(title='Volume', name='Volume',up_color='green', down_color='red')
qf.iplot()
The "Volume" graph shows an incorrect range of values on the "Y" scale. They are increasing. In reality, this is not the case.
It didn't help: qf.add_volume(title='Volume', name='Volume',up_color='green', down_color='red', layout_yaxis_range=[0,2000000]).