Plotting time series and data from Quandl

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