Hyperliquid
π Connector InfoΒΆ
- Exchange Type: Decentralized Exchange (DEX)
- Market Type: Central Limit Order Book (CLOB)
Component | Status | Notes |
---|---|---|
π Spot Connector | β | |
π Perp Connector | β | Supports testnet |
π― Spot Candles Feed | β | |
π― Perp Candles Feed | β | |
π Connector Guide | β |
βΉοΈ Exchange InfoΒΆ
- Website: https://app.hyperliquid.xyz/
- CoinMarketCap: https://coinmarketcap.com/exchanges/hyperliquid/
- CoinGecko: https://www.coingecko.com/en/exchanges/hyperliquid
- API Docs: https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api
- Fees: https://hyperliquid.gitbook.io/hyperliquid-docs/trading/fees
- Supported Countries: Not available
π How to ConnectΒΆ
Tip
See the Hyperliquid Vault Guide for more details on how to use Hyperliquid VauLts.
Add Keys to HummingbotΒΆ
From inside the Hummingbot client, run connect hyperliquid
in Hummingbot in order to connect your wallet:
If connection is successful:
π Spot ConnectorΒΆ
Integration to spot markets API endpoints
- ID:
hyperliquid
- Connection Type: WebSocket
- API Docs: https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api
- Github Folder
Order TypesΒΆ
This connector supports the following OrderType
constants:
LIMIT
LIMIT_MAKER
MARKET
π Perp ConnectorΒΆ
Integration to perpetual futures markets API endpoints
- ID:
hyperliquid_perpetual
- Connection Type: WebSocket
- Folder: https://github.com/hummingbot/hummingbot/tree/master/hummingbot/connector/derivative/hyperliquid_perpetual
UsageΒΆ
From inside the Hummingbot client, run connect hyperliquid_perpetual
:
If connection is successful:
Order TypesΒΆ
This connector supports the following OrderType
constants:
LIMIT
LIMIT_MAKER
MARKET
Position ModesΒΆ
This connector supports the following position modes:
- One-way
Paper TradingΒΆ
This perp exchange offers a paper trading mode: https://app.hyperliquid-testnet.xyz/trade
Afer you create an account and create the API keys, you can enter them by using the connect hyperliquid_perpetual_testnet
command within the Hummingbot client. Once connected, you should be able to use the testnet with the available perpetual strategies / scripts.
π― Spot Candles FeedΒΆ
OHLCV candles data collector from spot markets
- ID:
hyperliquid
- Supported Intervals: 1m | 3m | 5m | 15m | 30m | 1h | 2h | 4h | 6h | 8h | 12h | 1d | 1w | 1M
- API Docs: https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api
- Github Folder
UsageΒΆ
In a Hummingbot script, import CandlesFactory
to create the candles that you want:
from hummingbot.data_feed.candles_feed.candles_factory import CandlesFactory
candles = CandlesFactory.get_candle(connector="hyperliquid",
trading_pair="ETH-USDT",
interval="1m", max_records=50)
π― Perp Candles FeedΒΆ
OHLCV candles data collector from perpetual futures markets
- ID:
hyperliquid_perpetual
- Supported Intervals: 1m | 3m | 5m | 15m | 30m | 1h | 2h | 4h | 6h | 8h | 12h | 1d | 1w | 1M
- Github Folder
UsageΒΆ
In a Hummingbot script, import CandlesFactory
to create the candles that you want: