Agent skill
openmm-portfolio
Balance tracking, order overview, and market data across exchanges using OpenMM.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/portfolio-dvcrn-openclaw-skills-mark
Metadata
Additional technical details for this skill
- openclaw
-
{ "emoji": "\ud83d\udcbc", "install": [ { "bins": [ "openmm" ], "kind": "node", "package": "@3rd-eye-labs/openmm" } ], "requires": { "env": [ "MEXC_API_KEY", "GATEIO_API_KEY", "BITGET_API_KEY", "KRAKEN_API_KEY" ], "bins": [ "openmm" ] } }
SKILL.md
OpenMM Portfolio Management
Track balances, review open orders, and monitor market data across exchanges.
View Balances
# All assets on an exchange
openmm balance --exchange mexc
openmm balance --exchange kraken
# Specific asset
openmm balance --exchange mexc --asset BTC
openmm balance --exchange kraken --asset ADA
openmm balance --exchange bitget --asset USDT
# JSON output
openmm balance --exchange mexc --json
To see balances across all exchanges, query each one:
openmm balance --exchange mexc
openmm balance --exchange gateio
openmm balance --exchange bitget
openmm balance --exchange kraken
Review Open Orders
# All open orders on an exchange
openmm orders list --exchange mexc
# Filter by trading pair
openmm orders list --exchange bitget --symbol SNEK/USDT
# Limit results
openmm orders list --exchange kraken --limit 5
# Get specific order details
openmm orders get --exchange mexc --id 123456 --symbol BTC/USDT
Check Market Prices
# Current price
openmm ticker --exchange mexc --symbol BTC/USDT
openmm ticker --exchange kraken --symbol ADA/EUR
# Order book depth
openmm orderbook --exchange bitget --symbol SNEK/USDT --limit 10
# Recent trades
openmm trades --exchange mexc --symbol ETH/USDT --limit 50
Compare Prices Across Exchanges
# Compare DEX and CEX prices for Cardano tokens
openmm price-comparison --symbol SNEK
openmm price-comparison --symbol INDY
Cardano Token Prices
# Aggregated price from DEX pools
openmm pool-discovery prices NIGHT
openmm pool-discovery prices SNEK
# Discover liquidity pools
openmm pool-discovery discover INDY
openmm pool-discovery discover SNEK --min-liquidity 50000
MCP Tools for Portfolio Overview
When using the MCP server, these tools are relevant for portfolio management:
| Tool | Description |
|---|---|
get_balance |
Get balances for an exchange (all or specific asset) |
list_orders |
List open orders on an exchange |
get_ticker |
Current price for a trading pair |
get_strategy_status |
Grid status with open orders and spread |
get_cardano_price |
Aggregated Cardano token price |
The MCP server also provides a portfolio_overview prompt that automatically summarizes balances and open orders for an exchange.
Tips for Agents
- Check balances before trading — always verify available funds
- Query each exchange separately — there is no cross-exchange aggregate command
- Use
--jsonfor parsing — structured output for programmatic use - Monitor grid strategies — use
get_strategy_statusMCP tool to check active grids
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?