mplfinance
mplfinance copied to clipboard
Financial Markets Data Visualization using Matplotlib
Ask anything you want about mplfinance usage, project philosophy and/or priorities, or anything else related to mplfinance. hello, I am new to data processing with pandas and python programming generally,...
how can i change the ylim to have a step size of 2? 
Is it possible to represent two candlestick charts of different time-frame using mplfinance ? I see an example using bokeh from [this](https://kernc.github.io/backtesting.py/#example) repository.  The idea would be: - Choose...
Hello, Daniel, thanks for the amazing product. I want to make OHLC charts like IBD style, here how it looks:  I could...
Hello. when im adding a mark(I've used 'v') with mpf.make_addplot , my subplot is at a better visual priority from the candles, but not the wicks.  is that a...
 As the picture shows, How can i change the Xtick to show the date by day.
How to add Horizontal Line in make_addplot? make_addplot(rsi,panel='lower',color='g',hlines=[20,80])
I have this code. ```python apds = [mpf.make_addplot(buy_signal,scatter=True,markersize=100,marker='^'), mpf.make_addplot(sell_signal,scatter=True,markersize=100,marker='v'), mpf.make_addplot(close_signal,scatter=True,markersize=100,marker='o'), mpf.make_addplot(rsi,panel='lower',color='g',hlines=[20,80]) mpf.plot(self.df,addplot=apds,figscale=2,volume=False,type = type, title= str(self.info) ) ``` I want to put a horizontal line for my RSI. But there...
MultiCursor
Daniel, thank you for excellent project. My question is this: There is a feature in matplotlib which provides a vertical (default) and/or horizontal line cursor shared between multiple axes. Is...
I want to convert the Fractal Indicator I created into support resistance lines on MPL     Above are the lines of code used to create the plot...
 Please kindly have a look at the red block in attachment Is it possible to get the datetime value(x-axis) in customized event handling, like mouse movement?