Daniel Goldfarb

Results 331 comments of Daniel Goldfarb

[This (@AGG2017 's answer above)](https://github.com/matplotlib/mplfinance/issues/162#issuecomment-950340054) is correct. --- what you suggest: ```python volprofile = df['Volume'].groupby(df['Close']).sum() ``` would _group together_ volumes _only for close prices that are exactly the same close...

@AGG2017 I will try to make some time this week to take a look at the anomaly you have describe. (I'm guessing *maybe* it has something to do with how...

@grdnryn There are two things you can try, depending on what you mean by: > ... move the position of the hbars on the x-axis? Ideally I would like it...

Hi @debjyotiarr Nice job on those plots. I have considered, in addition to kwarg `panel`, adding a kwarg for `panel_column` to be able to create multiple side-by-side plots, but presently...

And ... using your images as files on disk: ```python img1 = m_img.imread('axisbank.png') img2 = m_img.imread('hdfcbank.png') fig = plt.figure(figsize=(14,7)) ax1 = fig.add_subplot(121) ax2 = fig.add_subplot(122) ax1.set_axis_off() ax2.set_axis_off() ax1.imshow(img1) ax2.imshow(img2) plt.show()...

@LrdKgb The original plan was to allow for multiple formats of input data, however: - the vast majority of users are quite satisfied with using a DataFrame - many market...

Regarding your code for acquiring data: open= api_response['open'] high = api_response['max_price'] low = api_response['min_price'] close= api_response['close'] volume = api_response['volume'] xdate = time.strftime("%X", time.gmtime()) - Is each `api_response` returning a single...

@LrdKgb Do you still have an interest in using mplfinace to plot live data coming from an api? Since we last communicated, I've gained a lot more experience with this...

@manuelwithbmw Great. Let me know if you have any questions. Regarding my comments above from a long time ago, that is: > for static data, it is trivial for the...

@manuelwithbmw > Do you intend to work this feature strictly around data coming from an api or also with a repository of live data (yfinance)? Manuel, it's not completely clear...