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

How can I get all available data series names from quantmod and Quandl?

I am interested in a large amount of free data from FRED, OECD, BIS, World-bank, etc. All data are macro-economic in nature. I am not really interested in stock price data. I would essentially like to construct a CSV table with all symbols available…
J. Doe.
  • 1,255
  • 1
  • 12
  • 25
0
votes
1 answer

How Do I Use the Quandl API?

I'm using C# and I want to know how to use the Quandl API to get data via xml, like a stock price. I've never used an API before so I'm really lost. I was looking at their quick start guide, but I don't understand how something like…
0
votes
2 answers

Node.js HTTPS Request for Quandl API

I am using IBM Bluemix to make a web service for a school project. My project needs to request JSON data from two APIs, for use in the project. The first one is a http.request, which I executed just fine. For the second one, however, I need a…
MBBertolucci
  • 1,261
  • 3
  • 13
  • 18
0
votes
1 answer

Github Quandl not able to install

When I tried installing quandl it is showing this error message. Can anyone help ?? > install_github("quandl/R-package") Downloading GitHub repo quandl/R-package@master Installing Quandl Installing 1 packages: stringi package ‘stringi’ successfully…
0
votes
1 answer

User InputBox For Loop Error

I keep getting Run-time error '9': Subscript out of range I'm trying to allow the user to determine what stocks they would like to download from QUANDL Dim stock1 As Variant Dim stock2 As Variant Dim i As Integer Dim stock() As Variant …
0
votes
2 answers

Rstudio Error Quandl "code":"QECx02","message"

I am trying to import financial data from Quandl library(Quandl) library(xts) currencies <- c("RUB", "USD", "JPY", "EUR", "CNY") currencies <- paste("CURRFX/BRL", currencies, sep= "") currency_ts <- lapply(as.list(currencies), Quandl,…
Kingindanord
  • 1,754
  • 2
  • 19
  • 48
0
votes
0 answers

Try catch stuck in an infinite loop while downloading data in R

I'm downloading stock data from quandl and have used a trycatch to catch stocks whose data cannot be downloaded. out of some 800 stocks, 9 are giving an error but the try catch is stuck in an infinite loop and does not write the csv files for the…
0
votes
3 answers

C# Deserialize Json string from Quandl

I have spent a few hours on this and still can't find the answer. I have a Json string I need to deserialize. It should be simple but I get the following error message: Unexpected character encountered while parsing value: Q. Path '', line 0,…
0
votes
2 answers

Quandl stock identifiers

I have a list of 1,000 stock identifiers (Bloomberg ticker, ISIN; SEDOL or CUSIP) and I would like to download data from quandl. However, I cannot map the identifiers. The problem is that Quandl uses its own Quandl codes which are built…
fuji2015
  • 331
  • 1
  • 6
  • 15
0
votes
1 answer

Retrieving data from Quandl with Python

How can I get the latest prices from a Quandl dataset with the Python API (https://www.quandl.com/help/python)? On https://www.quandl.com/help/api, it says "You can use rows=n to get only the first n rows of your dataset. Use rows=1 to get the…
Jamgreen
  • 10,329
  • 29
  • 113
  • 224
0
votes
0 answers

Quandl issue on change and data for latest day

I've been working on the quandl API recently and I've been stuck on an issue for a while. My question is how to create a method on the difference between One date and the date before for a stock index, Data seems to come out as an array as an…
Marorin
  • 167
  • 3
  • 12
0
votes
2 answers

How to get prices for multiple tickers for a given date with Quandl

I can already get the price for IBM on a given date : https://www.quandl.com/api/v1/datasets/GOOG/NYSE_IBM.json?trim_start=2012-11-01&trim_end=2012-11-01 Is there a way to query Quandl a single time and for multiple tickers ( all the same date)?
Bruno
  • 4,685
  • 7
  • 54
  • 105
0
votes
1 answer

Downloading Quandl data to pandas using Quandl google finance dataset code tags

I would like to use specifically Quandl's Google Finance database for downloading stock prices for backtesting a strategy. The reason is that google finance has clean data compare to Quandl's WIKI and Yahoo databases for stocks adjusted for splits…
user2880845
  • 39
  • 2
  • 7
0
votes
0 answers

gaelyk plugin system (use of quandl4j)

I have wondered how it would be possible to use gaelyk plugin system for quand4j which is a library on top of quandl (open data system). After many attempts of adding manually to build.gradle like the excerpt hereunder without any success, could…
0
votes
1 answer

quandl api for matlab and matlab serial date number (datenum)

I had a doubt using the Quandl API for MATLAB: When I get the data using the Quandl.get function, for example: startDate = {'2013-12-20'}; % initial date endDate = {'2014-10-21'}; % final date data = Quandl.get('OFDP/FUTURE_CL1', 'trim_start',…