summaryrefslogtreecommitdiffstats
path: root/openbb_platform/providers/intrinio/openbb_intrinio/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'openbb_platform/providers/intrinio/openbb_intrinio/__init__.py')
-rw-r--r--openbb_platform/providers/intrinio/openbb_intrinio/__init__.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/openbb_platform/providers/intrinio/openbb_intrinio/__init__.py b/openbb_platform/providers/intrinio/openbb_intrinio/__init__.py
index 49af00c352b..389dc782cb6 100644
--- a/openbb_platform/providers/intrinio/openbb_intrinio/__init__.py
+++ b/openbb_platform/providers/intrinio/openbb_intrinio/__init__.py
@@ -18,6 +18,12 @@ from openbb_intrinio.models.etf_price_performance import (
)
from openbb_intrinio.models.etf_search import IntrinioEtfSearchFetcher
from openbb_intrinio.models.financial_ratios import IntrinioFinancialRatiosFetcher
+from openbb_intrinio.models.forward_eps_estimates import (
+ IntrinioForwardEpsEstimatesFetcher,
+)
+from openbb_intrinio.models.forward_sales_estimates import (
+ IntrinioForwardSalesEstimatesFetcher,
+)
from openbb_intrinio.models.fred_series import IntrinioFredSeriesFetcher
from openbb_intrinio.models.historical_attributes import (
IntrinioHistoricalAttributesFetcher,
@@ -37,6 +43,9 @@ from openbb_intrinio.models.latest_attributes import IntrinioLatestAttributesFet
from openbb_intrinio.models.market_snapshots import IntrinioMarketSnapshotsFetcher
from openbb_intrinio.models.options_chains import IntrinioOptionsChainsFetcher
from openbb_intrinio.models.options_unusual import IntrinioOptionsUnusualFetcher
+from openbb_intrinio.models.price_target_consensus import (
+ IntrinioPriceTargetConsensusFetcher,
+)
from openbb_intrinio.models.reported_financials import IntrinioReportedFinancialsFetcher
from openbb_intrinio.models.search_attributes import (
IntrinioSearchAttributesFetcher,
@@ -67,6 +76,8 @@ intrinio_provider = Provider(
"EtfPricePerformance": IntrinioEtfPricePerformanceFetcher,
"EtfSearch": IntrinioEtfSearchFetcher,
"FinancialRatios": IntrinioFinancialRatiosFetcher,
+ "ForwardEpsEstimates": IntrinioForwardEpsEstimatesFetcher,
+ "ForwardSalesEstimates": IntrinioForwardSalesEstimatesFetcher,
"FredSeries": IntrinioFredSeriesFetcher,
"HistoricalAttributes": IntrinioHistoricalAttributesFetcher,
"HistoricalDividends": IntrinioHistoricalDividendsFetcher,
@@ -80,6 +91,7 @@ intrinio_provider = Provider(
"MarketSnapshots": IntrinioMarketSnapshotsFetcher,
"OptionsChains": IntrinioOptionsChainsFetcher,
"OptionsUnusual": IntrinioOptionsUnusualFetcher,
+ "PriceTargetConsensus": IntrinioPriceTargetConsensusFetcher,
"ReportedFinancials": IntrinioReportedFinancialsFetcher,
"SearchAttributes": IntrinioSearchAttributesFetcher,
"ShareStatistics": IntrinioShareStatisticsFetcher,