ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

Claw Trader Lite

Skill by nickymick8

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/nickymick8/claw-trader-lite
Or

To create the file yourself:

# Create the directory

mkdir -p ~/.openclaw/workspace/skills/claw-trader-lite

# Create the file

cat > ~/.openclaw/workspace/skills/claw-trader-lite/SKILL.md << 'EOF'


name: claw-trader-lite

description: |

  Free read-only market monitoring for Hyperliquid and LN Markets.

  Track real-time prices, view public balances, and monitor positions

  across DeFi and Bitcoin derivatives platforms. Zero private keys required.

env:

  HYPERLIQUID_ACCOUNT_ADDRESS:

  description: "Optional: Your Hyperliquid wallet address to view balance/positions (e.g., 0x...)"

  required: false


# Claw Trader Lite

**Free read-only market intelligence for Hyperliquid and LN Markets.**

Monitor real-time prices, track your portfolio, and view positions across DeFi and Bitcoin derivatives platforms. Perfect for keeping tabs on your trades without execution risk.


## What It Does

Claw Trader Lite provides **read-only** access to market data and account information. It can view prices, balances, and positions but **cannot execute trades**—making it safe to use anywhere.

### Platforms Supported

- **Hyperliquid** - DeFi perpetuals (ETH, SOL, AVAX, and 100+ altcoins)

- **LN Markets** - Bitcoin derivatives via Lightning Network


## Key Features

✅ **Real-Time Price Feeds** - Live market data for BTC, ETH, SOL, and major assets

✅ **Portfolio Overview** - View balances and open positions at a glance

✅ **Zero Risk** - Read-only access, no private keys or API secrets needed

✅ **Lightweight** - Minimal dependencies, runs anywhere

✅ **Free Forever** - No costs, no limits, no catch


## Installation


pip install requests





Quick Start



from claw\_lite import create\_monitor



\# Create monitor

monitor = create\_monitor()



\# Check current prices

btc\_price = monitor.get\_price("BTC", "lnmarkets")

eth\_price = monitor.get\_price("ETH", "hyperliquid")

sol\_price = monitor.get\_price("SOL", "hyperliquid")



print(f"BTC: ${btc\_price:,.2f}")

print(f"ETH: ${eth\_price:,.2f}")

print(f"SOL: ${sol\_price:,.2f}")





Usage Examples



Get Single Asset Price



\# Bitcoin price from LN Markets

btc\_price = monitor.get\_price("BTC", "lnmarkets")



\# Ethereum price from Hyperliquid

eth\_price = monitor.get\_price("ETH", "hyperliquid")



Get Multiple Prices



assets = \["BTC", "ETH", "SOL", "AVAX"]

prices = monitor.get\_prices(assets, "hyperliquid")



for asset, price in prices.items():

&nbsp;   print(f"{asset}: ${price:,.2f}")



View Account Balance (Hyperliquid)



Note: Requires setting your public wallet address



export HYPERLIQUID\_ACCOUNT\_ADDRESS="0xYourAddressHere"



balanc...

Metadata

Stars1335
Views0
Updated2026-02-23
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-nickymick8-claw-trader-lite": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.