You can now import Quandl data with a single line of code! Just tell us what Quandl-Code you'd like and we'll connect to the Quandl API, and import the data into your algorithm! The example below imports the Yahoo S&P index!

With this feature you can now import tens of thousands of different datasets from Quandl's library:

//Import desired data in Initialize()

AddData("YAHOO/INDEX_SPY", Resolution.Minute);

//Event handler for Quandl data

public void OnData(Quandl data) { ... }

Author