├── .github └── workflows │ └── go.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── account.go ├── altdata.go ├── client.go ├── client_integration_test.go ├── client_test.go ├── commodities.go ├── datapoints.go ├── forex.go ├── getjson.go ├── go.mod ├── go.sum ├── helpers.go ├── helpers_test.go ├── historical.go ├── iexdata.go ├── implementation.md ├── isinmapping.go ├── news.go ├── premiumdata.go ├── refdata.go ├── status.go ├── stock.go └── timeseries.go /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinvest/iexcloud/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinvest/iexcloud/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinvest/iexcloud/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinvest/iexcloud/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinvest/iexcloud/HEAD/README.md -------------------------------------------------------------------------------- /account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinvest/iexcloud/HEAD/account.go -------------------------------------------------------------------------------- /altdata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinvest/iexcloud/HEAD/altdata.go -------------------------------------------------------------------------------- /client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinvest/iexcloud/HEAD/client.go -------------------------------------------------------------------------------- /client_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinvest/iexcloud/HEAD/client_integration_test.go -------------------------------------------------------------------------------- /client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinvest/iexcloud/HEAD/client_test.go -------------------------------------------------------------------------------- /commodities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinvest/iexcloud/HEAD/commodities.go -------------------------------------------------------------------------------- /datapoints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinvest/iexcloud/HEAD/datapoints.go -------------------------------------------------------------------------------- /forex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinvest/iexcloud/HEAD/forex.go -------------------------------------------------------------------------------- /getjson.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinvest/iexcloud/HEAD/getjson.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinvest/iexcloud/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinvest/iexcloud/HEAD/go.sum -------------------------------------------------------------------------------- /helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinvest/iexcloud/HEAD/helpers.go -------------------------------------------------------------------------------- /helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinvest/iexcloud/HEAD/helpers_test.go -------------------------------------------------------------------------------- /historical.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinvest/iexcloud/HEAD/historical.go -------------------------------------------------------------------------------- /iexdata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinvest/iexcloud/HEAD/iexdata.go -------------------------------------------------------------------------------- /implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinvest/iexcloud/HEAD/implementation.md -------------------------------------------------------------------------------- /isinmapping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinvest/iexcloud/HEAD/isinmapping.go -------------------------------------------------------------------------------- /news.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinvest/iexcloud/HEAD/news.go -------------------------------------------------------------------------------- /premiumdata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinvest/iexcloud/HEAD/premiumdata.go -------------------------------------------------------------------------------- /refdata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinvest/iexcloud/HEAD/refdata.go -------------------------------------------------------------------------------- /status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinvest/iexcloud/HEAD/status.go -------------------------------------------------------------------------------- /stock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinvest/iexcloud/HEAD/stock.go -------------------------------------------------------------------------------- /timeseries.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinvest/iexcloud/HEAD/timeseries.go --------------------------------------------------------------------------------