Questions tagged [quandl]

Quandl.com is a website gathering, formatting and offering finance and economic data.

Quandl.com is a website gathering, formatting and offering finance and economic data. Data can be downloaded (there is a free daily allowance), requested through an API or through an official Python client.

325 questions
-1
votes
1 answer

Pandas error in python 3.5.1

I am using python 3.5.1, Following shows data import pandas as pd import quandl df = quandl.get('WIKI/GOOGL') print(df.head()) I am doing following import pandas as pd import quandl df = quandl.get('WIKI/GOOGL') df = df[['Adj. Open','Adj.…
ram om
  • 23
  • 1
  • 5
-1
votes
1 answer

Querying for all the companies in Quandl via Python

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…
Aqqqq
  • 816
  • 2
  • 10
  • 27
-2
votes
1 answer

Get free SP500 historical end of day data through API

Is there any way to get free SP500 historical end-of-day data ideally in API and csv form? Not sure why it seems to be harder than I could imagine. For example: Quandl: SPY or SPX symbol not found rs =…
Chubaka
  • 2,933
  • 7
  • 43
  • 58
-2
votes
1 answer

Loop R with Quandl as optional

I'm starting programming R. I use Quandl to download historical futures data (GCG1975, GCJ1975, GCM1975, GCQ1975, GCV1975, GCZ1975, GCG1976, GCJ1976, GCM1976, ..., GCZ2016). Month codes: G J M Q V Z Years: 1975:2016 I want to download it all, but I…
-2
votes
1 answer

Data-frame in R

Suppose this data.frame is called GC so I want to eliminate columns "Last", "Change" and put it on a new matrix/vector. Also I want to select the 6th value starting from the end whch date is 1975-02-18. require(Quandl) GC =…
-2
votes
1 answer

Import the Quandl's harmonized data into r

I'm looking for a way to import the Quandl's harmonized data into r. I tried to use Quandl package with: Quandl("RAYMOND/MSFT_COSTOFREVENUE_Q", trim_start="2009-06-27", trim_end="2014-03-29") but with no luck so I…
mql4beginner
  • 2,193
  • 5
  • 34
  • 73
-3
votes
1 answer

Importing Quandl library into Android

I am currently 3 months+ into programming and am trying to build an android app that takes data from Quandl. How do I import the Quandl library into my Android project? I have tried to search for answers - they typically tell me to add the .jar…
-3
votes
1 answer

Python trading logic

Here's a simple code for downloading daily stock data and computing Bollinger band indicator, but what I am not able to do is set up a logic for generating a buy and sell signal. Can someone help me with that. What i want is for the system to check…
-3
votes
1 answer

Is there a way to update my terminal on the mac?

I am using a MacBook pro and my terminal version in 2.7.2. However, I have downloaded both python2 and python3. When I 'pip install quandl' in the terminal I can import it using python2 but not python3?! Is this because my terminal is not updated or…
Andy
  • 3
  • 2
1 2 3
21
22