Skip to content

Commit 6139191

Browse files
authored
Merge pull request #6 from hummingbot/feat/add_canldes_feed_route
Feat/add canldes feed route
2 parents 6e64a41 + 236bced commit 6139191

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

hummingbot_api_client/routers/market_data.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,15 @@ async def get_candles_last_days(
113113
end_time=end_time
114114
)
115115

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+
116125
async def get_active_feeds(self) -> Dict[str, Any]:
117126
"""Get information about currently active market data feeds."""
118127
return await self._get("/market-data/active-feeds")

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "hummingbot-api-client"
7-
version = "1.0.5"
7+
version = "1.0.6"
88
description = "An async Python client for Hummingbot API"
99
readme = "README.md"
1010
requires-python = ">=3.8"

0 commit comments

Comments
 (0)