-1

I am writing some Java coding about real-time market data in the finance area.

Say, if I want to capture GOOG (google) trading information from Bloomberg, then Bloomberg will publish what format of data, including what data, in what time period (in one second?) ? Bloomberg will notify subscriber by Socket or Message Queue ? They will bundle the market data with reference data?

Kara
  • 6,115
  • 16
  • 50
  • 57
user534009
  • 1,419
  • 4
  • 23
  • 25

3 Answers3

1

Getting real time market data feed would not be free. You would have to probably buy subscription and then after, you can get specification about how to connect to their system to get the data. If real time market data is not the hard requirement, I would suggest you to try Yahoo Finance's 15 minutes delayed feed using following URL:

http://download.finance.yahoo.com/d/quotes.csv

You can refer related SO Question at Yahoo! Finance CSV file will not return Dow Jones (^DJI)

Community
  • 1
  • 1
jatanp
  • 3,982
  • 4
  • 40
  • 46
  • what is the market data ? including what columns ? A web page said the Bloomberg has 10000 columns for its market data. is it true ? if yes, what data is essential or trivial ? – user534009 Dec 16 '10 at 18:32
1

The major websites like Google, Yahoo!, etc. provide market data with a considerable time lag. Actual "real-time" providers like Bloomberg, Reuters, etc. charge a fee to use their APIs and libraries.

If you're doing anything other than research with free data then you're waaaaay behind the other guys...

maerics
  • 151,642
  • 46
  • 269
  • 291
0

Bloomberg will use EVENTS class to update API users with the latest real time value (+other informations). Yes they will bundle market data / reference data. Basically you suscribe to a list of ticker and receive the events.

On Bloomberg, if you use the WAPI function, you will be able to retrieve a lot of tutorial and examples on how to implement and use BBG real time information in JAVA.

You will also be able to have a look at the EVENT generated by BBG for live data.

Regards

pam
  • 676
  • 1
  • 7
  • 27