| name | hyperliquid-grid-trading-bot |
| description | Configure and run an automated grid trading bot on Hyperliquid DEX with TypeScript/Node.js, supporting perpetuals and spot markets with risk management. |
| triggers | ["set up hyperliquid trading bot","configure grid trading on hyperliquid","run automated trading bot hyperliquid","hyperliquid grid strategy configuration","place layered orders hyperliquid bot","hyperliquid trading bot stop loss take profit","deploy crypto grid bot hyperliquid dex","hyperliquid perpetuals automated trading"] |
Hyperliquid Grid Trading Bot
Skill by ara.so — Daily 2026 Skills collection.
A configurable grid strategy runner for Hyperliquid DEX. Places layered buy/sell orders around a price range with risk controls (stop loss, take profit, drawdown limits, rebalancing). Primary implementation is TypeScript/Node.js; a legacy Python tree exists for reference and learning examples.
Install
git clone https://github.com/PolyPulse-Analytics/hyperliquid-trading-bot.git
cd hyperliquid-trading-bot
npm install
Requirements: Node.js 20.19+, a Hyperliquid wallet private key, git.
Optional Python support: install uv for legacy src/ tree and learning_examples/.
Environment Setup
cp .env.example .env
Edit .env — minimum required fields:
# Testnet (recommended for development)
HYPERLIQUID_TESTNET_PRIVATE_KEY=0xyour_testnet_private_key_here
HYPERLIQUID_TESTNET=true
# Mainnet (real funds — use with caution)
# HYPERLIQUID_MAINNET_PRIVATE_KEY=0xyour_mainnet_private_key_here
# HYPERLIQUID_TESTNET=false
Never commit .env or share your private key. Use a dedicated testnet wallet when experimenting.
Key CLI Commands
| Command | Purpose |
|---|
npm start | Run bot using first active: true config in bots/ |
npm run validate | Validate selected YAML config (no key required) |
npm test | Run automated tests (grid math, etc.) |
npx tsc --noEmit | TypeScript type check |
npx tsx ts/src/runBot.ts path/to/config.yaml | Run with explicit config file |
npm run validate
npm start
npx tsx ts/src/runBot.ts bots/btc_conservative.yaml
Bot Configuration (YAML)
Configs live in bots/*.yaml. Set active: true on exactly one file for auto-discovery.
Full configuration reference
name: "btc_grid_v1"
active: true
exchange:
type: "hyperliquid"
testnet: true
account:
max_allocation_pct: 10.0
grid:
symbol: "BTC"
levels: 10
price_range:
mode: "auto"
auto:
range_pct: 5.0
order_size_usd: 50.0
risk_management:
stop_loss_enabled: false
stop_loss_pct: 10.0
take_profit_enabled: false
take_profit_pct: 20.0
max_drawdown_pct: 15.0
max_position_size_pct: 40.0
rebalance:
enabled: true
price_move_threshold_pct: 12.0
monitoring:
log_level: "INFO"
Conservative BTC example (testnet)
name: "btc_conservative"
active: true
exchange:
type: "hyperliquid"
testnet: true
account:
max_allocation_pct: 5.0
grid:
symbol: "BTC"
levels: 8
price_range:
mode: "auto"
auto:
range_pct: 3.0
order_size_usd: 25.0
risk_management:
stop_loss_enabled: true
stop_loss_pct: 8.0
take_profit_enabled: false
max_drawdown_pct: 10.0
max_position_size_pct: 30.0
rebalance:
enabled: true
price_move_threshold_pct: 10.0
monitoring:
log_level: "INFO"
Python Legacy & Learning Examples
uv sync
uv run src/run_bot.py --validate
uv run src/run_bot.py
Learning examples (educational, testnet only)
uv run learning_examples/01_websockets/realtime_prices.py
uv run learning_examples/02_market_data/get_all_prices.py
uv run learning_examples/04_trading/place_limit_order.py
Common Patterns
Running multiple strategies
Only one config should have active: true for auto-discovery. Use explicit path to run a specific config:
npx tsx ts/src/runBot.ts bots/eth_aggressive.yaml
npx tsx ts/src/runBot.ts bots/btc_conservative.yaml
Switching between testnet and mainnet
HYPERLIQUID_TESTNET=true npm start
HYPERLIQUID_TESTNET=false npx tsx ts/src/runBot.ts bots/btc_live.yaml
Graceful shutdown
Press Ctrl+C — the engine attempts to cancel all open orders before exiting. Always check logs to confirm cancellation completed:
npm start 2>&1 | tee bot.log
grep -i "cancel" bot.log
Validate config without credentials
npm run validate
npx tsx ts/src/validateConfig.ts bots/my_strategy.yaml
Grid Math Concepts
The bot divides a price range into levels equally spaced steps:
price_upper = current_price * (1 + range_pct / 100)
price_lower = current_price * (1 - range_pct / 100)
step = (price_upper - price_lower) / levels
# Buy orders placed at: price_lower, price_lower + step, ..., current_price
# Sell orders placed at: current_price, current_price + step, ..., price_upper
Each fill triggers the opposite order at the adjacent level, capturing the spread repeatedly.
Troubleshooting
Bot exits immediately / no orders placed
- Run
npm run validate first — check YAML syntax errors
- Confirm
.env has the correct private key variable for testnet vs mainnet
- Verify
HYPERLIQUID_TESTNET matches exchange.testnet in YAML
"No active config found"
- Ensure exactly one
bots/*.yaml has active: true
- Or pass explicit path:
npx tsx ts/src/runBot.ts bots/myconfig.yaml
Orders not cancelling on shutdown
- Check logs:
grep -i "cancel\|error" bot.log
- Manually cancel via Hyperliquid UI or API if needed
- Re-run bot briefly then Ctrl+C again
Insufficient balance errors
- Lower
max_allocation_pct or order_size_usd in YAML
- Fund testnet wallet via testnet faucet
TypeScript errors
npx tsc --noEmit
npm test
Python uv not found
curl -LsSf https://astral.sh/uv/install.sh | sh
pip install uv
Project Structure
hyperliquid-trading-bot/
├── bots/ # YAML strategy configs
│ └── btc_conservative.yaml
├── ts/src/ # TypeScript source (primary)
│ ├── runBot.ts # Main entrypoint
│ └── validateConfig.ts # Config validator
├── src/ # Python legacy bot
│ └── run_bot.py
├── learning_examples/ # Educational Python scripts
│ ├── 01_websockets/
│ ├── 02_market_data/
│ └── 04_trading/
├── .env.example # Environment variable template
├── package.json
└── pyproject.toml # Python deps (uv)
Safety Checklist