fix market price fetch in case symbols are missing

This commit is contained in:
Valentin Zickner 2021-07-29 22:11:27 +02:00 committed by Thomas
parent ff15d5cbc4
commit ed731afc66

View File

@ -172,10 +172,12 @@ export class PortfolioCalculator {
if (!marketSymbolMap[date]) {
marketSymbolMap[date] = {};
}
if (marketSymbol.marketPrice) {
marketSymbolMap[date][marketSymbol.symbol] = new Big(
marketSymbol.marketPrice
);
}
}
let hasErrors = false;
const startString = format(start, DATE_FORMAT);
@ -377,11 +379,13 @@ export class PortfolioCalculator {
if (!marketSymbolMap[date]) {
marketSymbolMap[date] = {};
}
if (marketSymbol.marketPrice) {
marketSymbolMap[date][marketSymbol.symbol] = new Big(
marketSymbol.marketPrice
);
}
}
}
const results = [];
for (