Install
openclaw skills install @northcap-group/drt-self-improving-agentSelf-improving DRT/ICT trading agent — journals every trade (setup type, bias, R:R, outcome), analyzes its own win/loss patterns, and builds a personal trading memory that makes the agent smarter over time. 100% lokal — ingen netværkskald.
openclaw skills install @northcap-group/drt-self-improving-agentA trading agent that learns from its own trades. Every trade is journaled → analyzed → patterns are discovered → the agent adjusts its own rules. The more trades, the sharper it gets.
trades.json grows with every tradedrt-self-improving-agent/
├── SKILL.md
├── scripts/
│ ├── journal.py # Add trade to trades.json (CLI)
│ ├── analyze.py # Analyze patterns + print learnings
└── data/
└── trades.json # Trade memory (auto-created)
# Journal a trade (after every trade!)
python3 scripts/journal.py --symbol SP500 --bias LONG --type 2 \
--entry 7741 --sl 7681 --tp 7802 --rr 2.5 --result win --killzone NY
# See what the agent has learned
python3 scripts/analyze.py
| Field | Value | Description |
|---|---|---|
symbol | SP500, BTCUSD… | Instrument |
bias | LONG / SHORT | Direction |
type | 1, 2, 3 | DRT type (continuation/reversal/consolidation) |
entry / sl / tp | price | Trade levels |
rr | 1.5, 2.0, 3.0 | R:R at entry |
result | win / loss / be | Outcome |
killzone | London, NY, SB-AM, SB-PM | Where the trade was taken |
notes | text | Free note (e.g. "sweep 12 bars old") |
The agent prints concrete learnings, e.g.:
Use the agent to remind about trading windows (CET/Danish time):