iexcloud
iexcloud copied to clipboard
Go library for accessing the IEX Cloud Legacy API
They appear to both be used the same way, as a string field that tells us the minute of the data point in the time zone of the exchange. I...
Endpoints made using a string containing a query parameter (e.g., `"/stock/aapl/income/4?period=annual"`) are not working. The question mark is getting replaced with `%3F` prior to the endpoint being called.
When the response code from the IEX Cloud API is something other than 200 OK, I think the error code needs to be improved. Need to think about this more.
Per the [2020 Data Upgrade](https://intercom.help/iexcloud/en/articles/4529082-iex-cloud-s-2020-data-upgrade) article `iexID` is being deprecated in favor of FIGI and CIK. Should just be able to add those fields. > The "iexID" field will be...
I am looking specifically for the Volume field, but it seems like there are some others as well. Is there a codegen process that you use to update these types...
It doesn't look like the JSON package is respecting the Date type's MarshalJSON implementation for one reason or another. I am seeing this when trying to pass the PreviousDay quote...
`HistoricalDataPoint` volumes can be non-integer... See https://sandbox.iexapis.com/stable/stock/aht/batch?types=chart&range=5y&token=Tsk_0d9460b788a04e189e5141a5f1b2c124 (or the prod equivalent). See https://github.com/goinvest/iexcloud/blob/master/historical.go#L53, should be `float64`.
Several structs default to `int` which is either int32 or int64 depending on the architecture. Would be safer to define this as int64 for fields that easily would overflow 4...