summaryrefslogtreecommitdiffstats
path: root/openbb_platform/providers/yfinance/openbb_yfinance/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'openbb_platform/providers/yfinance/openbb_yfinance/__init__.py')
-rw-r--r--openbb_platform/providers/yfinance/openbb_yfinance/__init__.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/openbb_platform/providers/yfinance/openbb_yfinance/__init__.py b/openbb_platform/providers/yfinance/openbb_yfinance/__init__.py
index 5c7853b1603..7a442117fe9 100644
--- a/openbb_platform/providers/yfinance/openbb_yfinance/__init__.py
+++ b/openbb_platform/providers/yfinance/openbb_yfinance/__init__.py
@@ -26,6 +26,9 @@ from openbb_yfinance.models.losers import YFLosersFetcher
from openbb_yfinance.models.market_indices import (
YFinanceMarketIndicesFetcher,
)
+from openbb_yfinance.models.price_target_consensus import (
+ YFinancePriceTargetConsensusFetcher,
+)
from openbb_yfinance.models.undervalued_growth_equities import (
YFUndervaluedGrowthEquitiesFetcher,
)
@@ -60,5 +63,6 @@ yfinance_provider = Provider(
"IncomeStatement": YFinanceIncomeStatementFetcher,
"IndexHistorical": YFinanceIndexHistoricalFetcher,
"MarketIndices": YFinanceMarketIndicesFetcher,
+ "PriceTargetConsensus": YFinancePriceTargetConsensusFetcher,
},
)