Daniel Goldfarb
Daniel Goldfarb
Btw, just realized that `loc2 - loc1` is always ` 1.0 ` so these three lines: ```python slope = (loc2 - loc1) / (mpd2 - mpd1) yitrcpt = loc1 -...
You will want to use the **`hlines`** kwarg, explained here: https://github.com/matplotlib/mplfinance/blob/master/examples/using_lines.ipynb However you will have to calculate the values yourself and pass them into `mpf.plot()` using the `hlines` kwarg. Hope...
Not yet. But we could easily add a kwarg to do that. Do you want to write the code for it?
Certain I can guide you. Will have to wait till next week though.
This should be relatively easy to code, but [**according to this answer**](https://stackoverflow.com/a/22418354/1639359) the code may have to check which backend the user is running. I tested with backend Qt5Agg and...
DId some playing around in `plotting.py` but could not quite get this to work in all cases: ```python 783 elif not config['returnfig']: 784 if config['fullscreen']: 785 figmgr = plt.get_current_fig_manager() 786...
`mpf.plot()` has a `ylabel` kwarg to set the label on the y-axis, but it does not have an `xlabel` kwarg to set the xlabel. If you would like to contribute...
Sorry for the delay in replying. Had a lot of other distractions at the time you posted this. In what OS environment are you running? Also, are you running in...
Live data visualization requires what matplotlib calls [**animation**](https://github.com/matplotlib/mplfinance/blob/master/markdown/animation.md). Animation in mplfinance requires [**access to the mplfinance Figure and Axes objects**](https://github.com/matplotlib/mplfinance/wiki/Acessing-mplfinance-Figure-and-Axes-objects). Take a look at the above two links, and the...
@waemm Warren, Thanks for expressing your appreciation, and thank you also for contributing your question. I looked through the code and it appears that the `alines` kwarg (and other `..lines`...