finnhub-go icon indicating copy to clipboard operation
finnhub-go copied to clipboard

Finnhub Go API client. Finnhub API provides institutional-grade financial data to investors, fintech startups and investment firms. We support real-time stock price, global fundamentals and alternativ...

Results 7 finnhub-go issues
Sort by recently updated
recently updated
newest added

There is a general overuse of pointers within this library and many make no sense at all (to me). All return structs fields are pointers to fields, rather than plain...

I am writing wrapper function to simply get Quotes and pass the data back through a channel: ``` quote, _, err := finnhubClient.Quote(context.Background()).Symbol(ticker).Execute() if err != nil { stockQuote :=...

Added to api_default.go. Also added example in readme.md

The struct and everything is in place for the economic calendar, but there is no exported function that can be called. Should be easy enough to base it on a...

Finnhub API returns MIC so we need it captured in the struct

Was trying to initialize the client and kept getting error around date parsing. ``` finnhubClient := finnhub.NewAPIClient(finnhub.NewConfiguration()).DefaultApi auth := context.WithValue(context.Background(), finnhub.ContextAPIKey, finnhub.APIKey{ Key: FINNHUB_TOKEN, }) ``` Error message ``` 2021/01/10...

Hi! Is there any reason that `ForexCandles.T` is of type `[]float32` and `CryptoCandles.T` is of type `[]int64`? Looking at the data returned from the HTTP API both seems to be...