user3583877
user3583877

Reputation: 31

How to download japanese history stock prices automatically from google finance in python

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

Answers (1)

Meghdeep Ray
Meghdeep Ray

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

Related Questions