summaryrefslogtreecommitdiffstats
path: root/openbb_platform/providers/fmp/openbb_fmp/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'openbb_platform/providers/fmp/openbb_fmp/__init__.py')
-rw-r--r--openbb_platform/providers/fmp/openbb_fmp/__init__.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/openbb_platform/providers/fmp/openbb_fmp/__init__.py b/openbb_platform/providers/fmp/openbb_fmp/__init__.py
index d822dcbee4f..c4d372a4541 100644
--- a/openbb_platform/providers/fmp/openbb_fmp/__init__.py
+++ b/openbb_platform/providers/fmp/openbb_fmp/__init__.py
@@ -66,9 +66,9 @@ from openbb_fmp.models.world_news import FMPWorldNewsFetcher
fmp_provider = Provider(
name="fmp",
- website="https://financialmodelingprep.com/",
+ website="https://financialmodelingprep.com",
description="""Financial Modeling Prep is a new concept that informs you about
- stock market information (news, currencies, and stock prices).""",
+stock market information (news, currencies, and stock prices).""",
credentials=["api_key"],
fetcher_dict={
"AnalystEstimates": FMPAnalystEstimatesFetcher,
@@ -135,4 +135,8 @@ fmp_provider = Provider(
"WorldNews": FMPWorldNewsFetcher,
"EtfHistorical": FMPEquityHistoricalFetcher,
},
+ repr_name="Financial Modeling Prep (FMP)",
+ v3_credentials=["API_KEY_FINANCIALMODELINGPREP"],
+ instructions='Go to: https://site.financialmodelingprep.com/developer/docs\n\n![FinancialModelingPrep](https://user-images.githubusercontent.com/46355364/207821920-64553d05-d461-4984-b0fe-be0368c71186.png)\n\nClick on, "Get my API KEY here", and sign up for a free account.\n\n![FinancialModelingPrep](https://user-images.githubusercontent.com/46355364/207822184-a723092e-ef42-4f87-8c55-db150f09741b.png)\n\nWith an account created, sign in and navigate to the Dashboard, which shows the assigned token. by pressing the "Dashboard" button which will show the API key.\n\n![FinancialModelingPrep](https://user-images.githubusercontent.com/46355364/207823170-dd8191db-e125-44e5-b4f3-2df0e115c91d.png)', # noqa: E501 pylint: disable=line-too-long
+ logo_url="https://intelligence.financialmodelingprep.com//images/fmp-brain-original.svg",
)