Token导航 LogoToken导航TokenDH.com
效率external-serviceclawhub未标认证来源可访问clear审计通过

paradex-strategy-builderParadex 战略制定者

Agent Skill

paradex-strategy-builder 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,446

周安装

104

GitHub Stars

公开资料未说明

下载量

857
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:paradex-strategy-builder(Paradex 战略制定者)
来源仓库:https://github.com/sv/paradex-strategy-builder
安装命令:
openclaw skills install paradex-strategy-builder
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install paradex-strategy-builder

简介

使用 MCP 工具设计和回测 Paradex 交易策略。

  • 将自然语言策略描述转化为结构化实现。
  • 支持策略推理和性能评估功能。paradex-strategy-builder 属于效率类 Skill,可作为该场景下的辅助能力补充。
  • 需要确认策略执行和回测环境权限。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 建议了解策略模板和风险控制机制。

SKILL.md

name
paradex-strategy-builder
description
>

Paradex Strategy Builder

Translates trading ideas into structured, testable strategy specifications. Uses Paradex MCP tools for historical data analysis and validation.

Important Boundary

This skill produces strategy designs and historical analysis — it does NOT execute trades. If the user wants to execute, point them to the Paradex MCP order management tools (available when authenticated) or the paradex-py SDK.

Available MCP Tools for Strategy Development

ToolStrategy use
paradex_klinesHistorical price data for backtesting signals
paradex_tradesTrade flow analysis for entry timing
paradex_orderbookLiquidity analysis for execution planning
paradex_funding_dataFunding rate history for carry strategies
paradex_market_summariesCross-market screening for opportunity detection
paradex_marketsTick sizes, position limits, min order sizes for realistic sizing
paradex_bboCurrent spread for execution cost estimation

Strategy Design Process

Step 1: Capture the Idea

Extract from the user's description:

  • Market(s): Which Paradex market(s)? Or cross-market?
  • Thesis: What market behavior does this exploit?
  • Direction: Long-only, short-only, or both?
  • Timeframe: Scalping (minutes), intraday (hours), swing (days), carry (weeks)?
  • Edge source: Technical (price patterns), structural (funding), statistical (mean reversion)?

If the user's description is vague, ask clarifying questions. If they want a template, offer one from the catalog below.

Step 2: Define Rules

Structure every strategy as:

STRATEGY: [Name]
MARKET: [market_id]
TIMEFRAME: [resolution for signals]

ENTRY RULES:
- Condition 1: [specific, measurable]
- Condition 2: [specific, measurable]
- Entry type: [market/limit] at [price logic]
- Position size: [sizing rule]

EXIT RULES:
- Take profit: [condition or price level]
- Stop loss: [condition or price level]
- Time stop: [max holding period if applicable]
- Trailing stop: [if applicable]

RISK PARAMETERS:
- Max position size: [in base currency and USD]
- Max loss per trade: [dollar or percentage]
- Max concurrent positions: [number]
- Max daily loss: [dollar or percentage, then halt]

FILTERS:
- Only trade when: [market regime, volume, spread conditions]
- Avoid when: [conditions that invalidate the edge]

Step 3: Historical Validation

Use MCP data to check if the strategy would have worked:

  1. Fetch historical data: paradex_klines for the relevant period and resolution
  2. Compute signals: apply the entry/exit rules to historical data
  3. Count opportunities: how many entry signals in the lookback period?
  4. Check market context: were the conditions favorable? (volatility, volume, spreads)
  5. Estimate outcomes: for each signal, what would P&L have been?

Note: This is NOT a rigorous backtest — it's a sanity check. True backtesting requires accounting for fills, slippage, fees, and execution timing that we can't precisely simulate from kline data alone.

What to report:

  • Number of signals generated in lookback period
  • Win rate (% of signals where take-profit would have hit before stop-loss)
  • Average winner size vs. average loser size
  • Maximum consecutive losses
  • Estimated total P&L (gross, before fees/slippage)
  • Fee impact estimate (from trader profile rates)
  • Realistic P&L estimate (after estimated fees and slippage)

Step 4: Execution Planning

Using paradex_markets and paradex_orderbook:

  • Position sizing: respect min_notional, order_size_increment, max_order_size
  • Spread cost: current spread as % of expected profit per trade
  • Slippage estimate: from orderbook depth vs. intended order size
  • Fee impact: retail (zero for retail profile) vs. pro rates
  • Price bands: ensure limit prices stay within price_bands_width of mark price

Strategy Templates

Template 1: Funding Rate Arbitrage

Thesis: Collect funding payments by taking the opposite side of crowded positions.

