Intraday historical data

Discussion in 'Data Sets and Feeds' started by tradingboy, Mar 25, 2010.

  1. Is there any software on the market that can download free (without subscription) intraday historical quotes for US markets?
     
  2. Rule of thumb....if intraday quotes are 'free' they are probably not very accurate. Proceed with caution if you want to do any backtesting or if OHLC and those types of details are important to you.
     
  3. thank you for advice. I am aware of that - there are full IT groups dedicated to maintaining quality of data in high-frequency trading hedge funds.

    I am just looking for a source for delayed (say 20-min) intraday data
     
  4. yes, google and yahoo offer this

    google you can only access inside of their igoogle widget sandbox environment (or inside of google docs/spreadsheets)

    yahoo you can access through tradelink

    Code:
    using TradeLink.Research;
    
    QuickQuote qq = QuickQuote.Fetch("IBM");
    debug(qq.price);
    debug(qq.vol);
    
    http://tradelink.googlecode.com
     
  5. Google and Yahoo offer snapshot quotes. I am looking for intraday data in such form

    date, time, open, high, low, close, volume
    03/25/2010,11:23,201.63,203.89,200.92,202.93,1400
    03/25/2010,11:24,201.93,203.90,200.02,201.93,1100
    03/25/2010,11:25,201.83,202.89,200.11,201.55,1200
     
  6. ah. not aware of anyone who offers that data for free.

    you could build that data yourself by requesting snapshots every few intervals.

    otherwise might need to buy the data or subscribe to a service that provides it.
     
  7. check out Qcollector, not free though

    http://www.mechtrading.com/index.htm
     
  8. Qcollector seems to do the job but does require existing subscription :(
     
  9. biba4

    biba4

    There is a way to collect intraday data for free. There are programs that can do that by pulling real-time data from Yahoo site. I strongly recommend using MLDownloader which is the most feature rich and at the same time the most user friendly program available: http://www.trading-tools.com/mld.htm

    The big disadvantage is that you don't get any historical data. For that, there are three cheap data providers available:

    1. Kibot: http://www.kibot.com/
    2. Pi-Trading: http://pitrading.com/
    3. Price-Data: http://www.grainmarketresearch.com/

    There are others, but these three are the least expensive ones.
     
  10. thanks for links
     
    #10     Apr 7, 2010