stockquotes

Where can I get free real-time stock data?

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 a...

How Safe Is It To Scrape Stock-Price Information

Hi, As far as I can see, there are no developer-API services for stock-price information with the following stipulations: Free or low-monthly cost ( Ability to ship code which uses the service to multiple parties (e.g. an iPhone app) No per-transaction/lookup cost No limit on number of lookups or transactions So I find that I am for...

ohlc chart in JFreeChart

hi, I'm currently working on a financial alerts application , and for the client interface I've decided to use JFreeChart. However as I'm new to it ,there are some important things that I can't figure about the ohlc charts : -I'd like to be able to put in a chart only a limited number of bars (let's say 300) and after this number is re...

Real Time / High Resolution Stock API?

I'm looking to get my hands on an API (hopefully one that's platform agnostic) that allows me to retrieve real time (or as close to it) equity prices / volume (hopefully). I'm not a professional trader and can't afford anything really expensive (although I'm willing to pay a fair bit a month for such a service). I'm seeking to monitor ...

how to fetch stock price from australia stock exchange...

how to fetch stock price from australia stock exchange...www.asx.com.au/ Actually our team is working on a corporate site which would be very soon listed at australia stock exchange. I need to reflect the stock price on home page and details abt stock price etc in details page. what's the best way..does stock exchange provides feed.. a...

How to show live stock updates on website

I am developing a website where i want to show live stock updates for both bse and nse. Is it possible to show to show live updates? Is it free or do i have to pay something to bse pr nse for that matter. I also want to show the updates on my tv channel. Can anyone please tell me how to do it and what procedure i have to follow. ...

Stock Price update widget

Hi All, I am working on a small application where I can get the stock price of a particular company also if the price can be updated immediately. I guess there might be a widget that I can use but not sure which one or how. Thanks ...

Problem with Stock Quote from Google Finance

Hi All, Below is the example I got from google finance for a stock quote. But it doesnt seem to be working. Stock price isnt displayed. Thanks <body> Hello world! Here is your portfolio:<br/> GOOG: <span id=_IG_SYM1_l></span> (<span id=_IG_SYM1_c></span>)<br/> AAPL: <span id=_IG_SYM2_l></span> (<span id=_IG_SYM2_c></span>)<br/> ...

How can I get Yahoo realtime stock quotes in Perl?

There's a fairly easy way of retrieving 15-minute delayed quotes off of Yahoo! Finance web site ("quotes.csv" API). However, so far I was unable to find any info on how to access real-time quotes. The hang-ups with real-time quotes are: Only available to logged-in user No API Non-obvious how to scrape the info - I'm somewhat convince...

using Excel VBA, given the daily price of 50 stocks, choose 10 stocks such that they have the minumum correlation

The high-level goal is to choose 10 stocks that have the lowest correlation among one another, out of a pool of 50, so that I can have a well-diversified portfolio. I have managed to write some VBA macro to download the past 3 years of daily price data from Yahoo finance, and then compute the 50x50 correlation matrix (using the Correl f...

Is there an API that I can use to get historical and recent EOD stock quotes?

Hey I just need the link for the API that Google/Yahoo have (I know they have it but I cant find the link) that I can use to get historical and recent End of day stock quotes. For example I want to be able to query the quote for MSFT on Jan 15,2009 and get the moving averages and 52 week highs, etc. Can anyone point them out to me? Thank...

is there any way by which i can get stock quotes real time just as Google or Yahoo does?

does anyone know how Google or Yahoo get the stock quotes as NASDAQ or NYSE is not providing any APIs? Can we actually replicate what they do? are they using the crawl method itself or rather is crawling actually possible to get such data realtime? ...

Stock and mutual fund data web service

Is there a reliable web service that contains current and historical stock and mutual fund data that I can call to download this data to my application? Mostly using the United States stock exchanges but might include some of the bigger international stock markets as well. ...

Any good Finance API?

Yahoo! Finance feeds are pain in the ass. Google Finance API seems OK but don't know why I can't retrieve stock quotes information for Dow Johnes, NASDAQ, S&P... Works perfect with company quotes like YHOO, MSFT but don't gets full data for stock indexes. There is an article at YQL blog on how to get this data from Open tables with YQ...

Where can I get a feed (RSS / XML or something else) of live sugar (or agricultural) products?

Sites like http://www.futurespros.com/softs/london-sugar provide live feed of current rates of sugar across the World. Where can I get current rates of sugar for various countries through some feed so that it is possible to access them programatically and display them on my web page? ...

Python 3 Urlopen vs Urlretreive

Hi, I am working on a script to download and process historical stock prices. When I used urllib.request.urlopen I got a strange prefix of text in every file (b'\xef\xbb\xbf) that was not present when I used urllib.request.urlretrieve, nor present when I typed the url into a browser (Firefox). So I have an answer but I don't know why i...