├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── candle.go ├── candle_params.go ├── candle_resolution.go ├── candle_resolution_test.go ├── candle_test.go ├── ceo.go ├── client ├── api.go ├── api_test.go ├── client.go └── client_test.go ├── company.go ├── company_test.go ├── crypto ├── client.go └── client_test.go ├── date.go ├── earning.go ├── earning_test.go ├── exchange.go ├── finnhub.go ├── forex ├── client.go └── client_test.go ├── go.mod ├── go.sum ├── grading.go ├── grading_action.go ├── grading_params.go ├── grading_test.go ├── news.go ├── news ├── client.go └── client_test.go ├── news_category.go ├── news_params.go ├── news_sentiment.go ├── news_test.go ├── option.go ├── option_chain.go ├── option_chain_data.go ├── option_chain_data_test.go ├── option_test.go ├── price_target.go ├── price_target_test.go ├── quote.go ├── recommendation.go ├── recommendation_test.go ├── stock ├── client.go └── client_test.go └── symbol.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/README.md -------------------------------------------------------------------------------- /candle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/candle.go -------------------------------------------------------------------------------- /candle_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/candle_params.go -------------------------------------------------------------------------------- /candle_resolution.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/candle_resolution.go -------------------------------------------------------------------------------- /candle_resolution_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/candle_resolution_test.go -------------------------------------------------------------------------------- /candle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/candle_test.go -------------------------------------------------------------------------------- /ceo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/ceo.go -------------------------------------------------------------------------------- /client/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/client/api.go -------------------------------------------------------------------------------- /client/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/client/api_test.go -------------------------------------------------------------------------------- /client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/client/client.go -------------------------------------------------------------------------------- /client/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/client/client_test.go -------------------------------------------------------------------------------- /company.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/company.go -------------------------------------------------------------------------------- /company_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/company_test.go -------------------------------------------------------------------------------- /crypto/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/crypto/client.go -------------------------------------------------------------------------------- /crypto/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/crypto/client_test.go -------------------------------------------------------------------------------- /date.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/date.go -------------------------------------------------------------------------------- /earning.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/earning.go -------------------------------------------------------------------------------- /earning_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/earning_test.go -------------------------------------------------------------------------------- /exchange.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/exchange.go -------------------------------------------------------------------------------- /finnhub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/finnhub.go -------------------------------------------------------------------------------- /forex/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/forex/client.go -------------------------------------------------------------------------------- /forex/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/forex/client_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/go.sum -------------------------------------------------------------------------------- /grading.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/grading.go -------------------------------------------------------------------------------- /grading_action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/grading_action.go -------------------------------------------------------------------------------- /grading_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/grading_params.go -------------------------------------------------------------------------------- /grading_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/grading_test.go -------------------------------------------------------------------------------- /news.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/news.go -------------------------------------------------------------------------------- /news/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/news/client.go -------------------------------------------------------------------------------- /news/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/news/client_test.go -------------------------------------------------------------------------------- /news_category.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/news_category.go -------------------------------------------------------------------------------- /news_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/news_params.go -------------------------------------------------------------------------------- /news_sentiment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/news_sentiment.go -------------------------------------------------------------------------------- /news_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/news_test.go -------------------------------------------------------------------------------- /option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/option.go -------------------------------------------------------------------------------- /option_chain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/option_chain.go -------------------------------------------------------------------------------- /option_chain_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/option_chain_data.go -------------------------------------------------------------------------------- /option_chain_data_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/option_chain_data_test.go -------------------------------------------------------------------------------- /option_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/option_test.go -------------------------------------------------------------------------------- /price_target.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/price_target.go -------------------------------------------------------------------------------- /price_target_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/price_target_test.go -------------------------------------------------------------------------------- /quote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/quote.go -------------------------------------------------------------------------------- /recommendation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/recommendation.go -------------------------------------------------------------------------------- /recommendation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/recommendation_test.go -------------------------------------------------------------------------------- /stock/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/stock/client.go -------------------------------------------------------------------------------- /stock/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/stock/client_test.go -------------------------------------------------------------------------------- /symbol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m1/go-finnhub/HEAD/symbol.go --------------------------------------------------------------------------------