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
33
votes
1 answer

Alternatives to the Yahoo Finance API?

Yahoo finance recently discontinued their API. I have been looking for alternatives. The ones I've found so far are Google Finance and Quandl. Google Finance was deprecated in 2011 but still appears to work somewhat. However, there is little to no…
Alex F
  • 2,086
  • 4
  • 29
  • 67
21
votes
15 answers

import error; no module named Quandl

I am am trying to run the Quandl module on a virtualenv which I have uninstalled packages only pandas and then Quandl, I am running Python 2.7.10 - I have uninstalled all other python versions, but its still giving me the issue of 'ImportError: No…
user3655574
  • 692
  • 2
  • 9
  • 27
21
votes
4 answers

How to download intraday stock market data with R

All, I'm looking to download stock data either from Yahoo or Google on 15 - 60 minute intervals for as much history as I can get. I've come up with a crude solution as follows: library(RCurl) tmp <-…
aaron
  • 6,339
  • 12
  • 54
  • 80
14
votes
2 answers

What is meant by shift in dataframe?

I am stuck in the following lines import quandl,math import pandas as pd import numpy as np from sklearn import preprocessing ,cross_validation , svm from sklearn.linear_model import LinearRegression df = quandl.get('WIKI/GOOGL') df =…
rithwik kukunuri
  • 143
  • 1
  • 1
  • 6
11
votes
4 answers

'import quandl' produces 'Process finished with exit code -1073741819 (0xC0000005)'

Here is my entire program: import quandl print("Hello World"); which results in: Process finished with exit code -1073741819 (0xC0000005) In the first place I imported Quandl, but then I received: ModuleNotFoundError: No module named…
Alon
  • 10,381
  • 23
  • 88
  • 152
10
votes
12 answers

Could not find a version that satisfies the requirement numpy == 1.9.3

Trying to install quandl and need pandas, so I tried pip install pandas and get: Could not find a version that satisfies the requirement numpy==1.9.3 (from versions: 1.10.4, 1.11.0, 1.11.1rc1, 1.11.1, 1.11.2rc1, 1.11.2, 1.11.3, 1.12.0b1, 1.12.0rc1,…
Jony
  • 111
  • 1
  • 1
  • 4
9
votes
3 answers

Downloading FRED data with quantmod: can dates be specified?

I am downloading data from FRED with the quantmod library (author Jeffrey A. Ryan). With Yahoo and Google data, I am able to set start and end dates. Can the same be done for FRED data? The help page does not list "from" and "to" as options of…
PatrickT
  • 10,037
  • 9
  • 76
  • 111
7
votes
2 answers

How to add quandl Api key to my request in python

I had made a private quandl account and received my quandl Api key but how to add the key to my request in python? My Code: import pandas as pd import quandl df = quandl.get('EOD/V') print(df.head()) Error: Traceback (most recent call last): …
Qasim Imtiaz
  • 519
  • 2
  • 8
  • 12
7
votes
3 answers

How to use PyCall in Julia to convert Python output to Julia DataFrame

I would like to retrieve some data from quandl and analyse them in Julia. There is, unfortunately, no official API available for this (yet). I am aware of this solution, but it is still quite limited in functionality and doesn't follow the same…
Constantin
  • 629
  • 1
  • 7
  • 22
5
votes
2 answers

What is the type returned by quandl.get?

I'm currently following tutorial in which you get data form quandl. I know the basics of python, but I can't figure out what is the type returned by quandl.get. I have searched for it, but everything I found refers to pandas. Do you know what type…
Wojtek Wencel
  • 2,257
  • 6
  • 31
  • 65
5
votes
3 answers

How to import fundamentals for stocks by using Quandl package

I'm trying to import fundamentals for stocks by using Quandl package,I pulled some data by using this line of code: mydata <-Quandl("WIKI/AAPL", collapse="quarterly") However, I don't understend how can I get fundamentals data and not just the…
mql4beginner
  • 2,193
  • 5
  • 34
  • 73
4
votes
1 answer

Quandl returning only empty data frames for requests from 3/27/2018 to now

I'm using Quandl to get daily stock prices, but trying to get any data after the date 3/27/18 returns an empty dataframe. import quandl import pandas as pd import datetime as dt # add quandl API key for unrestricted quandl.ApiConfig.api_key =…
whacke
  • 53
  • 3
4
votes
1 answer

python pip cryptography build wheel fail

I am trying to install python packages like quandl. Since I am using pip3 I am installing the package using the following command in ubuntu 16. sudo pip3 install quandl This gives me the following error. Running setup.py clean for…
Baradwaj Aryasomayajula
  • 1,184
  • 1
  • 16
  • 42
4
votes
1 answer

Running Quandl in R "Error in loadNamespace(name) : there is no package called ‘curl’"

I am trying to run a simple command in R using the Quandl package. I am getting the following error when I run though: Error in loadNamespace(name) : there is no package called ‘curl’ The code I am running is: library(Quandl)…
user3734644
  • 53
  • 2
  • 5
3
votes
1 answer

Use data from Quandl API to show in Appsmith table widget

I am building a web-app and want to connect data from Quandl through its JSON API. However, the JSON I get from quandl has the column names separate from the data itself, check below: { "datatable": { "data": [ [ "AAPL", …
Basley
  • 79
  • 12
1
2 3
21 22