File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed
hummingbot_api_client/routers Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -113,6 +113,15 @@ async def get_candles_last_days(
113
113
end_time = end_time
114
114
)
115
115
116
+ async def get_available_candle_connectors (self ) -> List [str ]:
117
+ """
118
+ Get list of available connectors that support candle data feeds.
119
+
120
+ Returns:
121
+ List of connector names that can be used for fetching candle data
122
+ """
123
+ return await self ._get ("/market-data/available-candle-connectors" )
124
+
116
125
async def get_active_feeds (self ) -> Dict [str , Any ]:
117
126
"""Get information about currently active market data feeds."""
118
127
return await self ._get ("/market-data/active-feeds" )
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
5
5
[project ]
6
6
name = " hummingbot-api-client"
7
- version = " 1.0.5 "
7
+ version = " 1.0.6 "
8
8
description = " An async Python client for Hummingbot API"
9
9
readme = " README.md"
10
10
requires-python = " >=3.8"
You can’t perform that action at this time.
0 commit comments