Funding Rate Trader

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

Findings (0)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

A user or agent could open a real leveraged crypto position, potentially causing rapid financial loss or liquidation.

Why it was flagged

Running the trader can use up to 90% of available USDT, set 20x leverage, and place a real Binance Futures market order without an explicit confirmation or dry-run default.

Skill content
const size = Math.min(available * 0.9, 100); await exchange.setLeverage(CONFIG.LEVERAGE, best.symbol + '/USDT:USDT'); ... await exchange.createOrder(best.symbol + '/USDT:USDT', 'market', 'buy', qty, null, { positionSide: 'LONG' });
Recommendation

Default to scan-only or testnet/dry-run mode, require explicit human confirmation before every order, set conservative position caps, and clearly show the exact order before submission.

What this means

If the provided Binance key has broad permissions, the skill can exercise significant account authority for futures trading.

Why it was flagged

The skill reads a persistent local Binance API key and secret for futures trading. This is purpose-aligned, but the artifacts do not clearly bound required key permissions, and the registry metadata declares no primary credential.

Skill content
const keyPath = process.env.HOME + '/.openclaw/secrets/binance.json'; ... apiKey: keys.apiKey, secret: keys.secret, options: { defaultType: 'future' }
Recommendation

Declare the Binance credential requirement in metadata and documentation, recommend a restricted API key with withdrawals disabled, use IP restrictions where possible, and document the exact permissions needed.

What this means

Users may underestimate the chance of losses and allow automated leveraged trades based on unrealistic expectations.

Why it was flagged

The documentation advertises very high expected annual returns. Although it includes a risk warning, these claims could make users over-trust a high-leverage, non-guaranteed trading strategy.

Skill content
| $100 | $5-15 | 1800-5400% | ... | $1000 | $50-150 | 1800-5400% |
Recommendation

Remove or heavily qualify return projections, explain liquidation/slippage/fees and directional exposure, and avoid presenting the strategy as low-risk arbitrage.

What this means

The skill may fail to run or require users to install an unspecified dependency, which matters more because the dependency handles trading API calls.

Why it was flagged

The runtime depends on the external ccxt package, but no install spec, package manifest, or pinned dependency version is provided. This is expected for Binance trading but under-specified.

Skill content
const ccxt = require('ccxt');
Recommendation

Provide a package.json and lockfile or a clear pinned installation step for ccxt, and document the expected Node.js runtime.