Implementation:

  1. Scan all markets via paradex_market_summaries for extreme funding rates
  2. Enter a position opposite to the funding direction (if funding is positive, go short to receive)
  3. Hedge directional risk (if desired) via correlated asset or options
  4. Exit when funding normalizes or trade becomes unprofitable

Key data:

  • paradex_funding_data: historical funding to check if rates are mean-reverting
  • paradex_market_summaries: current rates across all markets for screening
  • 8h funding rate × 3 = daily rate × 365 = annualized rate

Risk factors:

  • Funding rates can reverse quickly — you pay what you were collecting
  • Directional exposure means price moves can overwhelm funding income
  • Works best in ranging markets with persistent funding imbalance

Template 2: Mean Reversion

Thesis: Prices tend to revert to a mean after overextension.

Implementation:

  1. Calculate Bollinger Bands (20-period, 2σ) from klines
  2. Enter long when price touches lower band + RSI < 30
  3. Enter short when price touches upper band + RSI > 70
  4. Target: middle band (20-period SMA)
  5. Stop: 1.5 ATR beyond entry

Key data:

  • paradex_klines: compute bands, RSI, ATR
  • paradex_orderbook: check liquidity at entry/exit levels

Risk factors:

  • Trending markets destroy mean reversion — use regime filter
  • Requires tight stops which get hit frequently in volatile markets

Template 3: Momentum / Trend Following

Thesis: Strong moves tend to continue.

Implementation:

  1. Detect breakout: price closes above 20-period high with volume > 1.5x average
  2. Enter on breakout confirmation (2 consecutive closes above level)
  3. Trail stop: 2 ATR below highest close since entry
  4. No fixed take-profit — let winners run, trail protects

Key data:

  • paradex_klines: price highs, volume
  • paradex_trades: confirm volume spike is real trades, not wash

Risk factors:

  • Many false breakouts in ranging markets
  • Requires patience — low win rate, large winners

Template 4: Grid Trading

Thesis: Profit from price oscillation within a range.

Implementation:

  1. Define range: support at $X, resistance at $Y (from kline analysis)
  2. Place buy orders at N evenly spaced levels from support to midpoint
  3. Place sell orders at N evenly spaced levels from midpoint to resistance
  4. Each buy has a corresponding sell (take-profit) a grid step higher
  5. Each sell has a corresponding buy (take-profit) a grid step lower

Key data:

  • paradex_klines: identify the range bounds
  • paradex_markets: min_notional and tick_size for grid spacing
  • paradex_orderbook: ensure grid levels have liquidity

Risk factors:

  • Range breakouts cause significant losses on one side
  • Capital-intensive — funds spread across many open orders
  • Best for ranging, low-volatility periods

Template 5: Basis Trading (Spot vs. Perp)

Thesis: Exploit price differences between spot and perpetual markets.

Implementation:

  1. Monitor basis: perp_price - underlying_price (from market_summaries)
  2. When basis is high (perp premium): short perp, long spot equivalent
  3. When basis is low (perp discount): long perp, short spot equivalent
  4. Collect funding while basis normalizes

Key data:

  • paradex_market_summaries: mark_price vs underlying_price
  • paradex_funding_data: funding rate trend
  • Requires spot market access (Paradex supports spot trading)

Risk factors:

  • Basis can widen before converging
  • Execution risk: need to enter both legs simultaneously

Output Format

Strategy Specification

## Strategy: [Name]
### Thesis
[1-2 sentences: what market behavior does this exploit?]

### Rules
[Structured entry/exit/risk rules as above]

### Historical Check
[Results from validation using MCP data]

### Execution Notes
[Practical considerations: fees, sizing, spread costs]

### Risk Summary
- Max expected loss per trade: $X
- Win rate estimate: X%
- Key risk: [biggest thing that can go wrong]
- Kill condition: [when to abandon the strategy entirely]

Caveats

  • Historical validation from kline data is NOT a proper backtest — it doesn't account

for execution quality, fills, queue priority, or concurrent position effects

  • All P&L estimates are gross approximations — actual results depend on execution
  • Strategy edge can decay — what worked historically may not work going forward
  • Paradex retail traders get zero fees, but pro/API traders pay maker/taker fees

that can significantly impact high-frequency strategies

  • This skill designs strategies, not financial advice. Users trade at their own risk.
  • For actual execution, the user needs to use the authenticated MCP order tools or

build a bot using the paradex-py SDK

See templates.md for expanded strategy templates with parameter ranges and example calculations.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

96.68%
按下载量换算829

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills