← Back to Skills Marketplace
namogu

Freqtrade Deploy

by NamoGu · GitHub ↗ · v1.0.4 · MIT-0
cross-platform ⚠ suspicious
134
Downloads
1
Stars
0
Active Installs
5
Versions
Install in OpenClaw
/install freqtrade-deploy
Description
一键部署Freqtrade量化交易机器人。支持现货交易策略,自动安装依赖、配置策略、设置WebUI监控。
README (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 交易记录

详细文档

Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install freqtrade-deploy
  3. After installation, invoke the skill by name or use /freqtrade-deploy
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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
Metadata
Slug freqtrade-deploy
Version 1.0.4
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 5
Frequently Asked Questions

What is Freqtrade Deploy?

一键部署Freqtrade量化交易机器人。支持现货交易策略,自动安装依赖、配置策略、设置WebUI监控。 It is an AI Agent Skill for Claude Code / OpenClaw, with 134 downloads so far.

How do I install Freqtrade Deploy?

Run "/install freqtrade-deploy" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Freqtrade Deploy free?

Yes, Freqtrade Deploy is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Freqtrade Deploy support?

Freqtrade Deploy is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Freqtrade Deploy?

It is built and maintained by NamoGu (@namogu); the current version is v1.0.4.

💬 Comments