Feature/improve symbol validation in Yahoo Finance service (#4445)

* Improve symbol validation

* Update changelog
This commit is contained in:
Thomas Kaul 2025-03-16 10:42:35 +01:00 committed by GitHub
parent 29b8d63951
commit 5783497a66
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 0 deletions

View File

@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased
### Changed
- Improved the symbol validation in the _Yahoo Finance_ service (get asset profiles)
## 2.146.0 - 2025-03-15
### Changed

View File

@ -170,6 +170,8 @@ export class YahooFinanceDataEnhancerService implements DataEnhancerInterface {
symbol = quotes[0].symbol;
}
} catch {}
} else if (symbol?.includes('-')) {
throw new Error(`${symbol} is not valid`);
} else {
symbol = this.convertToYahooFinanceSymbol(symbol);
}