finance-go
finance-go copied to clipboard
:bar_chart: Financial markets data library implemented in go.
`quote.Get` of an inexistent symbol should return a non nil error. This does not happen.... To repro ask for a quote from a un-existant symbol: ```golang {.lineNumbers} package main import...
Hi, `quote.Get` of an inexistent symbol should return a non nil error. This does not happen.... To repro ask for a quote from a un-existant symbol: ```golang package main import...
Hi, Can this tool be used to get a list of all the currently listed stock tickers on a particular market? If so, how? Thanks!
Hello. First I want to say about the greatness of this library. And the second: is there some way to get real-time updates of all stocks in the market ?...
Thank you for providing such great package! When I try to use this package, it's very convenient to fetch data, and iterate data, however, the Next() method in iter will...
Hello, I noticed when I'm asking for chart with Interval: datetime.OneDay I always got only 1 candle which is strange... :( I tried this: params := &chart.Params{ Symbol: "AAPL", Interval:...
Hi guys, Big fan of Go and great project here. Just wondering if you guys are open to add https://finnhub.io/ as the new data source. Beside real-time market price (websocket...
- Remove stutter from `GetHistoricalQuote` - Run go fmt where needed - Ensure func comments are in golang canonical format
Yahoo finance API is rate limited, with higher limits available if you use an API key. Would be cool to be able to plug that in when querying. Thanks for...
It seems `history` is highly tied to the concept of a `chart`. It would be helpful to support fetching a `Quote` for a specific historical date (or `time.Time` or whatever...)....