0

I am able to get historical data on one stock per each request. But I need to get historical data for multiple stocks in a single request from Google finance using python.

Any help will be highly appreciated!

Thanks

Let's Enkindle
  • 57
  • 2
  • 17
NaveeN .G
  • 1
  • 3

1 Answers1

0

You can't request time series data for multiple stocks from that source at once. Instead, you have to put your request into a loop. Putting your request into a loop, you can request time series stock by stock.

Peter
  • 1,224
  • 3
  • 16
  • 28
  • But it's refusing API calls if morethan 5 per second – NaveeN .G Jan 22 '18 at 12:07
  • Maybe Google has throttled the maximum API-requests per second. In this case, you have to limit your requests per minute inside your loop. If you make too many calls per second, then you are not a private user and then you have to buy the data. – Peter Jan 22 '18 at 17:02