Bugfix/fix addition of manual asset without market data (#3516)
* Provide default value * Update changelog
This commit is contained in:
parent
8cda43bb63
commit
ba979cbae2
@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Changed the mechanism of the `INTRADAY` data gathering to persist data only if the market state is `OPEN`
|
- Changed the mechanism of the `INTRADAY` data gathering to persist data only if the market state is `OPEN`
|
||||||
|
- Fixed the creation of activities with `MANUAL` data source (with no historical market data)
|
||||||
|
|
||||||
## 2.90.0 - 2024-06-22
|
## 2.90.0 - 2024-06-22
|
||||||
|
|
||||||
|
@ -167,9 +167,10 @@ export class ManualService implements DataProviderInterface {
|
|||||||
});
|
});
|
||||||
|
|
||||||
for (const { currency, symbol } of symbolProfiles) {
|
for (const { currency, symbol } of symbolProfiles) {
|
||||||
let marketPrice = marketData.find((marketDataItem) => {
|
let marketPrice =
|
||||||
return marketDataItem.symbol === symbol;
|
marketData.find((marketDataItem) => {
|
||||||
})?.marketPrice;
|
return marketDataItem.symbol === symbol;
|
||||||
|
})?.marketPrice ?? 0;
|
||||||
|
|
||||||
response[symbol] = {
|
response[symbol] = {
|
||||||
currency,
|
currency,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user