TopRank Skills

Official OpenClaw rules 54%

kalshi

Trade on Kalshi prediction markets (CFTC-regulated prediction market exchange). Check portfolio, search markets, analyze orderbooks, place/cancel orders. Use when working with Kalshi API, trading binary contracts, checking market prices, managing positions, or researching prediction markets on politics, economics, crypto, weather, sports, technology events.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 kalshi 技能。 若已安装,则直接安装 kalshi 技能。

Overview

Skill Key
ghsmc/kalshi-trading
Author
ghsmc
Source Repo
openclaw/skills
Version
-
Source Path
skills/ghsmc/kalshi-trading
Latest Commit SHA
2d9ac6b16a31bfdd4cc4e1b2ddd4bded036905c4

Extracted Content

SKILL.md excerpt

# Kalshi

Trade on Kalshi prediction markets via a self-contained CLI script. Supports market search, portfolio tracking, and full order lifecycle (place/cancel/monitor).

## Quick Start

All commands route through a single script. Output is JSON.

## CLI

**Primary script:**

```bash
{baseDir}/scripts/kalshi-cli.mjs <command> [args...]
```

**Helper script:**

```bash
{baseDir}/scripts/quick-analysis.mjs <ticker>
```

Combines market details + orderbook in a single call for fast analysis.

## Commands

| Command                                   | Description                                      |
| ----------------------------------------- | ------------------------------------------------ |
| `balance`                                 | Get account balance (cash + portfolio value)     |
| `portfolio`                               | Get balance + all open positions                 |
| `trending`                                | Top markets by 24h volume                        |
| `search <query>`                          | Search markets by keyword                        |
| `market <ticker>`                         | Get details for a single market                  |
| `orderbook <ticker>`                      | Get bid/ask levels for a market                  |
| `buy <ticker> <yes\|no> <count> <price>`  | Place a buy order (price in cents 1-99)          |
| `sell <ticker> <yes\|no> <count> <price>` | Place a sell order (price in cents 1-99)         |
| `cancel <orderId>`                        | Cancel a resting order                           |
| `orders [resting\|canceled\|executed]`    | List orders, optionally filtered by status       |
| `fills [ticker]`                          | List recent fills, optionally filtered by ticker |

## Examples

```bash
# Check balance
{baseDir}/scripts/kalshi-cli.mjs balance

# See what's trending
{baseDir}/scripts/kalshi-cli.mjs trending

# Search for markets about bitcoin
{baseDir}/scripts/kalshi-cli.mjs search "bitcoin"...

Related Claw Skills