Bugfix/fix get quotes in financial modeling prep service (#2627)

* Fix get quotes

* Update changelog
pull/2626/head^2
Thomas Kaul 1 year ago committed by GitHub
parent 7c9407d5dc
commit 6a722d1bb7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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
### Fixed
- Fixed an issue to get quotes in the _Financial Modeling Prep_ service
## 2.20.0 - 2023-11-08
### Changed

@ -133,7 +133,7 @@ export class FinancialModelingPrepService implements DataProviderInterface {
abortController.abort();
}, requestTimeout);
const response = await got(
const quotes = await got(
`${this.URL}/quote/${symbols.join(',')}?apikey=${this.apiKey}`,
{
// @ts-ignore
@ -141,7 +141,7 @@ export class FinancialModelingPrepService implements DataProviderInterface {
}
).json<any>();
for (const { price, symbol } of response) {
for (const { price, symbol } of quotes) {
response[symbol] = {
currency: DEFAULT_CURRENCY,
dataProviderInfo: this.getDataProviderInfo(),

Loading…
Cancel
Save