3 messages in com.googlegroups.google-finance-apisRe: Historical Data
FromSent OnAttachments
barronAug 6, 2008 9:06 am 
Dion Loy (Google)Aug 7, 2008 5:08 am 
damageboyAug 20, 2008 4:40 am 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:Re: Historical DataActions...
From:damageboy (dan.@gmail.com)
Date:Aug 20, 2008 4:40:49 am
List:com.googlegroups.google-finance-apis

In case you want to do something like that you could format a request using this "spec" string (taken from my c# code): var reqFmt = "http://finance.google.com/finance/historical? q={0}&histperiod=daily&startdate={1:MMM d, yyyy}&enddate={2:MMM d, yyyy}&output=csv"; var stock = "GOOG"; var startDate = new DateTime(2008,1,1); var endDate = startDate.AddDays(100); var req = String.Format(reqFmt, stock, startDate, endDate);

On Aug 7, 3:09 pm, "Dion Loy (Google)" <dloy+gro@google.com> wrote:

We have a CSV download for _some_ exchanges:

http://finance.google.com/finance/historical?q=NYSE:NT

(see d/l to spreadsheet, works with the date ranges too).

On Aug 6, 9:07 am, barron <barr@yahoo.com> wrote:

Is there a way to retrieve a past closing price for a stock, perhaps by passing a date along with the ticker symbol? If not, will you consider adding this feature?

Thanks,