zavtech / morpheus-quandl

An adapter that returns Morpheus DataFrames from Quandl.com
1 stars 1 forks source link

Make specifying options optional #3

Open benmccann opened 7 years ago

benmccann commented 7 years ago

Currently, it looks like you need to specify something like:

DataFrame<LocalDate,String> frame = quandl.getDailyData("WIKI", "AAPL", options -> {
  options.setStartDate("2014-01-06");
  options.setEndDate("2014-02-04");
});

It'd be nice if I could just fetch the entire history by default and not have to specify start and end dates

Zavster commented 7 years ago

Makes sense, I will add support for that