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.
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.