Closed

Description
QuotesCsvLoader allows to load quotes from a csv file. The file can contain data for several dates, but only the data related to one date is loaded. The method signature is
ImmutableMap<QuoteId, Double> load(LocalDate marketDataDate, ... )
The load should be extended to several dates with a method
Map<LocalDate, Map<QuoteId, Double>> load(Set<LocalDate> marketDataDates, ... )
or something similar. This is important we doing historical analysis and several dates are used in the same process.