go-alpha-vantage icon indicating copy to clipboard operation
go-alpha-vantage copied to clipboard

Golang Alpha Vantage Client

Results 9 go-alpha-vantage issues
Sort by recently updated
recently updated
newest added

I would like to see the API of the project on the new Go docs website; however, the site is showing an error: https://pkg.go.dev/github.com/cmckee-dev/go-alpha-vantage?tab=overview Also if this had a license,...

I'd like to grab the intraday prices for a previous day using your module. I haven't yet seen a way to do this, as all the pricing appears to be...

Hi guys, Just wondering if we can create a new Go wrapper for Finnhub stock API as well : https://finnhub.io/ . They provide 60 free calls/minute with intraday data going...

This introduces support for the `QuoteEndpoint` Example ``` ac := av.NewClient(APIKey) quoteValue, err := ac.StockQuote(symbolKey) if err != nil { log.Debugf("Error StockQuote response: %+v", err) } ``` e.g. for symbolKey...

Alpha Vantage times are in `US/Eastern` timezone. `time.Parse()` consider times to be in UTC, so `time.ParseInLocation()` must be used instead. Check https://golang.org/pkg/time/#ParseInLocation for more information.

It can be useful to be able to specify the `outputsize` when getting StockTimeSeries. I've added it as an optional param. Thanks for the project!

Hi, according to the docs (https://www.alphavantage.co/documentation/#dailyadj), example: https://www.alphavantage.co/query?function=TIME_SERIES_DAILY_ADJUSTED&symbol=MSFT&apikey=demo, when using TIME_SERIES_DAILY_ADJUSTED instead of TIME_SERIES_DAILY, we get two extra fields: - dividend amount - split coefficient I'd be interested in the...