add_plot=[mpf.make_addplot(df[['upper','middler','lower']]), mpf.make_addplot(df['signal_short'].values,type='scatter',markersize=20,marker='v',color='g'), mpf.make_addplot(df['close'].values,panel=1,color='y',secondary_y='auto')] mpf.plot(df,type='candle',volume=True,a...
I have 2 questions here that are connected: (1) I am interested in making 2 scatter plots (Group1 on left and Group2 on right), both for hundreds of Genes. Each gene with these 2 plots are to be printed in separate png files. I am already able to do so 'per...