You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: skills/moltrade/SKILL.md
+66-3Lines changed: 66 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
name: moltrade
3
-
description: Operate the Moltrade trading bot (config, backtest, test-mode runs, Nostr signal broadcast, exchange adapters, strategy integration) in OpenClaw.
3
+
description: **Moltrade** is a decentralized, automated trading assistant that lets you run quant strategies, share encrypted signals, and allow others to copy your trades—all securely via the Nostr network. Earn reputation and credits based on your trading performance.
4
4
metadata:
5
5
openclaw:
6
6
emoji: "🤖"
@@ -11,11 +11,70 @@ metadata:
11
11
12
12
# Moltrade Bot Skill
13
13
14
-
Paths are repo-root relative. Keep actions deterministic and redact secrets.
14
+
Operate the Moltrade trading bot (config, backtest, test-mode runs, Nostr signal broadcast, exchange adapters, strategy integration) in OpenClaw.
**Moltrade** balances security, usability, and scalability. Key advantages include:
43
+
44
+
-**Client-side Key self-hosting,not cloud Custody,**: All sensitive keys and credentials remain on the user's machine; the cloud relay never holds funds or private keys, minimizing custodial risk.**No access to private keys or funds.**
45
+
-**Encrypted, Targeted Communication**: Signals are encrypted before publishing and only decryptable by intended subscribers, preserving strategy privacy and subscriber security.
46
+
-**Lightweight Cloud Re-encryption & Broadcast**: The cloud acts as an efficient relay/re-broadcaster without storing private keys; re-encryption or forwarding techniques improve delivery reliability and reach.
47
+
-**One-Click Copy Trading (User Friendly)**: Provides an out-of-the-box copy-trading experience for non-expert users—set up in a few steps and execute signals locally.
48
+
-**OpenClaw Strategy Advisor**: Integrates OpenClaw as an advisory tool for automated backtests and improvement suggestions; users decide whether to adopt recommended changes.
49
+
-**Cloud Can Be Decentralized Relayer Network**: The lightweight relay architecture allows future migration to decentralized relay networks, reducing single points of failure and improving censorship resistance.
50
+
-**Unified Incentive (Credit) System**: A transparent, verifiable Credit mechanism rewards all participants (signal providers, followers, relay nodes), aligning incentives across the ecosystem.
51
+
52
+
## **How It Works (Simplified Flow)**
53
+
54
+
```mermaid
55
+
graph LR
56
+
A["1) Run Your Bot"]
57
+
B["2) Generate & Encrypt"]
58
+
C["3) Relay"]
59
+
D["4) Copy & Execute"]
60
+
E["5) Verify & Earn"]
61
+
62
+
A ---> B
63
+
B ---> C
64
+
C ---> D
65
+
D ---> E
66
+
```
15
67
16
68
## Install & Init
17
69
18
-
- Clone the repo and install Python deps locally (code is required for strategies, nostr, and CLI):
70
+
- If you are inside **OpenClaw**, you can install directly via ClawHub:
71
+
72
+
```bash
73
+
clawhub search moltrade
74
+
clawhub install moltrade
75
+
```
76
+
77
+
- OR & Clone the repo and install Python deps locally (code is required for strategies, nostr, and CLI):
- Initialize a fresh config with the built-in wizard (no trading):
@@ -67,3 +126,7 @@ Paths are repo-root relative. Keep actions deterministic and redact secrets.
67
126
68
127
- Never print or commit private keys, mnemonics, nsec, or shared keys.
69
128
- Default to test mode; require explicit consent for live trading.
129
+
130
+
## Disclaimer
131
+
132
+
Trading cryptocurrencies and derivatives carries significant risk. Moltrade is a tool for automation and social trading. You are solely responsible for any financial losses. Past performance is not indicative of future results.
0 commit comments