Are there free realtime financial data feeds since the demise of OpenQuant?

53,120

Solution 1

I think you'll find all you need to know by looking at this question: source of historical stock data

I don't know of any free data feeds other than Yahoo!, but it doesn't offer tick-by-tick data, it only offers 1 minute intervals with a 15 minute delay. If you want to use an already existing tool to download the historical data, then I would recommend EclipseTrader. It only saves the Open, Close, High, Low, and Volume.

Eclipse Trader
(source: divbyzero.com)

You can write your own data scraper with very little effort. I've written an article on downloading real-time data from yahoo on my blog, but it's in C#. If you're familiar with C# then you'll be able to translate the action in Java pretty quickly. If you write your own data scraper then you can get pretty much ANYTHING that Yahoo! shows on their web site: Bid, Ask, Dividend Share, Earnings Share, Day's High, Day's Low, etc, etc, etc.

If you don't know C# then don't worry, it's REALLY simple: Yahoo allows you to download CSV files with quotes just by modifying a URL. You can find out everything about the URL and the tags that are used on yahoo here: http://www.gummy-stuff.org/Yahoo-data.htm

Here are the basic steps you need to follow:

  1. Construct a URL for the symbol or multiple symbols of your choice.
  2. Add the tags which you're interested in downloading (Open, Close, Volume, Beta, 52 week high, etc, etc.).
  3. Create a URLConnection with the URL you just constructed.
  4. Use a BufferedReader to read the CSV file that is returned from the connection stream.

Your CSV will have the following format:

  • Each row is a different symbol.
  • Each column is a different tag.

Solution 2

Open a TDAmeritrade account and you will have free access to ThinkOrSwim real time trading and quotes platform. Live trading is real time and paper trading is delayed 15 minutes. I forget what the minimum required is to open a TDAmeritrade account but you can go to TDAMeritrade.com or thinkorswim.com to check them out.

Share:
53,120
Mel Cooper
Author by

Mel Cooper

Updated on July 09, 2022

Comments

  • Mel Cooper
    Mel Cooper almost 2 years

    Now that the oligopole of market data providers successfully killed OpenQuant, does any alternative to proprietary and expensive subscriptions for realtime market data subsist?

    Ideally I would like to be able to monitor tick by tick securities from the NYSE, NASDAQ and AMEX (about 6000 symbols).

    Most vendors put a limit of 500 symbols watchable at the same time, this is unacceptable to me, even if one can imagine a rotation among the 500 symbols ie. making windows of 5 sec. of effective observation out of each minute for every symbol.

    Currently I'm doing this by a Java thread pool calling Google Finance, but this is unsatisfactory for several reasons, one being that Google doesn't return the volume traded, but the main one being that Google promptly is killing bots attempting to take advantage of this service ;-)

    Any hint much appreciated,

    Cheers

  • Allen
    Allen almost 14 years
    And you only have to find 12 such data providers. Not trying to be flippant -- it sounds doable.
  • Matthew Lock
    Matthew Lock about 11 years
    EclipseTrader is an interesting proposition. Rather than build a data loading and trading platform from scratch, just create simple plugins with it.
  • Brethlosze
    Brethlosze over 6 years
    Yahoo is dead...