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
2
votes
0 answers

How to retrieve the cash dividends from the quantopian-quandl data bundle with Zipline?

https://www.zipline.io/bundles.html By default zipline comes with the quantopian-quandl data bundle which uses quandl’s WIKI dataset. The quandl data bundle includes daily pricing data, splits, cash dividends, and asset metadata. Quantopian has…
Vincent Roye
  • 2,751
  • 7
  • 33
  • 53
2
votes
1 answer

How do add Quandl package to Julia

I'm trying to add the Quandl package (query finance and economic data) like this: using Pkg Pkg.add("Quandl") which gets me this: Updating registry at ~/.julia/registries/General Updating…
Oscar
  • 311
  • 2
  • 3
2
votes
2 answers

.pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available. (Windows 10)

I am trying to install quandl to use in Jupyter notebook. py -m pip install quandl But I get the following error that SSL module in Python is not available. Collecting quandl WARNING: Retrying (Retry(total=4, connect=None, read=None,…
Ishan
  • 21
  • 1
  • 2
2
votes
2 answers

Where am I going wrong retrieving stock data from Quandl?

ValueError: The Quandl API key must be provided either through the api_key variable or through the environmental variable QUANDL_API_KEY. I am trying to retrieve some simple stock data from Quandl. I have put in the actual API key instead of the x…
2
votes
0 answers

" Why am I getting a 'DataFrame' object is not callable" error?

For the first time, I'm unable to use the .shift() method on a column of the DataFrame I'm working with, giving me a DataFrame' object is not callable error. sdf = quandl.get("AAII/AAII_SENTIMENT", authtoken="mytoken") sdf = pd.DataFrame(data =…
Kaibo
  • 21
  • 1
2
votes
1 answer

how to remove error in quandl.get() function

I have run the following code to get data from quandl and it works import quandl import pandas as pd fiddy_states = pd.read_html('https://simple.wikipedia.org/wiki/List_of_U.S._states') for abbv in fiddy_states[0][0][1:]: …
Rohail
  • 75
  • 1
  • 11
2
votes
3 answers

skipping ssl-verification for quandl in python

the problem is that i can't access quandl data with quandl.get() because it throws an SSLError. i have tried setting verify = False, and some other things. this is the code: data = quandl.get("EOD/MSFT", authtoken="gyX6Yqxx3xT3hsdSmPva",…
BOBTHEBUILDER
  • 345
  • 1
  • 4
  • 20
2
votes
3 answers

How to scrape key statistics from Yahoo! Finance with R?

Unfortunately, I am not an experienced scraper yet. However, I need to scrape key statistics of multiple stocks from Yahoo Finance with R. I am somewhat familiar with scraping data directly from html using read_html, html_nodes(), and html_text()…
user3443027
  • 951
  • 1
  • 7
  • 9
2
votes
2 answers

Can we download historical data for ALL stocks listed in NSE using Quandl in R?

I am using the Quandl API in R to download the historical stock market data listed in NSE India. The below code gives me the historical data for ICICI and PNB but needs manual entries for each stock to fetch the data. How do we download the…
Akash
  • 359
  • 1
  • 7
  • 27
2
votes
0 answers

How to dynamically extract data from quandl in r shiny?

I'm using the following code but it is giving me error. textInput(inputId = "metadata",label = "Please select the company you want information about") observe({ if(is.null(input$metadata)) return(NULL) …
2
votes
1 answer

Python 3.6 - Cannot get current stock prices from quandl, pandas and datetime

I try to write a small "program" that gets the stock prices from Quandl. The user should be able to enter a startring date (yyyymmdd) and the the program should then get the data from that date and forward to current date. import datetime as dt …
Landscape
  • 249
  • 1
  • 2
  • 13
2
votes
0 answers

Specifying multiple columns of Quandl data to download with column_index

With Google Financial, you can specify which columns of data you want to download. Can that be done with Quandl data? If so, I can't find an example that illustrates how. I want to download Open and Close data only, not the entire table which is…
John Strong
  • 1,844
  • 1
  • 15
  • 24
2
votes
1 answer

Use proper inputs to download stock data

I have a code below that tries to ask a user to enter 5 countries so that in return she gets the data for stock index price of that country (Say if she enters USA in return she gets info for S&P 500). I use error-handling properties so that if there…
Alberto Alvarez
  • 805
  • 3
  • 11
  • 20
2
votes
1 answer

How to store datasets and databases from quandl using quandl Python API/module in postgresql or mongodb?

Does anybody know how to use quandl module/API for Python to store datasets and databases into a single database using postgresql or mongodb. Any help will be much appreciated. Thanks.
4M01
  • 265
  • 6
  • 13
2
votes
4 answers

Python Quandl - ModuleNotFoundError

Visual Studio 2017 - Empty Python Project My code looks like this (yes just two lines): import pandas as pd import Quandl I have added the Quandl (3.2.0) environment to my Python 3.6 (64-bit) project. Quandl is underlined in green. A mouse hover…
Rob L
  • 2,124
  • 3
  • 22
  • 50
1 2
3
21 22