justinpolygon
justinpolygon
## What is this Python project? Provides easy access to a wide range of market data using [Polygon's Stock API](https://polygon.io/docs/stocks/getting-started) with the [Python client](https://github.com/polygon-io/client-python). Polygon is a financial data platform...
Fixes https://github.com/polygon-io/client-js/issues/186. Add quotes around package for windows machines where `@` is a special character.
Fixes https://github.com/polygon-io/client-python/issues/656. No code changes needed. Technical indicators for crypto had the crypto misspelled and this spec change corrects that.
Fixes https://github.com/polygon-io/client-go/issues/390. When using `models.WithTrace(true)` there was an issue where tracing data was not captured for failed API requests. Now, tracing consistently logs request and response details, including status codes,...
Reverts polygon-io/client-python#632. On windows a couple users are reporting ssl error via https://github.com/polygon-io/client-python/issues/638. I want to revert this optimization to rule out the issue.
Fixes https://github.com/polygon-io/client-python/issues/732. Added unique Dividend and Split IDs.
Update client with Short Interest and IPOs support. This PR adds `list_short_interest` and `list_ipos` functions and working examples. Short Interest ```python from polygon import RESTClient client = RESTClient() # POLYGON_API_KEY...
Added futures REST and WebSocket support (alpha). Includes new REST endpoints for futures data (e.g., aggregates, contracts, market statuses, etc) and WebSocket event parsing (e.g. trades, quotes, and aggregates). REST...
Added futures REST and WebSocket support (alpha). Includes new REST endpoints for futures data (e.g., aggregates, contracts, market statuses, etc) and WebSocket event parsing (e.g. trades, quotes, and aggregates). REST...
Update client with Short Interest and IPOs support. This PR adds GetShortInterest and ListIPOs functions, params, responses, tests, and a working examples. Short Interest ```go // Stocks - Short Interest...