feat(market-data): add get_24h_volumes(connector_name)#21
Draft
fengtality wants to merge 1 commit into
Draft
Conversation
Wraps GET /market-data/volumes/{connector}, returning 24h quote volume per
trading pair keyed by Hummingbot trading pair (BASE-QUOTE). Lets clients rank a
pair selector by volume and hide listed-but-untraded markets (volume 0.0).
Bumps version to 1.5.4.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds
MarketDataRouter.get_24h_volumes(connector_name)wrapping the new hummingbot-api endpointGET /market-data/volumes/{connector}.Returns 24h quote-denominated volume per trading pair, keyed by Hummingbot trading pair (
BASE-QUOTE) so it joins directly withget_trading_rules. A value of0.0marks a listed-but-untraded market (e.g. Hyperliquid's permissionless tokenized-equity spot pairs likeAAPL-USDC), letting a client rank a pair selector by volume and hide the zombies.Supported connectors:
hyperliquid,hyperliquid_perpetual,binance,binance_perpetual,okx,okx_perpetual.1.5.3 → 1.5.4.Depends on
hummingbot-api endpoint
GET /market-data/volumes/{connector}(hummingbot/hummingbot-api PR #171).Test
Verified live against a running hummingbot-api:
get_24h_volumes("hyperliquid")→ 301 pairs,AAPL-USDC = 0.0, top pairs ranked by volume.🤖 Generated with Claude Code