|
@ -196,7 +196,9 @@ export class YahooFinanceDataEnhancerService implements DataEnhancerInterface { |
|
|
shortName: assetProfile.price.shortName, |
|
|
shortName: assetProfile.price.shortName, |
|
|
symbol: assetProfile.price.symbol |
|
|
symbol: assetProfile.price.symbol |
|
|
}); |
|
|
}); |
|
|
response.symbol = assetProfile.price.symbol; |
|
|
response.symbol = this.convertFromYahooFinanceSymbol( |
|
|
|
|
|
assetProfile.price.symbol |
|
|
|
|
|
); |
|
|
|
|
|
|
|
|
if (assetSubClass === AssetSubClass.MUTUALFUND) { |
|
|
if (assetSubClass === AssetSubClass.MUTUALFUND) { |
|
|
response.sectors = []; |
|
|
response.sectors = []; |
|
@ -230,10 +232,6 @@ export class YahooFinanceDataEnhancerService implements DataEnhancerInterface { |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
response.symbol = this.convertFromYahooFinanceSymbol( |
|
|
|
|
|
assetProfile.price.symbol |
|
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
|
|
const url = assetProfile.summaryProfile?.website; |
|
|
const url = assetProfile.summaryProfile?.website; |
|
|
if (url) { |
|
|
if (url) { |
|
|
response.url = url; |
|
|
response.url = url; |
|
|