-1

Is there a way to query a certain piece of information (ex. End of the Day Stock price) and/or all information related to the financial situation of all companies that exist in the database in Quandl via Python (instead of querying for a few companies at a time)?

Aqqqq
  • 816
  • 2
  • 10
  • 27

1 Answers1

0

If you know the name of all the companies, make a loop. I give you a hint:

for(companies in CompanyList):
    data = Quandl.get(companies)
    #then do whatever you want to do with the data!

If I am understanding right your question!

Sulot
  • 504
  • 2
  • 6
  • 20
  • Do you have any idea where I could find names of all the companies on Quandl? – Aqqqq Jan 13 '16 at 12:33
  • Even if you have all compaines, you may not be able to get it for free. – Sulot Jan 13 '16 at 15:24
  • Is there a way to get the names of all the companies the data of whom can be attained for free? – Aqqqq Jan 14 '16 at 13:38
  • I just looked into the API Documentation of Quandl. This seems to contain the answer to my question: https://www.quandl.com/docs/api?csv#dataset-list – Aqqqq Jan 15 '16 at 12:32
  • Cool! Can you validate my answer (as it is the only one)! – Sulot Jan 15 '16 at 12:35