mplfinance
mplfinance copied to clipboard
Financial Markets Data Visualization using Matplotlib
Hi, how to set ylim for volume panel if I use code like this: `mpf.plot(df, volume=ax2)` I tried `ax2.set_ylim(0,0.5)` but it didn't work I think mpf.plot use its own setting
Because just learned MPL, MPF, finally understand what you want! I want to find out other relevant data when the user clicks a bar after MPF draws the K-line graph....
**Is your feature request related to a problem? Please describe.** I can't easily download a specific version from GitHub without searching through the commit history. **Describe the solution you'd like**...
Hey Daniel, love what you're doing with this package, it's absolutely fantastic. I'm a pretty novice coder so excuse any code that might be unpreferred but I recently had an...
Normal financial analysis data, hope to support mouse events. I read the history Q & A, and there were similar questions, but there was no final result. Excuse me, how...
Is there a way to manage the order (z axis) of the graphs added with addplot? Currently I would like to display my scatter on top of my line, but...
Hello, I've been trying to figure out how to format a line that would change colors depending on if it is higher or lower than another line throughout a time...
I would like to plot two data as below. ``` plot2 = mpf.make_addplot(data2, type='candle') mpf.plot(data, type='candle', addplot=plot2) ``` However, the problem is that data2 contains 3 candles and data contains...
Is there a way to color bars based on TA indicator values (obtained using TA-lib or similar) or based on aggregate values of multiple indicators, e.g. 3 different ohlc bar...
Regarding [this](https://github.com/matplotlib/mplfinance/issues/274) question I posted 2 days ago, I started to inspect the code and made some changes. Now I'm able to do this: `mpf.make_addplot(bars[["sma_10","sma_200"]],labels=["sma_10","sma_200"])` Is this useful to the...