Reputation: 31
I use python to analyze Japanese stock prices. I want to get Japanese historical stock prices to get from google finance. I also refer to googlefinance0.7 ( https://pypi.python.org/pypi/googlefinance ) and pandas, but they are not support Japanese stock prices. So how to download japanese history stock prices automatically from google finance? Or are there references to program code in python?
Upvotes: 2
Views: 2268
Reputation: 5537
Quandl has all the historical data sets you need.
It's designed for easy usage with Python so for Tokyo Stock Exchange TOPIX Index :
import quandl
mydata = quandl.get("TSE/TOPIX")
Upvotes: 1