I would like to start with adding a dataloader for Quandl Sharadar Data and Pyfolio integration to view the result JSON files.

To load data these 3 steps are needed:

1) A data loader which writes the daily, factor and map files to /Data_q/equity/usa/ (below the code)

2) than run "mono QuantConnect.ToolBox.exe  --app=CoarseUniverseGenerator" (for Mac, i guess for windows without mono)   this will generate the universes, each day one universe (its in the toolbox, i'm runing it under bin/debug

3) most important, use the docker installation!!! else the results might differ from the cloud (some will be ok, others not)

I experimented with to options:

  1. the precise one: providing very accurate factor and map files
    • the drawback, the data which goes into the files, like dividends or ticker change are not as accurate as the adjued prices from Quandl. I found for example dividends in Yen (if you checked the company webside they match), but adjusted prices are fine. Else I found 5 changes in a ticker but did not found the opposite ticker price data. These two issues give you a lot of error messages, specialy for the ticker....
  2. the "fake" version (just bulid one today), use the adjusted prices from Quandl, asume that dividents are never paid dividends and ticker changes don't exist. I filter out the double ticker like GOOG.
    • you can than run with RAW data, i guess, which should seed up the procces?
    • the drawback, I'don't know......you see some issues with that?

Following the code for the 2 solutions. 

Author