diff --git a/en/develop/exchanges/index.html b/en/develop/exchanges/index.html index 642b9b82e..2bb5bc8f0 100644 --- a/en/develop/exchanges/index.html +++ b/en/develop/exchanges/index.html @@ -1239,6 +1239,15 @@ + + +
  • + + + Hyperliquid + + +
  • @@ -1975,6 +1984,15 @@ +
  • + +
  • + + + Hyperliquid + + +
  • @@ -2276,6 +2294,42 @@ It's therefore required to pass the UID as well.

    Necessary Verification

    Bitmart requires Verification Lvl2 to successfully trade on the spot market through the API - even though trading via UI works just fine with just Lvl1 verification.

    +

    Hyperliquid

    +
    +

    Stoploss on Exchange

    +

    Hyperliquid supports stoploss_on_exchange and uses stop-loss-limit orders. It provides great advantages, so we recommend to benefit from it.

    +
    +

    Hyperliquid is a Decentralized Exchange (DEX). Decentralized exchanges work a bit different compared to normal exchanges. Instead of authenticating private API calls using an API key, private API calls need to be signed with the private key of your wallet. +This needs to be configured like this:

    +
    "exchange": {
    +    "name": "hyperliquid",
    +    "walletAddress": "your_eth_wallet_address",
    +    "privateKey": "your_private_key",
    +    // ...
    +}
    +
    + +

    Hyperliquid handles deposits and withdrawals on the Arbitrum One chain, a Layer 2 scaling solution built on top of Ethereum. Hyperliquid uses USDC as quote / collateral. The process of depositing USDC on Hyperliquid requires a couple of steps, see how to start trading for details on what steps are needed.

    +
    +

    Hyperliquid general usage Notes

    +

    Hyperliquid does not support market orders, however ccxt will simulate market orders by placing limit orders with a maximum slippage of 5%.
    +Unfortunately, hyperliquid only offers 5000 historic candles, so backtesting will either need to build candles historically (by waiting and downloading the data incrementally over time) - or will be limited to the last 5000 candles.

    +
    +
    +

    Some general best practices (non exhaustive)

    + +

    All exchanges

    Should you experience constant errors with Nonce (like InvalidNonce), it is best to regenerate the API keys. Resetting Nonce is difficult and it's usually easier to regenerate the API keys.

    Random notes for other exchanges

    diff --git a/en/develop/index.html b/en/develop/index.html index 11c38cd11..0aa191437 100644 --- a/en/develop/index.html +++ b/en/develop/index.html @@ -1831,11 +1831,12 @@

    Please read the exchange specific notes to learn about eventual, special configurations needed for each exchange.