Skip to content

Commit 8978da7

Browse files
authored
Merge pull request freqtrade#12457 from luckynick/patch-2
Update exchanges.md - clarify Hyperliquid docs on subaccounts usage
2 parents d38d816 + b3bbb92 commit 8978da7

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

docs/exchanges.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -407,11 +407,12 @@ To use these with Freqtrade, you will need to use the following configuration pa
407407
``` json
408408
"exchange": {
409409
"name": "hyperliquid",
410-
"walletAddress": "your_vault_address", // Vault or subaccount address
411-
"privateKey": "your_api_private_key",
410+
"walletAddress": "your_master_wallet_address", // Your master wallet address (not the API wallet address and not the vault/subaccount address).
411+
"privateKey": "your_api_private_key", // API wallet private key (see https://app.hyperliquid.xyz/API). You'll only need the private key.
412412
"ccxt_config": {
413413
"options": {
414-
"vaultAddress": "your_vault_address" // Optional, only if you want to use a vault or subaccount
414+
"vaultAddress": "your_vault_address", // Optional, only if you want to use a vault ...
415+
"subAccountAddress": "your_subaccount_address" // OR optional, only if you want to use a subaccount
415416
}
416417
},
417418
// ...
@@ -420,6 +421,9 @@ To use these with Freqtrade, you will need to use the following configuration pa
420421

421422
Your balance and trades will now be used from your vault / subaccount - and no longer from your main account.
422423

424+
!!! Note
425+
You can only use either a vault or a subaccount - not both at the same time.
426+
423427
### Historic Hyperliquid data
424428

425429
The Hyperliquid API does not provide historic data beyond the single call to fetch current data, so downloading data is not possible, as the downloaded data would not constitute proper historic data.

0 commit comments

Comments
 (0)