Trade Hyperliquid from the terminal.
A Hyperliquid-first CLI and Python toolkit powered by a Rust core. Search markets, run technical scans, stream live order books, backtest strategies, and scaffold Python trading projects.
| Workflow | What You Get |
|---|---|
| Market discovery | Search and list Hyperliquid spot, default perps, and HIP-3 markets |
| Technical analysis | Single-market reads with RSI, trend, momentum, support, and resistance |
| Market scanning | Ranked terminal scans across a bounded set of markets |
| Live monitoring | Real-time L2 order book view from the Rust WebSocket path |
| Strategy development | Python project scaffolding with a Rust-backed runtime |
| Backtesting | Run strategy backtests against Hyperliquid market data |
python3 -m venv .venv
source .venv/bin/activate
pip install maturin
cd python
maturin develop --release
pip install -e .No project is required for the market-facing commands:
neleus about
neleus market search TSLA --scope hip3
neleus market analyze GAS --scope hip3 --dex flx
neleus market scan --scope perps
neleus market book flx:GAS-PERPWhen you want to write strategy code:
neleus new my_strategy_project
cd my_strategy_project
neleus backtest --strategy momentum
neleus run --mode once --strategy momentum
neleus run --mode daemon --strategy momentumneleus about
neleus market search <query>
neleus market list --scope perps|hip3|all-perps|spot
neleus market analyze <symbol> [--scope ...] [--dex ...]
neleus market scan --scope perps|hip3|all-perps|spot
neleus market book <symbol> [--scope ...] [--dex ...]
neleus new <name>
neleus init
neleus backtest
neleus run --mode once|daemon
neleus strategy list|new|show
neleus db status
neleus db init
neleus info
The full usage guides live in docs/index.md and are
deployed to GitHub Pages.
Run the docs locally:
pip install -r docs/requirements.txt
mkdocs serveBuild the static site:
mkdocs buildThe docs cover:
- installation and local setup
- no-project CLI workflows
- simple market search across perps, HIP-3, and spot
- market search, list, analysis, scan, and live order book usage
- HIP-3 routing details for commands like
neleus market analyze GAS --scope hip3 --dex flx - project scaffolding and strategy commands
- runtime and backtesting
- configuration, database adapters, and Hyperliquid usage notes
Implemented now:
- no-project market search, listing, analysis, scans, and live order book monitoring
- Python project scaffolding
- strategy backtesting
- one-shot and daemon strategy runtimes
- database-backed runtime order/fill monitoring through
TradeMonitor - database schema inspection and initialization through
neleus db statusandneleus db init
Not implemented yet:
- a dedicated
neleus tradecommand separate from the current runtime/core APIs - broader live operations tooling beyond the current trade-monitoring path
- Website: https://neleus.trade
- GitHub: https://github.com/auralshin/neleus
- Docs: https://auralshin.github.io/neleus/
- Docs source: ./docs/index.md
