Olivier Ricou

Results 9 comments of Olivier Ricou

Same issue here: ``` % /opt/TiddlyDesktop-linux64-v0.0.15-prerelease.2/nw Opening in existing browser session. ``` and nothing appears. I have a Linux Mint 20 (based on Ubuntu 20.04)

Here is a trick to have Markdown docstring with commonmark. I guess it could be done with myst_parser. https://stackoverflow.com/questions/56062402/force-sphinx-to-interpret-markdown-in-python-docstrings-instead-of-restructuredt Sphinx's Autodoc extension emits an event named autodoc-process-docstring every time it...

@John-Hennig Great, could you share your code with MyST? TIA.

> It seems `pipx install package --pip-args -r requirements.txt` with a requirements file listing additional packages works. But it's rather non intuitive. Or am i missing something? Almost as simple...

That's what I was looking for (I hope). So I can use all matplotlib features (log scale, title, figsize...). Make returnfig=True by default please (it will not make a difference...

I couldn't make it work... ``` mpf.plot(df, type='candle', style='yahoo') fig = plt.gcf() fig.figsize = (10,3) fig.title = "My title" plt.show() ```

`figratio` works however I am quite afraid to see to so many arguments to `mpf.plot`. It makes more work to the developer and confuse users (for example I didn't expected...

@jhmenke I couldn't make suptitle work.

Yes, still doesn't work but that's not important if it will work with the `returnfig` option, ``` mpf.plot(df, block=False) plt.title = "My title" plt.show() ``` I use Jupyter which might...