hyperliquid-trading-bot
Trading bot for Hyperliquid DEX
File Explorer
- btc_conservative.yaml
- realtime_prices.py
- realtime_prices_multiple_subs.py
- get_all_prices.py
- get_market_metadata.py
- get_open_orders.py
- get_user_state.py
- cancel_orders.py
- place_limit_order.py
- check_spot_perp_pairs_availability.py
- get_funding_rates.py
- README.md
- cancel_order.py
- cancel_orders.py
- cancel_twap_order.py
- modify_order.py
- modify_orders.py
- place_order.py
- place_orders_limit.py
- place_twap_order.py
- mirror_spot_orders.py
- mirror_spot_twap_orders.py
- print_parsed_user_events.py
- print_raw_websocket_messages.py
- __init__.py
- endpoint_router.py
- engine.py
- enhanced_config.py
- key_manager.py
- risk_manager.py
- __init__.py
- adapter.py
- market_data.py
- routing_info.py
- __init__.py
- __init__.py
- exchange.py
- strategy.py
- __init__.py
- basic_grid.py
- __init__.py
- __init__.py
- events.py
- exceptions.py
- __init__.py
- run_bot.py
- .env.example
- .gitignore
- .python-version
- AGENTS.md
- CLAUDE.md
- LICENSE
- pyproject.toml
- README.md
- uv.lock
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
uv add
View Details ▼
uv add
Add package dependencies to the `pyproject.toml` file.
Packages are specified according to <https://peps.python.org/pep-0508/>.
uv add {{package}}
Add the latest version of a package:
uv add {{package1 package2 ...}}
Add multiple packages:
uv add {{package>=1.2.3}}
Add a package with a version requirement:
uv run
View Details ▼
uv run
Run a command or script in the project environment.
uv run {{path/to/script.py}}
Run a Python script:
uv run {{[-m|--module]}} {{module_name}}
Run a Python module:
uv run {{[-w|--with]}} {{package}} {{command}}
Run a command with additional packages installed temporarily:
uv sync
View Details ▼
uv sync
Update the project's environment to match the lockfile.
uv sync
Sync the project environment with the lockfile:
uv sync --all-extras
Sync and include all optional dependencies:
uv sync --extra {{extra_name}}
Sync with specific optional dependencies:
