Daniel Goldfarb
Daniel Goldfarb
It seems to me that `mpf.plot()` and `mpf.make_addplot()` will need to accept `picker=` as a kwarg, and then pass that picker on to the calls that they make to create...
Sandro, I understand that tags will make it easier to examine the code for a particular version, and it is definitely on my list of things to do, however it...
Thanks. It will probably be a week or two before i have time to look into this, but i am definitely interested. Thank you for getting involved.
I expect next week to begin work on the enhancement to allow you to pass in your own Figure and Axes, which should make implementation of event handling much easier....
Regarding ***direct*** support for event handling through mplfinance, I do not expect to code for this anytime in the next several months; it's hard to say if and when it...
@lyl1836 `mpf.plot()` will ***not*** return Figure and Axes list ***unless*** you set kwarg **`returnfig=True`**: ```python fig, axlist = mpf.plot(df,returnfig=True) ``` See also https://github.com/matplotlib/mplfinance/wiki/Acessing-mplfinance-Figure-and-Axes-objects
Presently there is nothing built into mplfinance to support mouse events. For the time being, you will have to: 1. [**gain access to the mplfinance Figure and Axes objects**](https://github.com/matplotlib/mplfinance/wiki/Acessing-mplfinance-Figure-and-Axes-objects) and...
Jessica, Good point! I think we should add a `zorder` kwarg to both `mpf.plot()` (for the candles, etc.) and `mpf.make_addplot()`. Candles may be tricky because they are made up of...
I did a little playing around with the code. Even the candlesticks will be easy to set the `zorder`.
@Omri93h Omri, I am hoping to have time to implement a `zorder` kwarg for `plot()` and for `make_addplot()` sometime in the next 6 to 8 weeks. If you would like...