axe
Reference

CLI Reference

Command-line reference for the Hyperliquid intelligence module that powers Axe's perps cockpit.

All commands support both local and remote backends. Set HLQ_BACKEND_URL to use a remote endpoint.

Search for traders matching a natural language query.

hlq search "<query>" [OPTIONS]
OptionDefaultDescription
--top N50Maximum results to return
--format json|tabletableOutput format
--dry-runoffCompile SQL without executing
--address 0x... / -aExplicit address to analyze (repeatable)

Examples:

# Basic search
hlq search "high leverage BTC traders"
 
# Dry-run with JSON output
hlq search "riskiest ETH traders right now" --dry-run --format json
 
# Target specific addresses (skips ANN shortlist)
hlq search "risk profile" -a 0xabc... -a 0xdef...
 
# Multi-coin comparison
hlq search "compare BTC vs SOL trader risk profiles"
 
# Screening with thresholds
hlq search "low risk consistent BTC traders max risk score 3.5 at least 20 active days"

Supported intent families:

IntentExample queries
similarity"find BTC traders", "traders like 0x..."
risk_regime"high leverage risky traders", "risk regime leverage 4x"
copy_lag"copy trading BTC followers", "detect copy lag 3 days"
anomaly"anomalous trading behavior on HYPE"
whale_ranking"top BTC whale by largest position"
screening"low risk consistent active traders"
counterfactual"what if trader had used tighter stops"
strategy_comparison"strategy comparison between traders"
help"what kinds of queries can I run?"

hlq trader

Get trader profile and analysis.

hlq trader <address> [OPTIONS]
OptionDefaultDescription
--window 30d30dAnalysis window
--formattableOutput format

hlq copytrade detect

Detect copy-trading relationships.

hlq copytrade detect [OPTIONS]
OptionDefaultDescription
--leader 0x...Leader address
--follower 0x...Follower address
--lag 1d1dLag window
--formattableOutput format
--dry-runoffCompile SQL without executing

Example:

hlq copytrade detect --leader 0xabc... --follower 0xdef... --lag 3d --dry-run

hlq risk screen

Screen traders by risk criteria.

hlq risk screen [OPTIONS]
OptionDefaultDescription
--typeleverageRisk type (leverage, liquidation, margin)
--threshold4.0Risk threshold value
--formattableOutput format

hlq bridge status

Show bridge health, version, and artifact checksums.

hlq bridge status [--format json]

Returns: version, format version, created date, action/ANN/template counts, checksum status, health verdict with narrative.

hlq schema

Print JSON schema for agent self-discovery.

hlq schema

Returns tool definitions suitable for LLM function-calling integration.

On this page