|
|
@ -504,8 +504,11 @@ export class FinancialModelingPrepService implements DataProviderInterface { |
|
|
).then((res) => res.json()); |
|
|
).then((res) => res.json()); |
|
|
|
|
|
|
|
|
items = result |
|
|
items = result |
|
|
.filter(({ symbol }) => { |
|
|
.filter(({ exchange, symbol }) => { |
|
|
if (includeIndices === false && symbol.startsWith('^')) { |
|
|
if ( |
|
|
|
|
|
exchange === 'FOREX' || |
|
|
|
|
|
(includeIndices === false && symbol.startsWith('^')) |
|
|
|
|
|
) { |
|
|
return false; |
|
|
return false; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|