Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does anyone know of a way to obtain free real-time stock data or near real-time stock data? I'd like to do this since I'm interested in the financial market, not for use in investment applications which is why I'm looking for something free.

I've tried the Perl module Finance::YahooQuote but some of the fields such as last trade time appear to be broken. I've looked at the historical data but it doesn't fit my needs since I'd like to monitor the movements of the markets and stocks during the trading day not just open and close.

share|improve this question
Wow! Didn't know about OpenTick. They have free historical data! That's really useful and interesting. Thanks! – Joe Pineda Nov 11 '08 at 18:09
1  
Related: quora.com/Stocks-financial/… and – ryanve Aug 8 '12 at 22:18

closed as not constructive by C. Ross, Mark, Deanna, Kris, Mathieu Imbert Oct 3 '12 at 13:31

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

7 Answers

up vote 31 down vote accepted

Yahoo offers delayed-by-15 stock updates. They have a CSV you can download and parse quite easily. Different datapoints are available depending on what options you pass into the GET portion of the URL.

I use that facility myself.

Yahoo's page

Another page about it

Gratuitous plug for my Common Lisp library cl-yahoo-finance.

share|improve this answer
7  
You can also use Yahoo's YQL to get the data in XML or JSON format. It's still REST based and easy to do in any language. I have a tutorial on my site about it: jarloo.com/tutorials/get-yahoo-finance-api-data-via-yql – Kelly Jan 5 '11 at 23:53
1  
Here you can find how to obtain the data you want from the Yahoo API: gummy-stuff.org/Yahoo-data.htm (that is the format specifiers of the 'f' parameter). – antirez Jan 26 '11 at 17:46
Thanks, @Kelly! It's got JSONP format too! – pixelfreak Feb 4 '12 at 18:13

I've written a short python program pasted below that uses Yahoo's stock data to get the data on the Dow Jones average, Ford, and Microsoft, then enters that data into a CSV file. The Dow data appears to updated in real-time or with a one minute delay while other stocks are delayed by 15 minutes. This program is a simple console program that checks the given stock prices every 2 minutes. Note about constructing URL's the symbol for Dow is ^DJI but yahoo replaces the ^ with %5E For information on the yahoo API see this site. http://computerprogramming.suite101.com/article.cfm/using_yahoo_financial

Here is the code.

import urllib
import os
import time

# loop that checks stock prices every 20 seconds and adds them to the file
while 1:
    # sometimes this program gives me socket errors so if it does skip this itteration of the loop
    try:
        stocks = urllib.urlopen('http://download.finance.yahoo.com/d/quotes.csv?s=%5EDJI+MSFT+F&f=sd1t1l1va2abc1ghk3ops7&e=.csv').read()
    except IOError:
        print ("error reading the socket\n")
        time.sleep(120) #if we don't sleep here loop constently retrys with no delay
        continue

    # if csv doesn't exist create it and write header information
    if os.path.exists('stocks.csv')==0:
        stocksFile = open ( 'stocks.csv', 'a' )
        stocksFile.write("symbol,last trade date,last trade time,last trade price,volume,average daily volume,ask,bid,change,days low,days high,last trade size,open,previous close,short ratio\n")
    stocksFile = open ( 'stocks.csv', 'a' )
    stocksFile.write(stocks)
    stocksFile.close()
    time.sleep(120)
share|improve this answer

It's hard to get your hands on free real-time streaming data because the data is not FREE... Exchanges (NYSE/NASDAQ/AMEX) charge distributors fees whenever someone accesses the data. What you see on google and yahoo is not true real-time data, but a subset of data coming from a single regional exchange such as BATS, who do not charge for market data.

I’ve been using quotes from Activetick to feed my trading system algos http://www.activetick.com/activetick/contents/ActiveTickFeedAPIDetails.aspx

They’ve got decent API for streaming data, and I think they have historical ticks and bars too. What I’m really after is regional exchanges, which they have too.

ESignal has a good API also, but they’re way too pricey for me.

But bottom line is that if you need data, prepare to pay for it. I personally wouldn’t trust any quoting service that only has one regional exchange in it, because you miss out a lot of what’s happening in a stock.

share|improve this answer

Use NinjaTrader with whatever demo broker you want. It has even Level II data. Then you can code in C# whatever you want to get the data out of the platform (eg. MemoryMappedFiles, TCP Sockets ...)

share|improve this answer
2  
NinjaTrader provides price data via Kinect. Only problem is that it costs $50 per month to get real-time data. Only end-of-day prices are free. So this wouldn't answer the question. Maybe things were different, as it is now more than 2 years since you wrote your answer! – Feral Oink Sep 1 '11 at 17:14

As indicated in the comments there are no sources of tree tick data which if you are looking for realtime I assume you want. Also you need to think about the depth of data that you want. Last trade, Top of Book Quotes, Full Book, etc..

For getting started I have used IQFeed. The work reasonably well and offer 30 days of full tick data and I believe one year of 1 minute bars. I have not used the streaming code for watching the tick stream yet but I have heard it is good.

OpenTick I heard was not going to reopen.

share|improve this answer
Is IQFeed available for non-Windows platforms (ie. Mac)? – nall Oct 6 '09 at 4:27
No. I do not believe so. If you are looking for more cross platform enabled solutions you will probably need a professional ticker plant. You could also use CQG but they are significantly more expensive. Your best bet is probably to use a windows box to download the data and then use it from your mac. – Steve Oct 6 '09 at 20:51

In addition to the Yahoo and Google API's take a look at the Interactive Brokers API. This has access to both delayed and real time data via their API.

http://www.interactivebrokers.com/en/p.php?f=programInterface

share|improve this answer

Over the years, I used a number of free services. At one point, I even wrote a script to read the realtime quotes off of Yahoo and Google Finance and was doing this for 1000+ symbols using 3 IPs to avoid getting banned. In the end though, I think if one is serious about trading, it is best to go with a reliable, paid data provider and not sink a lot of effort into getting the data for free.

You will save a ton of time and you can be sure the data you are receiving is accurate and arriving on time. For those looking for a professional realtime stock data feed, I recommend TickView from QuantQuote https://quantquote.com/products_live-feed.php

A comparable product is Ncore from nanex, unfortunately, it is not natively Linux and I'm a straight Linux coder.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.