Questions tagged [google-finance]

Google Finance is a service used to track stock and portfolio information. Originally had a public API, but the API was shutdown. Use with tags(eg: [google-sheets-formula]), where the service is involved.

Google Finance is a service used to track stock and portfolio information. Originally had a public API, but the API was shutdown. However the service is still running. Limited programmatic access is also available through

Official Website

417 questions
0
votes
1 answer

How to get put option price with json format?

I want to download the option chain data from google finance, and here I find a R script to download, it is useful, I've changed it capable to download multiple expiry dates option price, but the origin json link seems to only have the call option…
user4440781
0
votes
0 answers

TypeError: to_csv() takes exactly 1 argument (2 given) - Pandas module

I'm a fairly new programmer attempting to pull google intraday stock data for every stock in the RUSSEL3000 and place that data into CSV files. 1 file per stock. I'm able to use the following code to accomplish that task for daily data pulled from…
Austin
  • 51
  • 3
0
votes
2 answers

Calculate averages and other metrics of values in array

I would like to calculate averages and other metrics based on share prices. These share prices are stored in an array and are pulled from Google Finance like this: =GOOGLEFINANCE("GOOG","price",TODAY()-30,TODAY()) The GoogleFinance function is…
AlexR
  • 5,514
  • 9
  • 75
  • 130
0
votes
1 answer

Any ideas on How to get the Google Finance Data from iPhone?

The Google Finance API only have Java / Javascript. Is there any ideas on getting Google Finance data from iPhone using Objective C? thz u.
Tattat
  • 15,548
  • 33
  • 87
  • 138
0
votes
2 answers

Unable to data from Google Finance in string format through JavaScript

function getData(){ $.get("http://www.google.com/finance/getprices?q=.NSEI&x=NSE&i=60&p=1d&f=d, o, h, l, c, v", function(data){ alert("Data:"+data); }); } getData(); The above URL gives response in string format and not in JSON…
Rajat
  • 37
  • 11
0
votes
0 answers

parse financials from Google Finance (annual /quarterly b/s, i/s, cfs)

I searched over to see if there is any discussion on the getting fundamental data of Google finance, i.e. 3 statements (income statement, balance sheet, and cash flow statements) for quarterly (interim) and annual. Totally 6 set of data. However,…
Trader
  • 27
  • 6
0
votes
2 answers

Launching Google Finance and display graph on a particular Stock, is that possible?

I would like to do two things within my Android app : Check if the Google Finance app is installed on the device. Should be pretty straighforward, isn't it ? If yes, launch an intent to Open up Google Finance, displaying a graph on a particular…
Hubert
  • 16,012
  • 18
  • 45
  • 51
0
votes
1 answer

Google Finance API Not Consistent

I'm writing some software to do charting and analysis of intraday stock data, and so far the only free (or even affordable) feed I've found which gives 15 minute data for the past week or so is Google Finance. But something I've noticed, which I…
Sean Duffy
  • 199
  • 6
0
votes
2 answers

How to decode ¥ in JSON

I am using python to parse a JSON file, I know it is because of this ¥, that I got this error when I was using json.loads UnicodeDecodeError: 'utf8' codec can't decode byte 0xa5 in position 106: invalid start byte But how do I get around it? Do I…
Niebieski
  • 591
  • 1
  • 8
  • 16
0
votes
1 answer

Nestl Historical data are missing in yahoo finance

I am looking for historical data of different companies. I am using Yahoo Finance to acquire data and plot them in candlestick chart using matlab software. However i have noticed that yahoo finance only provides some data. For example data from…
user3290332
0
votes
1 answer

Zooming in JFreeChart using scrollbar (see google finance)

Is it possible to have some kind of zooming functionality in JFreechart like it is in google finance? I know there is a zoom in and zoom out, but I would like to have the bar on the bottom with which you can specify your zoom level more…
Fortega
  • 19,463
  • 14
  • 75
  • 113
0
votes
1 answer

URL expiry parameter for retrieving option chains from Google

http://www.google.com/finance/option_chain?q=AAPL&output=json This URL returns the immediate expiry AAPL option chains from Google. What is the tag to add to the URL to get an option chain with a different expiry? In YQL, you can use "m=2015-01",…
0
votes
1 answer

Getting international stock data using yahoo finance

Stock data can be optained using YQL queries like this: select * from yahoo.finance.quote where symbol in ("YHOO","AAPL","GOOG","MSFT") I have to present in a javascript meetup where I will show some stuff to the dynamically updating stocks data…
bits
  • 8,110
  • 8
  • 46
  • 55
0
votes
1 answer

What is the source for historical stock chart prices?

Yahoo does not seem to be using historical close prices nor are they using historical Adjusted close prices for their charts. For example, if you look at PCG on July 3, 1980, the data looks like this (close of…
0
votes
1 answer

download japanese stocks with quantmod in R

I try to download some stocks from Google Finance with quantmod in R. For instance, I want to download the soft bank stocks. https://www.google.com/finance?q=TYO:9984&ei=f2gFU4j8N6KYwQPVCQ So I tried softbank = getSymbols("TYO%3A9984",…
S12000
  • 3,345
  • 12
  • 35
  • 51