skills$openclaw/maxxit-lazy-trading
abhi1520034.8k

by abhi152003

maxxit-lazy-trading – OpenClaw Skill

maxxit-lazy-trading is an OpenClaw Skills integration for coding workflows. Execute perpetual trades on Ostium via Maxxit's Lazy Trading API

4.8k stars8.0k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namemaxxit-lazy-trading
descriptionExecute perpetual trades on Ostium via Maxxit's Lazy Trading API OpenClaw Skills integration.
ownerabhi152003
repositoryabhi152003/maxxit-lazy-trading
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @abhi152003/maxxit-lazy-trading
last updatedFeb 7, 2026

Maintainer

abhi152003

abhi152003

Maintains maxxit-lazy-trading in the OpenClaw Skills directory.

View GitHub profile
File Explorer
3 files
.
_meta.json
293 B
README.md
1.2 KB
SKILL.md
3.8 KB
SKILL.md

emoji: 📈 name: maxxit-lazy-trading version: 1.0.0 author: Maxxit description: Execute perpetual trades on Ostium via Maxxit's Lazy Trading API homepage: https://maxxit.ai repository: https://github.com/Maxxit-ai/maxxit-latest requires: env: - MAXXIT_API_KEY - MAXXIT_API_URL

Maxxit Lazy Trading

Execute perpetual futures trades on Ostium protocol through Maxxit's Lazy Trading API. This skill enables automated trading based on signals you send programmatically.

When to Use This Skill

  • User wants to execute trades on Ostium
  • User wants to send trading signals programmatically
  • User asks about their lazy trading account details
  • User mentions "lazy trade", "perps", "perpetuals", or "futures trading"
  • User wants to automate their trading workflow

Authentication

All requests require an API key with prefix lt_. Pass it via:

  • Header: X-API-KEY: lt_your_api_key
  • Or: Authorization: Bearer lt_your_api_key

API Endpoints

Get Account Details

Retrieve lazy trading account information including agent status, Telegram connection, and trading preferences.

curl -L -X GET "${MAXXIT_API_URL}/api/lazy-trading/programmatic/club-details" \
  -H "X-API-KEY: ${MAXXIT_API_KEY}"

Response:

{
  "success": true,
  "user_wallet": "0x...",
  "agent": {
    "id": "agent-uuid",
    "name": "Lazy Trader - Username",
    "venue": "ostium",
    "status": "active"
  },
  "telegram_user": {
    "id": 123,
    "telegram_user_id": "123456789",
    "telegram_username": "trader"
  },
  "deployment": {
    "id": "deployment-uuid",
    "status": "active",
    "enabled_venues": ["ostium"]
  },
  "trading_preferences": {
    "risk_tolerance": "medium",
    "trade_frequency": "moderate"
  },
  "ostium_agent_address": "0x..."
}

Send Trading Signal

Send a trading signal/message that will be processed by your lazy trading agent.

curl -L -X POST "${MAXXIT_API_URL}/api/lazy-trading/programmatic/send-message" \
  -H "X-API-KEY: ${MAXXIT_API_KEY}" \
  -H "Content-Type: application/json" \
  -d '{"message": "Long BTC 10x leverage, entry 65000, TP 70000, SL 62000"}'

Request Body:

{
  "message": "Your trading signal text"
}

Response:

{
  "success": true,
  "message_id": "api_0x..._1234567890_abc123",
  "post_id": 456
}

Signal Format Examples

The lazy trading system processes natural language trading signals. Here are examples:

Opening Positions

  • "Long ETH with 5x leverage, entry at 3200"
  • "Short BTC 10x, TP 60000, SL 68000"
  • "Buy 100 USDC worth of ETH perpetual"

With Risk Management

  • "Long SOL 3x leverage, entry 150, take profit 180, stop loss 140"
  • "Short AVAX 5x, risk 2% of portfolio"

Closing Positions

  • "Close ETH long position"
  • "Take profit on BTC short"

Environment Variables

VariableDescriptionExample
MAXXIT_API_KEYYour lazy trading API key (starts with lt_)lt_abc123...
MAXXIT_API_URLMaxxit API base URLhttps://maxxit.ai

Error Handling

Status CodeMeaning
401Invalid or missing API key
404Lazy trader agent not found (complete setup first)
400Missing or invalid message
405Wrong HTTP method
500Server error

Getting Started

  1. Set up Lazy Trading: Visit https://maxxit.ai/lazy-trading to connect your wallet and configure your agent
  2. Generate API Key: Go to your dashboard and create an API key
  3. Configure Environment: Set MAXXIT_API_KEY and MAXXIT_API_URL
  4. Start Trading: Use this skill to send signals!

Security Notes

  • Never share your API key
  • API keys can be revoked and regenerated from the dashboard
  • All trades execute on-chain with your delegated wallet permissions
README.md

Maxxit Lazy Trading Skill

Execute perpetual futures trades on Ostium protocol through Maxxit's Lazy Trading API.

Installation

Via ClawHub CLI

npx clawhub@latest install maxxit-lazy-trading

Manual Installation

Copy the maxxit-lazy-trading folder to:

  • Global: ~/.openclaw/skills/
  • Workspace: <project>/skills/

Configuration

Set these environment variables:

export MAXXIT_API_KEY="lt_your_api_key_here"
export MAXXIT_API_URL="https://maxxit.ai"

Quick Start

  1. Get an API Key:

  2. Configure: Set environment variables

  3. Use: Ask your assistant to send trading signals!

Example Usage

"Send a trading signal: Long ETH 5x leverage at 3200"

"Check my lazy trading account status"

"Execute a short on BTC with 10x leverage, TP 60000, SL 68000"

Supported Venues

  • Ostium - Perpetual futures on Arbitrum

Links

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

- Never share your API key - API keys can be revoked and regenerated from the dashboard - All trades execute on-chain with your delegated wallet permissions

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install maxxit-lazy-trading?

Run openclaw add @abhi152003/maxxit-lazy-trading in your terminal. This installs maxxit-lazy-trading into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/abhi152003/maxxit-lazy-trading. Review commits and README documentation before installing.