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

Forex data from Quandl with Pandas

I'm trying to get Currency data from Quandl with Pandas with this code: data = Quandl.get('GBPUSD', collapse='weekly', authtoken='XXXXX') But I'm getting Quandl.Quandl.DatasetNotFound: Dataset not found. Check Quandl code: GBP for errors
Filipe Ferminiano
  • 8,373
  • 25
  • 104
  • 174
0
votes
1 answer

R Quandl Error, No Daily

Quandl("CHRIS/CME_CL1", trim_start=Sys.Date()-15, trim_end=Sys.Date()-10, collapse="daily") Error in match.arg(collapse) : 'arg' should be one of “”, “weekly”, “monthly”, “quarterly”, “annual” Any ideas why that wont work? I copied straight from…
user1234440
  • 22,521
  • 18
  • 61
  • 103
0
votes
1 answer

Using NodeJS Quandl API behind a proxy

I'm trying to use quandl in nodejs but I'm behind a web proxy. Does somebody know how to set it up so my requests use the proxy? (http and https)
RandomUser
  • 11
  • 3
0
votes
1 answer

Push array data into HighCharts?

Javascript: $(document).ready(function () { $("#symbolchecker").submit(function (event) { var symbol = $("#ticker").val(); if (symbol == "GDP") { $.getJSON('http://www.quandl.com/api/v1/datasets/FRED/GDP) .done(function…
bwon
  • 9
  • 4
0
votes
1 answer

Sequential merge with loop in R

I'm using the R-package for Quandl trying to create a data frame with stock quotes for a list of specified companies. install.packages("Quandl") library(Quandl) library(reshape) Quandl.auth("yourauthenticationtoken") #create date structure (using…
Sunv
  • 239
  • 1
  • 4
  • 11
0
votes
1 answer

Accessing Quandl data call from SAS using url method

I was trying accessing Quandl(http://www.quandl.com) data. Quandl is an open website from where we can download readiliy available curated time-series data on many financial and economic topics. They have build it in such a manner that you can call…
pmr
  • 998
  • 2
  • 13
  • 27
-1
votes
1 answer

How to ingest Quandl

I am currently following a book(Trading Evolved) for learning the algorithmic trading but got **stuck on ingesting quandal what should I do now. I have tried to find the answer but can not get any solution for the same. PLEASE HELP '''(zip35)…
-1
votes
1 answer

import quandl data inquiry

Sorry noobie here, is there a reason why the row shown is only limited to 5? Thank you in advance import pandas as pd import quandl df = pd.DataFrame(quandl.get('WIKI/TSLA')) print(df.head())
kaweng88
  • 3
  • 2
-1
votes
1 answer

Can not find Python Quandl&Pandas Syntax Error

I was following a tutorial from this guy and I was writing the exact same code to VS code except that Quandl is not written in uppercase anymore. I will leave a ss of the code here for who don't want to watch video. reference…
apotamkinn
  • 61
  • 6
-1
votes
1 answer

Python Quandl output in Visual Studio Code

VS code How can I see the output of this code? There is no error as you can see but I don't know how to see output? Should I write it on Jupyter or sth else ?
apotamkin
  • 5
  • 1
  • 5
-1
votes
1 answer

TypeError: argument of type 'float' is not iterable when searching a dictionary for possible matches for a word

I am writing a program which predicts stock prices and I need to search a dictionary that I have created filled with names of companies and the ticker names of the companies which is what I need to return to use Quandl to retrieve the stock prices.…
burnie5749
  • 21
  • 3
-1
votes
1 answer

How to install quandl on windows

I installed Anaconda 1.9.7 about months ago and now I'm trying to install Quandl. I checked every post about this problem but non of them are working. Error is below; C:\Users\user\Anaconda3\Scripts>pip install quandl pip is configured with…
sleepy
  • 167
  • 1
  • 2
  • 9
-1
votes
1 answer

how to combine Series with different date into one DataFrame

I get some data from quandl and fred, and I try to make them into the same CSV file. But my spot_price data is missing in the csv file. Here's my code: import quandl quandl.ApiConfig.api_key = "your…
-1
votes
2 answers

pandas dataframe won't reorder columns

I'm working on a script to retreive data from Quandl which manipulates the data before saving. I'm stuck on 1 step which is id like to reorder my columns using pandas like df = df[['Code','Date','Open','High','Low','Close','Volume']] or in simpler…
bassmann
  • 250
  • 3
  • 18
-1
votes
1 answer

Conda python3.6 No moduled named 'Quandl'

I tried to run my code which has import Quandl. The below error occur. I have already install quandl via pip, conda and whl files and all of these ways do not work. runfile('C:/Users/Administrator/Desktop/New folder/stock reinforce/untitled6.py',…
Tanakorn Taweepoka
  • 197
  • 2
  • 3
  • 14
1 2 3
21
22