Yahoo Stock Quotes in Go
github.com
Yahoo Stock Quotes in Go
1–10 of 23 posts
Re: Yahoo Stock Quotes in Go
#2Re: Yahoo Stock Quotes in Go
#3Does anyone know of any true market data sources that are not delayed, free and open for commercial use?
http://stackoverflow.com/questions/10040954/alternative-to-g...
Questions of this nature seem to usually end up pointing to Yahoo's API.
I saw elsewhere (can't locate source at moment) quotes ranging in the $10,000's a month range for real-time data. I'm sure someone on here could provide a more accurate figure.
It's valuable data associated with an industry that's famous for extracting value out of data so I'm not really surprised it's not free.
Re: Yahoo Stock Quotes in Go
#4Does anyone know of any true market data sources that are not delayed, free and open for commercial use?
(I'm not affiliated, but I've used their services before and have been happy)
Re: Yahoo Stock Quotes in Go
#5Re: Yahoo Stock Quotes in Go
#6Does anyone know of any true market data sources that are not delayed, free and open for commercial use?
Re: Yahoo Stock Quotes in Go
#7Does anyone know of any true market data sources that are not delayed, free and open for commercial use?
Short answer: No
Long answer: It depends on what you mean by "true market data". This requires understanding a lot more about how the market and bidding process actually functions, but there really isn't a single canonical price at any point, and there are many ways to define what you're looking for, depending on what you're referring to - all of which are valid according to different assumptions.
Think of it as a special kind of eventually-consistent database. Depending on the consistency model, you can't ask what the value of x is right now, because there are multiple possible values that are all valid. It's only after they converge (which takes time) that a single, canonical value emerges.
This is one of the reasons that quotes are always delayed - it's possible to talk about what the price was at some point in the past, because those ways of defining the price dynamically have all essentially converged to the same value, but it's not possible to pinpoint a single price in the present.
To get all of the various sources of real-time data that can be considered the "current price" requires a lot of low-latency connections to various market players. That's not cheap, so there's nothing that's not delayed and free and available for commercial use.
Re: Yahoo Stock Quotes in Go
#8Does anyone know of any true market data sources that are not delayed, free and open for commercial use?
Re: Yahoo Stock Quotes in Go
#9Heads up, it has not been touched in 3 years.