fintool adds stock and prediction market trading to OpenClaw agents

What fintool does
fintool is an OpenClaw skill that gives AI agents the ability to trade financial instruments. Once installed, agents can execute trades on multiple platforms and access market intelligence.
Installation
To install, tell your agent: Read https://raw.githubusercontent.com/second-state/fintool/refs/heads/main/skills/install.md and install the fintool skill.
Available commands
After installation, your agent can execute these commands:
$ hyperliquid buy ETH --amount 0.5 --price 2100 --json$ binance sell BTC --amount 0.01 --price 68000 --json$ polymarket buy will-bitcoin-hit-100k --outcome yes --amount 50 --price 0.65$ fintool quote GOLD
All commands support --json flag for clean agent integration.
Features
- Spot and perpetual trading
- Deposits and withdrawals
- Prediction market trading
- Market intelligence including quotes, news, and SEC filings with LLM analysis
Technical details
Written in Rust with single binary per exchange, no Python or Node.js dependencies. Open source at GitHub: https://github.com/second-state/fintool
Use case
Since agents can read market data and execute trades, you can describe trading strategies in natural language and let the agent monitor prices, react to news, and manage positions autonomously.
📖 Read the full source: r/clawdbot
👀 See Also

Rudel: Open-source analytics for Claude Code sessions
Rudel is an open-source analytics tool that analyzes Claude Code sessions, providing insights from 1,573 real sessions with 15M+ tokens and 270K+ interactions. It reveals patterns like 4% skills usage, 26% abandonment rates, and error cascade patterns.

ClaudeClaw: Free Claude Code Plugin for Persistent AI Agents on Messaging Platforms
ClaudeClaw is a free, open-source MIT-licensed Claude Code plugin that runs Claude as a persistent agent on Slack, WhatsApp, and Telegram. It requires Node.js 20+, Claude Code, and your own Anthropic API key, with OS-level sandbox isolation via Anthropic's sandbox-runtime.

Claude Code HUD: Terminal Dashboard for Monitoring AI Coding Sessions
claude-code-hud is a terminal dashboard that provides real-time monitoring for Claude Code sessions, showing context window usage, API rate limits, and file changes without requiring an IDE. Run it with npx claude-code-hud.

Running Two Claude Code Agents on the Same Repo with Git Worktrees
A Reddit user details how to run multiple Claude Code agents in parallel on the same codebase using git worktrees, avoiding file conflicts and enabling independent agent sessions.