Thanks for your work! I want to know how to customize the scheme, like changing the color of candle?
plot = btplotting.BacktraderPlotting(
output_mode='save',
filename=os.path.join(output_dir, plot_name),
plotconfig={
'r:.*': {
'plotstyle': 'candle',
'colordown': 'green',
'colorup': 'red'
}}
)
Thanks for your work! I want to know how to customize the scheme, like changing the color of candle? plot = btplotting.BacktraderPlotting( output_mode='save', filename=os.path.join(output_dir, plot_name), plotconfig={ 'r:.*': { 'plotstyle': 'candle', 'colordown': 'green',
'colorup': 'red' }} )