Install
openclaw skills install trade-memorySave a trade or signal event to local memory log file (trades.jsonl). Use when a trade signal is confirmed and needs to be recorded, saved, or logged for future reference and history tracking.
openclaw skills install trade-memoryAppend confirmed trade signals or executed trades to a local JSONL log file for persistent memory and history tracking.
This skill runs a local Python script that:
Step 1 — Collect trade data from user or agent:
Step 2 — Run the save script via bash tool: python3 ~/.npm-global/lib/node_modules/openclaw/skills/trade-memory/save.py '<JSON_INPUT>'
Step 3 — Confirm to user that trade was saved successfully.
{ "symbol": "BTCUSDT", "side": "BUY", "entry": 94500, "sl": 94000, "tp": 95500, "note": "sweep+fvg signal, RSI 58", "source": "btc-analyzer", "ts": "2026-02-23T00:00:00Z" }
{"ok": true, "path": "/home/windows_11/.openclaw/polymarket-workspace/trades.jsonl", "appended": 1, "trade": {...}}
/home/windows_11/.openclaw/polymarket-workspace/trades.jsonl
Each line is one JSON object representing one trade event.
If input is not valid JSON: {"ok": false, "error": "Invalid JSON: <error detail>"}