Question: I would also like to have an answer to that

This question is related to the Question How do I retrieve data from google data.

I would also like to have an answer to that question !
How would I specify the below code (yahoo finance) for google finance?

> sid := Open("ichart.yahoo.com", 80); Write(sid, cat("GET /table.csv?s=", ticker, "&a=", startMonth-1, "&b=", startDay, "&c=", startYear, "&d=", endMonth-1, "&e=", endDay, "&f=", endYear, "&g=", timeStep, "&ignore=.csv HTTP/1.0 \n\n")); str := ""; b := Read(sid); while b <> false do str := cat(str, b); b := Read(sid) end do; Close(sid); return str;

Please Wait...