← 返回 Skills 市场
134
总下载
1
收藏
0
当前安装
5
版本数
在 OpenClaw 中安装
/install freqtrade-deploy
功能描述
一键部署Freqtrade量化交易机器人。支持现货交易策略,自动安装依赖、配置策略、设置WebUI监控。
使用说明 (SKILL.md)
Freqtrade 一键部署
安装命令
直接在终端执行:
bash \x3C(curl -s https://raw.githubusercontent.com/freqtrade/freqtrade/develop/install.sh)
安装后配置
1. 创建用户目录和密码
cd freqtrade
freqtrade create-userdir --userdir user_data
freqtrade create-password --config user_data/config.json
2. 编辑配置文件
编辑 user_data/config.json,填入交易所API Key:
{
"exchange": {
"name": "binance",
"key": "你的API Key",
"secret": "你的API Secret"
}
}
3. 启动
freqtrade trade --config user_data/config.json
4. 访问WebUI
http://localhost:8080
常用命令
| 命令 | 说明 |
|---|---|
freqtrade start |
启动 |
freqtrade stop |
停止 |
freqtrade status |
状态 |
freqtrade balance |
余额 |
freqtrade trades |
交易记录 |
详细文档
安全使用建议
This skill appears to be a straightforward Freqtrade deploy helper, but take these precautions before running anything:
- Don't run curl | bash without review: the SKILL.md recommends piping a remote GitHub script into bash. Inspect the remote script first (download and read it) or run the included scripts/install.sh locally instead of blindly executing remote code.
- Prefer isolated environments: install inside a VM, container (Docker), or dedicated user account rather than your main system to avoid global changes from `pip3 install -e . --break-system-packages`.
- Protect API keys: the tool asks you to put exchange API keys in config.json. Only provide keys with the minimum privileges (spot trading only) and consider IP whitelisting. Do not store keys in world-readable files.
- Secure the WebUI: the default config binds api_server to 0.0.0.0 and uses weak defaults like 'changeme'. Change the username/password, jwt/ws tokens, and preferably bind to localhost or restrict access via firewall or reverse proxy.
- Review inconsistencies: docs reference different default ports (8080 vs 41808) and various defaults; confirm and harden the final configuration before launching with real funds.
If you want stronger assurance: ask the maintainer for the exact upstream install script SHA or run the official repo install script after manually verifying its contents, and run the bot in an isolated environment with limited funds until you are confident in the setup.
功能分析
Type: OpenClaw Skill
Name: freqtrade-deploy
Version: 1.0.4
The skill automates the deployment of the Freqtrade trading bot but employs several high-risk patterns, including the use of 'curl | bash' for installation (SKILL.md, README.md) and a default configuration in 'scripts/install.sh' that binds the WebUI to all network interfaces (0.0.0.0) with default credentials ('changeme'). Furthermore, the script sets 'dry_run: false' by default, which could trigger live trades immediately upon the user providing API keys. While these behaviors align with the stated goal of simplified deployment, they represent significant security vulnerabilities and financial risks.
能力评估
Purpose & Capability
Name/description (deploy Freqtrade) match the included files and runtime instructions: the skill clones the official Freqtrade repository, installs Python deps, writes a config.json, and shows how to run the bot and WebUI. No unrelated credentials or services are requested.
Instruction Scope
SKILL.md instructs running a remote script via `bash <(curl -s https://raw.githubusercontent.com/freqtrade/freqtrade/develop/install.sh)`, and to edit config.json to put exchange API keys and enable an api_server. Executing remote scripts directly grants that remote code full privileges in the shell and is a significant risk. The instructions also recommend exposing the WebUI (bind 0.0.0.0) and include insecure default credentials (e.g., 'changeme'). There are minor inconsistencies in suggested ports (SKILL.md uses 8080 while references/usage.md mentions 41808).
Install Mechanism
No registry install spec is provided; the recommended install is to run an upstream GitHub install script (raw.githubusercontent.com). The included local scripts/install.sh does a git clone of the official repo and runs `pip3 install -e . --break-system-packages`, which will alter the system Python environment (global installs) and may require elevated access. Using curl|bash and global pip installs increases risk compared to isolated/containerized installs.
Credentials
The skill itself does not request environment variables or external credentials, which is proportionate. However the generated config.json expects the user to place sensitive exchange API keys and the api_server defaults to public binding with weak default secrets (jwt_secret_key/ws_token/username/password set to 'changeme' or similar). The skill should explicitly warn users to set strong credentials and bind the API server to localhost or use firewall/IP whitelists.
Persistence & Privilege
The skill does not request always:true and will not be force-included. It does install software to disk when run, but does not claim to modify other skills or global agent settings beyond installing the application itself.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install freqtrade-deploy - 安装完成后,直接呼叫该 Skill 的名称或使用
/freqtrade-deploy触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.4
freqtrade-deploy 1.0.4
- 更新了官方中文文档链接为 https://www.itrade.icu/zh/freqtrade/freqtrade
- 其余说明文档内容保持不变
v1.0.3
- WebUI 默认端口号由 41808 调整为 8080。
- 文档内容相应更新,更符合实际部署流程。
v1.0.2
- Updated documentation for streamlined setup and configuration instructions.
- Simplified installation command and post-installation steps.
- Removed strategy and risk warning sections from skill description.
- Polished command reference and external documentation links.
v1.0.1
- 简化和精炼了说明文档内容,删除了PEPE/Meme币网格策略及相关示例参数说明。
- 统一聚焦为「现货基础策略」与官方框架,更强泛用性。
- 更新了安装和使用说明,弱化特定币种配置,强调配置API与选择自定义策略。
- 精简了常用命令与风险提示,仅保留关键功能。
v1.0.0
Initial release – one-click deployment of the Freqtrade crypto trading bot with grid strategy for PEPE/meme coins.
- Automates the installation of Freqtrade 2026.2 and strategy setup
- Includes PepeBest spot grid strategy with default parameters
- Provides integrated WebUI for real-time monitoring
- Feishu notification integration
- Step-by-step guides for exchange API setup, WebUI security, and bot operations
- Covers key precautions and usage notes for safe trading
元数据
常见问题
Freqtrade Deploy 是什么?
一键部署Freqtrade量化交易机器人。支持现货交易策略,自动安装依赖、配置策略、设置WebUI监控。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 134 次。
如何安装 Freqtrade Deploy?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install freqtrade-deploy」即可一键安装,无需额外配置。
Freqtrade Deploy 是免费的吗?
是的,Freqtrade Deploy 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Freqtrade Deploy 支持哪些平台?
Freqtrade Deploy 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Freqtrade Deploy?
由 NamoGu(@namogu)开发并维护,当前版本 v1.0.4。
推荐 Skills