Questions tagged [google-finance-api]

API used to query information about portfolios stored in Google Finance. Note this API was deprecated in May 2011 and will be permanently shut down on October 20, 2012.

API used to query information about portfolios stored in Google Finance.

Note this API was deprecated in May 2011 and will be permanently shut down on October 20, 2012.

https://developers.google.com/finance/

92 questions
0
votes
1 answer

Google Finance API

I am trying to test the price from "l" in the get request to the url http://finance.google.com/finance/info?client=ig&q=NASDAQ:AAPL This is my code. I keep getting error JSONError: Unexpected token '/' at 2:1 // [ ^ var jsonData = []; jsonData =…
0
votes
1 answer

How can I treat this ampersand as text?

from googlefinance import getQuotes print(getQuotes("NSE:M\&MFIN"),) The ampersand is being treated as code but I want to treat it as text; I get a bad request exception: Traceback (most recent call last): File "", line 1, in
Tesh
  • 3
  • 2
0
votes
0 answers

Google Finance in python pandas_reader - How to prevent Google blocking the access?

When using the python pandas_datareader to retrieve stock data, Google once in a while blocks the access when too many requests are sent in a certain time frame. from pandas_datareader import data as web df = web.DataReader(name=ticker,…
Goofball
  • 735
  • 2
  • 9
  • 27
0
votes
1 answer

How to build a gadget that retrieves quotes from google

I'd like to build a windows gadget that shows the main indexes such as dow, nasaq... and my portfolio stocks like msft appl... I want this to represent real time(or at least 15min delay) I found a project that gets the summary of a quote…
Asaf
  • 3,067
  • 11
  • 35
  • 54
0
votes
1 answer

How to get company website from a finance ticker (stock symbol)?

I know how to get the stock symbols, the company names, and statistics using the API and services such as yahoo finance. However, I would like to obtain the company's official website from a ticker symbol. Would there be an API or a service that…
0
votes
2 answers

C++ API for Google Finance

Is there a C++ API for accessing stock quotes from Google finance?
Mohamed Bana
  • 1,251
  • 2
  • 17
  • 27
0
votes
3 answers

R: getting google finance JSON data into a dataframe

I am trying to get google finance JSON data into a dataframe. I tried: library(jsonlite) dat1 <- fromJSON("http://www.google.com/finance/info?q=NSE:%20AAPL,MSFT,TSLA,AMZN,IBM") dat1 However I get an error: Error in feed_push_parser(readBin(con,…
adam.888
  • 7,686
  • 17
  • 70
  • 105
0
votes
1 answer

Call Google Finance API in Excel

I want to fetch stock price via Google Finance API in Excel. Resource: https://finance.google.com/finance/info Method: GET Parameters: client = ig q = :
Veck Hsiao
  • 591
  • 2
  • 8
  • 20
0
votes
1 answer

RSS for Google Finance news

I am making a Google Finance application and searching for the APIs. I have found the API on Google Finance site but there news also coming. I have tried to search but could not get the API for the news. Can you please guide me in this regard?
Puneet kaur
  • 93
  • 1
  • 3
  • 10
0
votes
1 answer

get atom feed and display in html (google-api)

Can someone help me out on this. I have a problem with the return results from an google-api call I want to echo them back as html, but firefox keeps displaying a feed page. In IE, I get an error saying that an xml document can only contain one…
Richard
  • 4,516
  • 11
  • 60
  • 87
0
votes
1 answer

Display summation of stock prices from Google Finance stock API

I am able to pull and display stock price information from the Google Finance API, but would like to add the stock prices and display a sum of the combined amounts. Given the following code: HTML
Matt
  • 1,561
  • 5
  • 26
  • 61
0
votes
1 answer

How to get more than 1 stock information per call on Google Financials?

I'm using Google Script and Google Financials to get information for a list of stocks I have in a text file. The problem is that the class FinanceApp just seems to be able to get one stock at a time and since I have to do this for more than 250…
paddingtonMike
  • 1,441
  • 1
  • 21
  • 37
0
votes
1 answer

FinanceApp.getHistoricalStockInfo call does not return proper values

When I try to get the historical quotes using the following block of code, the stockInfo array is coming back empty. Based on the criteria specified in the FinanceApp.getHistoricalStockInfo function call, I should get the prices for GOOG stock for…
HYP
  • 87
  • 1
  • 2
  • 8
0
votes
1 answer

google finance api alternative for monitoring/modifying portfolio?

I used to use google finance to create portfolios/change them and then display them on my site but since its being removed I'm wondering if there's any good free alternatives? Basically I have a program that creates different portfolios based on…
Lostsoul
  • 25,013
  • 48
  • 144
  • 239
0
votes
1 answer

Querying for a list of any stocks on certain conditions on Google or Yahoo finance APIs

In Google and Yahoo finance APIs, is there any way to query for a list of stock symbols that match certain conditions? For example, getting the 10 most valuable stock symbols? I know I can retrieve the info supyling the API the concrete symbol I…
user1289432