hyperliquid-trading-bot
Trading bot for Hyperliquid DEX
파일 탐색기
- 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
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
git clone
설명 보기 ▼
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
설명 보기 ▼
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
설명 보기 ▼
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
설명 보기 ▼
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:
