# Trade Journal Analysis

> Execute a supplied strategy via paper trading with freqtrade to produce a trade execution log, then profile that log's structure and statistics. Use when a researcher wants a structured trade journal ready for review; this workflow only paper-trades and never places live orders.

- Skill: `knuckles-team/trade-journal-analysis` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add knuckles-team/trade-journal-analysis`
- Raw SKILL.md: https://api.skillmd.com/api/skills/knuckles-team/trade-journal-analysis/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- License: MIT
- Author: Knuckles-Team (https://skillmd.com/u/knuckles-team)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/knuckles-team/trade-journal-analysis

---


# Trade Journal Analysis Workflow

Compose the named atomic skills without adding new journaling logic here.

## Inputs

Provide the strategy definition, asset universe, and execution window.

## Steps

### Step 0: freqtrade-executor [skill: freqtrade-executor]

Invoke `$freqtrade-executor` with the workflow inputs to paper-trade
the strategy and produce a trade execution log.

Expected: `trade_execution_log`

### Step 1: dataset-profiler [skill: dataset-profiler] [depends_on: Step 0]

Invoke `$dataset-profiler` with `trade_execution_log` to produce a
structural and statistical profile.

Expected: `trade_journal_profile`

## Output

Return `trade_execution_log` and `trade_journal_profile`. Only paper-trades;
never places live orders.

## Execution

- **Run first:** Step 0 — `$freqtrade-executor`.
- **After level 0:** Step 1 — `$dataset-profiler`.

**Execution:** If graph-os is reachable, offload the whole DAG via `graph_orchestrate action=execute_workflow` (or the `kg-delegate` skill) for true parallel/swarm execution. Otherwise execute the steps natively in dependency order: run steps with no unmet `depends_on` in parallel, then their dependents.

