Marcus Read
Marcus Read
After changing the release workflow to explicitly define the shell as bash (as also implemented to `exchange-calendars`): - 0.11.2 released fine, although never entered the loop so unable to tell...
@MihailSalnikov this package isn't being maintained (see the [README](https://github.com/quantopian/trading_calendars)) although a fork [exchange_calendars](https://github.com/gerrymanoim/exchange_calendars) is being maintained and this issue was resolved in the latest release (3.2).
This would be fixed by PR #262
Hi @quikksilver1, I'm struggling to understand this issue. With respect to `Ticker.history`, could you offer a minimal example, from imports through to the return. Ideally enclose the code part in...
dude, that's not [minimal](https://stackoverflow.com/help/minimal-reproducible-example) Could you cut your example down to a bare minimum of code under which the issue reproduces.
Hi @ericwbzhang, thanks for raising this. The bug's here, in how the dataframes for each symbol are concatenated: https://github.com/dpguthrie/yahooquery/blob/cb5b2bd5a7e351ba29414aca3259815e8b4ead6c/yahooquery/ticker.py#L1324-L1325 Rather than retain the timezone info of the labels being concatenated,...
Right, this is annoying, I'm not able to create the required `pd.MultiIndex`. Tried various ways to no avail. It might be bug in pandas (I've raised it with them [here](https://github.com/pandas-dev/pandas/issues/54194))...
Hi @ericwbzhang. IMHO, and the idea I get from having followed the package's evolution, yahooquery is about providing an API to get data from Yahoo Finance and it should not...
Just to clarify, are we suggesting having the dataframe with index as the default integer index (first row 0) and adding a 'symbol' and a 'date' column, i.e. as currently...
> Then why combine the tables at all? Just return a dict of individual tables. I think this is a good point. At [market-prices](https://github.com/maread99/market_prices) I just end up splitting the...