summaryrefslogtreecommitdiffstats
path: root/openbb_platform/extensions/equity/openbb_equity/estimates/estimates_router.py
diff options
context:
space:
mode:
Diffstat (limited to 'openbb_platform/extensions/equity/openbb_equity/estimates/estimates_router.py')
-rw-r--r--openbb_platform/extensions/equity/openbb_equity/estimates/estimates_router.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/openbb_platform/extensions/equity/openbb_equity/estimates/estimates_router.py b/openbb_platform/extensions/equity/openbb_equity/estimates/estimates_router.py
index 07c328c334c..a2964a4f63e 100644
--- a/openbb_platform/extensions/equity/openbb_equity/estimates/estimates_router.py
+++ b/openbb_platform/extensions/equity/openbb_equity/estimates/estimates_router.py
@@ -91,3 +91,17 @@ async def analyst_search(
) -> OBBject:
"""Search for specific analysts and get their forecast track record."""
return await OBBject.from_query(Query(**locals()))
+
+
+@router.command(
+ model="SalesEstimates",
+ examples=[],
+)
+async def sales_estimates(
+ cc: CommandContext,
+ provider_choices: ProviderChoices,
+ standard_params: StandardParams,
+ extra_params: ExtraParams,
+) -> OBBject:
+ """Get sales estimates."""
+ return await OBBject.from_query(Query(**locals()))