btse-placing-orders

btse-placing-orders is a skill for Claude Code, Codex from xbotlive/btse-mcp. It costs 30 tokens per session (1,135 once invoked), scanned A, original, MIT.

A BTSE futures-trading workflow for placing, changing, and cancelling orders. It covers market, limit, and OCO orders; OCO means one order that combines take-profit and stop-loss instructions.

In plain words
What is it for?
Use it to prepare and manage BTSE futures orders, including safe market-order checks, limit orders, and combined take-profit and stop-loss orders.
Why use it?
It adds checks before placing an order, including the expected market, account exposure, order details, and explicit user confirmation. This is intended to reduce mistakes with orders that cannot be undone after filling.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to prepare and manage BTSE futures orders, including safe market-order checks, limit orders, and combined take-profit and stop-loss orders.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/xbotlive/btse-mcp/btse-placing-orders
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add xbotlive/btse-mcp --skill btse-placing-orders
Clone the repo
git clone --depth 1 https://github.com/xbotlive/btse-mcp

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for btse-placing-orders

README.md
[![agentmods](https://agentmods.dev/badge/skills/xbotlive/btse-mcp/btse-placing-orders/github.svg)](https://agentmods.dev/skills/xbotlive/btse-mcp/btse-placing-orders)
Your own site
<a href="https://agentmods.dev/skills/xbotlive/btse-mcp/btse-placing-orders"><img src="https://agentmods.dev/badge/skills/xbotlive/btse-mcp/btse-placing-orders/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for btse-placing-orders

Your own site · 80×15
<a href="https://agentmods.dev/skills/xbotlive/btse-mcp/btse-placing-orders"><img src="https://agentmods.dev/badge/skills/xbotlive/btse-mcp/btse-placing-orders.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,135 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00030 $0.01135
Opus 5 $0.00015 $0.00567
Sonnet 5 $0.00006 $0.00227
Haiku 4.5 $0.00003 $0.00113

Measured 9d ago against content hash de83da2371d8, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

btse-placing-orders scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/btse-placing-orders/SKILL.md · 162 lines

How it starts

The opening of the file, as written. The whole thing — 162 lines — stays where its author put it; the contents beside it link to each section on GitHub.

BTSE Placing Orders

Orders are irreversible once filled. Always follow the pre-flight checklist.


Pre-Flight Checklist (Every Order)

  1. Confirm environment — call btse_get_price("BTC-PERP") and check the price is realistic for testnet vs live
  2. Check account — call btse_account_overview() to see balance and existing exposure
  3. State the order to the user — symbol, side, size, type, price (if limit)
  4. Get explicit confirmation before calling any order tool
  5. Use the place_order_guide prompt for a fully guided flow

Order Types

Type When to use Required fields
MARKET Fill immediately at best available price symbol, side, size
LIMIT Fill at a specific price or better symbol, side, size, price
OCO One-Cancels-Other: TP + SL in one order symbol, side, size, take_profit_price, stop_loss_price

Placing a Market Order (Safe Method)

Always prefer this over btse_create_order for market orders:

btse_safe_market_order(
  symbol="BTC-PERP",
  side="BUY",
  size=0.01,
  expected_price=85000,   # price you're expecting to fill near
  max_slippage_pct=0.5,   # abort if market has moved more than 0.5%
  reduce_only=False
)

If the current price is more than max_slippage_pct away from expected_price, the order is not submitted and an error is returned. Ask the user to confirm the new price before retrying.


Placing a Limit Order

btse_create_order(
  symbol="BTC-PERP",
  side="BUY",
  order_type="LIMIT",
  size=0.01,
  price=84000,
  time_in_force="GTC",   # GTC | IOC | FOK | DAY | WEEK | MONTH
  post_only=False,
  reduce_only=False
)

Placing an OCO Order

btse_create_order(
  symbol="BTC-PERP",
  side="SELL",
  order_type="OCO",
  size=0.01,
  take_profit_price=90000,
  stop_loss_price=80000
)

Viewing Orders

# All open orders (optionally filter by symbol)
btse_get_open_orders(symbol="BTC-PERP")

# Single order by ID
btse_get_order(order_id="abc123")
btse_get_order(cl_order_id="my-custom-id")

# Trade fill history
btse_get_trade_history(symbol="BTC-PERP", count=20)

Read the full file on GitHub · 162 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 162 lines · 30 tokens per session scan A de83da2371d8

Subscribe to this mod's changes

btse-placing-orders is a skill published in the GitHub repository xbotlive/btse-mcp (0 stars, last pushed 6mo ago), licensed MIT. It adds 30 tokens to every session and 1,135 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories