0

http://www.google.com/finance?q=nse%3Areliance

Is it possible to get real-time data (price and volume) using Google API ?

Any sample code (C++/C#) would be very helpful.

Martin
  • 3,396
  • 5
  • 41
  • 67

2 Answers2

2

Check this project : Implementation of Google Finance API in C# , it has also a demo of how to use it.

You may also check Yahoo finance API , here's a sample of how to get real-time data from it in C#

Mouna Cheikhna
  • 38,870
  • 10
  • 48
  • 69
1

This might be a good starting point: http://code.google.com/intl/de/apis/finance/. Here you can find a client library for .NET to make the access at the Google Data Protocol easier: http://code.google.com/intl/de/apis/gdata/docs/client-libraries.html

Mark
  • 7,507
  • 12
  • 52
  • 88