Hello, I’m new and I’m learning how to get time series from Quandl and work with them.
I just managed to get the time series with only dates and closing prices and I would like to plot it. I read all PyPlot and Plots package documentations but I couldn’t find anything. Can someone give me a hint on the code or something to read?
What is Quandl and what format are the data in?Please give working code.
The TimeSeries package has a Plots recipe
1 Like
So you can simply
using Quandl, Plots
ohlcv = quandl("GOOG/NASDAQ_QQQ")
plot(ohlcv["Volume"])
You may need to run Pkg.checkout("TimeSeries")
first, as the recipe may only be on the master branch.
3 Likes
thank you!
1 Like