An advanced trading dashboard skill that visualizes portfolio history, splits realized vs unrealized P&L, tracks R-multiple risk, and overlays real-time win-rates.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install dashboard-pnl-visualization
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install dashboard-pnl-visualization using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
The dashboard-pnl-visualization skill is an advanced analytical framework designed for automated trading systems and dashboard applications. By integrating real-time broker equity historical logs with local profit summaries, this solution bridges the gap between gross equity tracking and granular performance auditing. It resolves common visualization issues by splitting realized and unrealized P&L, factoring in persistent infrastructure costs, and overlaying current win-rate statistics.
Built on top of Openclaw Skills, this workflow allows developer-traders to run a highly customizable Python visualization daemon. Using standard APIs like Alpaca, it pulls direct equity structures and computes multi-tiered risk indicators, such as R-multiples, ensuring traders have real-time, actionable insights into their active market risk and net performance metrics.
To deploy this visualization system, configure your dependencies and integrate the python visualization daemon.
Ensure you have the required Python modules installed:
pip install alpaca-py matplotlib
Create a dashboard_config.json in your project root:
{
"symbols": ["SPY", "QQQ", "AAPL"],
"lookback_days": 30,
"interval_seconds": 60,
"output_dir": "dashboards",
"cost_data": 3.33,
"cost_software": 6.67,
"risk_limit_pct": 10.0,
"profit_log_dir": "logs/live",
"save_latest": true
}
Initialize the dashboard monitoring script using the custom configuration parameters:
python monitor_dashboard.py --config dashboard_config.json --profit-log-dir logs/live
The configuration relies on the following schema:
| Property | Type | Description |
|---|---|---|
symbols |
List[str] | Target symbols to display on the dashboard |
lookback_days |
int | Historical window for chart rendering |
cost_data |
float | Daily platform data costs subtracted from net P&L |
cost_software |
float | Daily software/VPS infrastructure costs |
risk_limit_pct |
float | Upper boundary risk tolerance limit |
profit_log_dir |
str | Relative path to local tracker logs |
The skill relies on a standardized JSON format (profit_summary.json) written to the profit_log_dir:
{
"trades": [
{ "pnl": 150.00, "symbol": "AAPL", "side": "long" },
{ "pnl": -50.00, "symbol": "QQQ", "side": "short" }
]
}
Loading
Automate recent IPO tracking, enrich stock market data, and instantly generate TradingView watchlists.

An AI agent skill to programmatically generate and update Feishu and Lark whiteboards, transforming code-based architecture maps and flowcharts into collaborative visual assets.

An automated cryptocurrency scanner that detects significant price changes and unusual volume spikes using a multi-factor significance score.

An AI agent skill designed to interact with Feishu and Lark Sheets via lark-cli for managing operational tables, checklists, and reports.

A high-precision financial market reporter agent skill that aggregates multi-source trading intelligence into structured, highly actionable daily and real-time reports.

A highly disciplined financial intelligence skill that implements a strict day trading constitution using Smart Money Concepts and the AMD framework.








































