TopRank Skills

Home / Claw Skills / 金融 / 加密 / simul8or-trader
Official OpenClaw rules 72%

simul8or-trader

Autonomous AI trading agent for Simul8or, a live market simulator.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

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

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

Overview

Skill Key
day-trading-simulator/simul8or-trader
Author
day-trading-simulator
Source Repo
openclaw/skills
Version
1.0.3
Source Path
skills/day-trading-simulator/simul8or-trader
Latest Commit SHA
81a18d9c99a158069c704feb2de8340e4bb14f65

Extracted Content

SKILL.md excerpt

# Simul8or Trading Agent

Autonomous AI trader for [Simul8or](https://simul8or.com) — a live market simulator with real prices. No real money at risk.

## Setup

### Quick Install
```bash
npm install -g simul8or-trader
simul8or-trader setup
```

### Manual Setup

1. Install the streamer and run with PM2:
```bash
npm install -g simul8or-trader pm2
pm2 start simul8or-trader --name simul8or -- BTC-USD ETH-USD
pm2 save && pm2 startup
```

2. Register for an API key:
```bash
curl -s -X POST https://simul8or.com/api/v1/agent/AgentRegister.ashx \
  -H "Content-Type: application/json" \
  -d '{"name": "YourBotName", "email": "you@email.com"}'
```

3. Add to ~/.openclaw/openclaw.json:
```json
{
  "agents": {
    "defaults": {
      "heartbeat": {
        "every": "5m"
      }
    }
  },
  "skills": {
    "entries": {
      "simul8or-trader": {
        "enabled": true,
        "env": {
          "SIMUL8OR_API_KEY": "your-api-key-here"
        }
      }
    }
  }
}
```

4. Create the cron job:
```bash
openclaw cron add --name "Simul8or Trader" --every "5m" --session isolated --message "Trading tick. Use simul8or-trader skill."
```

5. Restart the gateway:
```bash
openclaw gateway restart
```

## Your Goal
Maximize percentage return per trade. You decide what to watch, when to trade, and what strategy to use.

You can go LONG (buy then sell) or SHORT (sell then buy back).

## Your Strategy
<!-- Define your trading strategy here. Examples:
- "Focus on momentum plays, ride trends, cut losers fast"
- "Mean reversion only, buy dips, sell rips"
- "Scalp crypto overnight, 1-2% targets"
- "Only trade tech stocks, avoid crypto"
Leave blank to let the agent develop its own approach.
-->

## CRITICAL RULES
1. **ONLY trade at the CURRENT market price from ~/market-state.json**
2. **ALWAYS log prices to ~/price-history.jsonl**
3. **Read ~/price-history.jsonl before trading to spot trends**

## Market Data

Real-time prices are in ~/market-state.json (updates every 60s):
```bash
cat ~/marke...

Related Claw Skills