{"record":{"id":"a358d7ce85d8db94","repo":"OpenBB-finance/OpenBB","slug":"no-data-returned-for-the-given-symbols-a358d7","errorCode":null,"errorMessage":"No data returned for the given symbols.","messagePattern":"No data returned for the given symbols\\.","errorType":"exception","errorClass":"EmptyDataError","httpStatus":null,"severity":"error","filePath":"openbb_platform/providers/fmp/openbb_fmp/models/forward_eps_estimates.py","lineNumber":106,"sourceCode":"        api_key = credentials.get(\"fmp_api_key\") if credentials else \"\"\n        symbols = query.symbol.split(\",\")  # type: ignore\n        results: list[dict] = []\n        base_url = \"https://financialmodelingprep.com/stable/analyst-estimates?\"\n        limit = query.limit if query.limit else 1000\n\n        async def get_one(symbol):\n            \"\"\"Get data for one symbol.\"\"\"\n            url = f\"{base_url}symbol={symbol}&period={query.fiscal_period}&limit={limit}&apikey={api_key}\"\n            result = await get_data_many(url, **kwargs)\n            if not result or len(result) == 0:\n                warnings.warn(f\"Symbol Error: No data found for {symbol}\")\n            if result:\n                results.extend(result)\n\n        await asyncio.gather(*[get_one(symbol) for symbol in symbols])\n\n        if not results:\n            raise EmptyDataError(\"No data returned for the given symbols.\")\n\n        return results\n\n    @staticmethod\n    def transform_data(\n        query: FMPForwardEpsEstimatesQueryParams, data: list[dict], **kwargs: Any\n    ) -> list[FMPForwardEpsEstimatesData]:\n        \"\"\"Return the transformed data.\"\"\"\n        symbols = query.symbol.split(\",\") if query.symbol else []\n        cols = [\n            \"symbol\",\n            \"date\",\n            \"epsAvg\",\n            \"epsHigh\",\n            \"epsLow\",\n            \"numberAnalystsEps\",\n        ]\n        year = datetime.now().year","sourceCodeStart":88,"sourceCodeEnd":124,"githubUrl":"https://github.com/OpenBB-finance/OpenBB/blob/3e071fcc2cd9f891cac6040ae60296dba76dab46/openbb_platform/providers/fmp/openbb_fmp/models/forward_eps_estimates.py#L88-L124","documentation":"Error \"No data returned for the given symbols.\" thrown in OpenBB-finance/OpenBB.","triggerScenarios":"Thrown at openbb_platform/providers/fmp/openbb_fmp/models/forward_eps_estimates.py:106 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":["Verify the symbols are valid tickers covered by FMP analyst estimates.","Check that your FMP subscription includes forward EPS estimates.","Try large-cap symbols; estimates coverage is limited for small companies."],"exampleFix":null,"handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"3e071fcc2cd9f891cac6040ae60296dba76dab46","analyzedAt":"2026-08-14T23:40:48.960Z","schemaVersion":2},"datasetVersion":"2026-08-15T22:17:37.221Z"}