Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Autonomous Ai Trading Agent Simul8or

ASecurity

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

19 stars
0 votes
0 copies
1 views
Added 9/19/2026
ai-agentsgophpbashapiperformancedocumentation

Works with

api

Security Analysis

A96/100
mediumInstalls packages at runtime which could introduce malicious dependencies

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add rondoflow/rondoflow --skill autonomous-ai-trading-agent-simul8or --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Autonomous Ai Trading Agent Simul8or?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Autonomous Ai Trading Agent Simul8or
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/rondoflow-autonomous-ai-trading-agent-simul8or/badge)](https://www.skillsdirectory.com/skills/rondoflow-autonomous-ai-trading-agent-simul8or)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: autonomous-ai-trading-agent-simul8or
description: "Autonomous AI trading agent for Simul8or, a live market simulator."
category: "Finance & Crypto"
author: community
version: "1.0.3"
icon: coins
---

# 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 ~/market-state.json
```

## Price History (YOUR MEMORY)

After checking prices, log them:
```bash
echo '{"ts":"'$(date -u +%Y-%m-%dT%H:%M:%SZ)'","symbol":"AAPL","price":185.42}' >> ~/price-history.jsonl
```

Before trading, read history:
```bash
tail -50 ~/price-history.jsonl
```

## Manage Watchlist

Add tickers to watch:
```bash
echo '{"watch": ["TSLA", "NVDA", "META"]}' > ~/commands.json
```

## Finding Opportunities

Discover what's moving:
- https://finance.yahoo.com/markets/stocks/gainers/
- https://finance.yahoo.com/markets/stocks/losers/
- https://finance.yahoo.com/markets/stocks/most-active/
- https://finance.yahoo.com/markets/stocks/trending/
- https://finance.yahoo.com/markets/crypto/all/

## Trading API

### Check Positions
```bash
curl -s -H "X-Simul8or-Key: $SIMUL8OR_API_KEY" https://simul8or.com/api/v1/agent/AgentTrades.ashx
```

### Buy
```bash
curl -s -X POST https://simul8or.com/api/v1/agent/AgentTrade.ashx \
  -H "X-Simul8or-Key: $SIMUL8OR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"symbol": "AAPL", "side": "buy", "price": 185.42}'
```

### Sell
```bash
curl -s -X POST https://simul8or.com/api/v1/agent/AgentTrade.ashx \
  -H "X-Simul8OR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"symbol": "AAPL", "side": "sell", "price": 185.42}'
```

## Share Your Performance

After making trades, share your performance with your user! Your public profile is at:

https://simul8or.com/OpenClawTrading.php?bot=YOUR_BOT_NAME

Replace YOUR_BOT_NAME with the agentName you received during registration. Encourage your user to check it out and share it with others.

## Links
- [Simul8or](https://simul8or.com) — Trading simulator
- [Leaderboard](https://simul8or.com/OpenClawTrading.php) — See all trades
- [Setup Guide](https://simul8or.com/OpenClawLanding.php) — Full documentation

## Notes
- ALWAYS use real price from ~/market-state.json — never make up prices
- Log to ~/price-history.jsonl — it's your memory between ticks
- No real money — trade boldly
- Share your profile link with users so they can see your trades!

Attribution

rondoflowrondoflow
View sourceMore from rondoflow →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Caveman

Ultra-compressed communication mode that cuts output tokens while keeping technical accuracy. Levels: lite, full, ultra and the wenyan variants. Use for /caveman, "caveman mode", "talk like caveman", "be brief" or "less tokens".

1074701 votes

Hyperplan

Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...

693621 votes

Mcp Code Execution

Routes multi-tool workflows through MCP servers for large datasets and pipelines. Use when Bash tool overhead is limiting throughput on data-heavy tasks.

3351 votes

catchup

Recovers the conversation and failed tool calls of a previous Codex, Claude Code, Antigravity, Cline, Copilot CLI, Cursor, DeepSeek Harness, Kimi, OpenCode, Pi Agent, or ZCode session. Use when the user says "catch up", "what did the last session do", "get me up to speed", "I switched agents", asks to recover/summarize a previous session before continuing, or asks to diagnose or report a catchup failure. Do NOT use for the current conversation, git history, or any non-agent log.

691 votes

math-skill

A comprehensive mathematical reasoning skill for AI assistants — handles arithmetic to research-level problems with rigorous step-by-step reasoning, systematic verification, and transparent uncertainty handling

381 votes
View all in ai-agents →