abstract fun getDepotQuotes(): LiveData<List<DepotQuote>>
Returns all DepotQuotes as a List, wrapped in LiveData. Conflates all DepotQuotePurchases with the same id String, symbol String, type Symbol.Type and returns them as DepotQuotes, whereby their amount Double is added up and the mean buyingPrice Double is bid from the buyingPrices Double.
Return
LiveData containing all DepotQuotes as a List.