Marcus Read
Marcus Read
Wouldn't splitting inline comments upset linters? For example, with mypy: ```python # This works... import exchange_calendars as some_really_overly_long_name_just_to_offer_example # type: ignore[import] # This doesn't... import exchange_calendars as some_really_overly_long_name_just_to_offer_example # type:...
Hi @pavelstovicek, not sure how this might be done within `pandas_market_calendars`, although you could use the `session_offset` method of the [exchange_calendars](https://github.com/gerrymanoim/exchange_calendars) calendar... ```python > import exchange_calendars as xcals > xnys...
Hi guys, I've been working on `exchange_calendars` for the last few months and thought you might find something useful in my twopence worth on all this... First off, I wonder...
If you were looking at using github actions, we've got a nice [release workflow](https://github.com/gerrymanoim/exchange_calendars/blob/master/.github/workflows/release.yml) set up for [exchange_calendars](https://github.com/gerrymanoim/exchange_calendars) - just tag the release and the workflow handles the rest. [Another...
Hi @Stryder-Git, The [release workflow](https://github.com/gerrymanoim/exchange_calendars/blob/master/.github/workflows/release.yml) for `exchange_calendars` uploads the package to the test repo and then the following lines check that this uploaded version can be installed and imported. ```...
> I wonder if any related issues associated with [exchange_calendars](https://github.com/gerrymanoim/exchange_calendars) or [market_prices](https://github.com/maread99/market_prices) have occurred because of a delay between the upload of files for a specific version and the availability...
@Stryder-Git, thanks for sharing those findings! I'll certainly be making changes in light of the points you've raised - I can see how either or both could be responsible for...
For info, [market_prices](https://github.com/maread99/market_prices) gets prices via `yahooquery` and does correct ohlc.
This package is no longer maintained. The [exchange_calendars](https://github.com/gerrymanoim/exchange_calendars) fork is maintained and has the open as 9.30.
PR #156 includes changes to the release workflow to at least provide more info as to where within the while loop this might be failing. See what happens with the...