quant-trader-daily
[中文] 量化交易员日常任务管理系统 - 专为股票交易员设计的每日工作流程管理工具。 包含:开盘/收盘/日终汇报模板、实时持仓监控、风控提醒、交易日志记录。 使用场景:(1) 管理每日交易任务时间表 (2) 生成汇报给上级的简报 (3) 监控持仓风险 (4) 记录交易日志 (5) 复盘分析 [English] Quantitative Trader Daily Task Management System - A comprehensive daily workflow management tool designed for stock traders. Features: Opening/Closing/End-of-day report templates, real-time portfolio monitoring, risk control alerts, trading log recording. Use cases: (1) Manage daily trading schedules (2) Generate briefings for supervisors (3) Monitor portfolio risks (4) Record trading logs (5) Performance review
Best use case
quant-trader-daily is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
[中文] 量化交易员日常任务管理系统 - 专为股票交易员设计的每日工作流程管理工具。 包含:开盘/收盘/日终汇报模板、实时持仓监控、风控提醒、交易日志记录。 使用场景:(1) 管理每日交易任务时间表 (2) 生成汇报给上级的简报 (3) 监控持仓风险 (4) 记录交易日志 (5) 复盘分析 [English] Quantitative Trader Daily Task Management System - A comprehensive daily workflow management tool designed for stock traders. Features: Opening/Closing/End-of-day report templates, real-time portfolio monitoring, risk control alerts, trading log recording. Use cases: (1) Manage daily trading schedules (2) Generate briefings for supervisors (3) Monitor portfolio risks (4) Record trading logs (5) Performance review
Teams using quant-trader-daily should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/trader-daily/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How quant-trader-daily Compares
| Feature / Agent | quant-trader-daily | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
[中文] 量化交易员日常任务管理系统 - 专为股票交易员设计的每日工作流程管理工具。 包含:开盘/收盘/日终汇报模板、实时持仓监控、风控提醒、交易日志记录。 使用场景:(1) 管理每日交易任务时间表 (2) 生成汇报给上级的简报 (3) 监控持仓风险 (4) 记录交易日志 (5) 复盘分析 [English] Quantitative Trader Daily Task Management System - A comprehensive daily workflow management tool designed for stock traders. Features: Opening/Closing/End-of-day report templates, real-time portfolio monitoring, risk control alerts, trading log recording. Use cases: (1) Manage daily trading schedules (2) Generate briefings for supervisors (3) Monitor portfolio risks (4) Record trading logs (5) Performance review
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
Best AI Skills for Claude
Explore the best AI skills for Claude and Claude Code across coding, research, workflow automation, documentation, and agent operations.
Cursor vs Codex for AI Workflows
Compare Cursor and Codex for AI coding workflows, repository assistance, debugging, refactoring, and reusable developer skills.
Top AI Agents for Productivity
See the top AI agent skills for productivity, workflow automation, operational systems, documentation, and everyday task execution.
SKILL.md Source
# Quant Trader Daily | 量化交易员日常任务管理
> 📈 [EN] A comprehensive daily workflow management tool for stock traders
> 📈 [中文] 专为股票交易员设计的每日工作流程管理工具
---
## 🚀 Quick Start | 快速开始
### [EN] View Today's Task Schedule | [中文] 查看今日任务表
```bash
# Read daily task list
cat references/daily-schedule.md
```
### [EN] Generate Opening Report | [中文] 生成开盘简报
```bash
# Generate opening report template
python3 scripts/generate_report.py --type opening --portfolio config/portfolio.json
```
### [EN] Generate Closing Report | [中文] 生成收盘汇报
```bash
# Generate closing report template
python3 scripts/generate_report.py --type closing --portfolio config/portfolio.json
```
### [EN] Monitor Portfolio Risk | [中文] 监控持仓风险
```bash
# Check if positions trigger risk control lines
python3 scripts/risk_monitor.py --portfolio config/portfolio.json --threshold 8
```
---
## 📅 Daily Schedule | 每日任务时间表
### [EN] Pre-Market Preparation (07:00 - 09:30) | [中文] 盘前准备(07:00 - 09:30)
| Time | Task (EN) | Task (中文) | Description |
|:---:|:---|:---|:---|
| **07:00** | US Stocks + Commodities Morning Report | 美股板块+大宗商品早报 | Review overnight US stocks, gold, crude oil trends |
| **08:00** | Global Financial News | 全球财经资讯早报 | Caixin/ East Money/ Xueqiu hot stocks |
| **09:15** | Market + Portfolio Technical Analysis | 大盘+持仓形态分析 | Technical patterns of holdings |
| **09:25** | Today's Trading Strategy | 今日操盘策略 | Plan today's trades |
| **09:30** | A-Share Market Open | A股开盘 | Start real-time monitoring |
### [EN] Intraday Trading (09:30 - 15:00) | [中文] 盘中交易(09:30 - 15:00)
| Time | Task (EN) | Task (中文) | Description |
|:---:|:---|:---|:---|
| **09:35** | 📢 Opening Brief | 📢 开盘简报 | Report P&L and plans to supervisor |
| **10:00** | 1st Risk Control Check | 第一轮风控检查 | Check stop-loss/take-profit levels |
| **10:30** | Portfolio Review | 持仓复盘 | Morning position review |
| **Every 15min** | Real-time Portfolio Monitoring | A股持仓实时监控 | Continuous position tracking |
| **12:00** | Morning Review + PM Strategy | 早盘复盘+下午操盘策略 | Summarize morning, plan afternoon |
| **14:00** | 2nd Risk Control Check | 第二轮风控检查 | Check risk levels again |
| **14:30** | Closing Trading Strategy | 尾盘买卖策略 | Plan closing trades |
| **15:00** | Market Close | 收盘 | Confirm all trades |
### [EN] Post-Market Summary (15:00 - 18:00) | [中文] 盘后总结(15:00 - 18:00)
| Time | Task (EN) | Task (中文) | Description |
|:---:|:---|:---|:---|
| **15:05** | 📢 Closing Report | 📢 收盘汇报 | Report P&L to supervisor |
| **15:30** | Full-Day Trading Review | 全天操盘复盘 | Review day's operations |
| **17:30** | Screen Stocks for Tomorrow | 筛股选出明日候选股票 | Prepare tomorrow's watchlist |
| **18:00** | 📢 End-of-Day Summary | 📢 日终总结 | Send complete daily report |
### [EN] Evening Session (20:00 - 23:00) | [中文] 晚间时段(20:00 - 23:00)
| Time | Task (EN) | Task (中文) | Description |
|:---:|:---|:---|:---|
| **20:00** | Global Financial News Summary | 全球财经资讯总结 | Summarize daily global finance news |
| **23:00** | Full-Day Work Review | 全日工作复盘 | Review and prepare to rest |
---
## 🛠️ Command Quick Reference | 命令速查
| Command | Function (EN) | Function (中文) |
|:---|:---|:---|
| `generate_report --type opening` | Generate Opening Report | 生成开盘简报 |
| `generate_report --type closing` | Generate Closing Report | 生成收盘汇报 |
| `generate_report --type daily` | Generate Daily Summary | 生成日终总结 |
| `risk_monitor --threshold 8` | Monitor Risk Control Lines (default -8%) | 监控风控线(默认-8%)|
| `portfolio_status` | View Portfolio Overview | 查看持仓总览 |
| `trading_log --add` | Add Trading Record | 添加交易记录 |
---
## 📊 Report Templates | 汇报模板
### [EN] Opening Brief (09:35) | [中文] 开盘简报(09:35)
```markdown
## Opening Brief | 开盘简报 | YYYY-MM-DD
### Overnight Markets | 隔夜市场
- US Stocks: Nasdaq X% / Dow X% / S&P X%
- Gold: $X (X%)
- Crude Oil: $X (X%)
### Current Holdings | 当前持仓
| Stock | Position | Cost | Current | P&L |
|:---|:---:|:---:|:---:|:---:|
| Stock A | X shares | ¥X | ¥X | +X% |
### Today's Plan | 今日计划
- Watchlist: XXX
- Risk Actions: XXX
- Adjustment Plan: XXX
```
### [EN] Closing Report (15:05) | [中文] 收盘汇报(15:05)
```markdown
## Closing Report | 收盘汇报 | YYYY-MM-DD
### Daily P&L | 当日盈亏
- Total P&L: ¥X (X%)
- Portfolio Value: ¥X
- Available Cash: ¥X
### Trading Records | 交易记录
| Time | Action | Stock | Quantity | Price |
|:---|:---:|:---:|:---:|:---:|
| 09:35 | Buy | XXX | X shares | ¥X |
### Holdings Detail | 持仓明细
| Stock | Position | Cost | Current | P&L |
|:---|:---:|:---:|:---:|:---:|
| Stock A | X shares | ¥X | ¥X | +X% |
```
---
## ⚙️ Configuration Files | 配置文件
### [EN] Portfolio Config | [中文] 持仓配置 `config/portfolio.json`
```json
{
"positions": [
{
"code": "002353",
"name": "杰瑞股份",
"quantity": 7400,
"cost": 117.30,
"stop_loss": -8,
"take_profit": 5
}
],
"cash": 2307880.54,
"total_assets": 5310139.54
}
```
### [EN] Risk Config | [中文] 风控配置 `config/risk.json`
```json
{
"stop_loss_pct": -8,
"take_profit_pct": 5,
"max_single_position": 30,
"alert_interval": 15
}
```
---
## 🔗 Detailed References | 详细参考
- **Daily Schedule**: [references/daily-schedule.md](references/daily-schedule.md)
- **Report Templates**: [references/report-templates.md](references/report-templates.md)
- **Risk Management**: [references/risk-management.md](references/risk-management.md)
---
*Version: 1.0.0*
*Target Users: Stock Traders / Quant Trading Departments | 股票交易员 / 量化交易部*
*Trading Days: Monday-Friday | 周一到周五*Related Skills
youtube-watcher
Fetch and read transcripts from YouTube videos. Use when you need to summarize a video, answer questions about its content, or extract information from it.
youtube-transcript
Fetch and summarize YouTube video transcripts. Use when asked to summarize, transcribe, or extract content from YouTube videos. Handles transcript fetching via residential IP proxy to bypass YouTube's cloud IP blocks.
youtube-auto-captions - YouTube 自动字幕
## 描述
youtube
YouTube Data API integration with managed OAuth. Search videos, manage playlists, access channel data, and interact with comments. Use this skill when users want to interact with YouTube. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway).
yahoo-finance
Get stock prices, quotes, fundamentals, earnings, options, dividends, and analyst ratings using Yahoo Finance. Uses yfinance library - no API key required.
xurl
A Twitter research and content intelligence skill focused on attracting WordPress and Shopify clients. Use to analyze Twitter profiles, threads, and conversations for: (1) Identifying what small agency founders and eCommerce brands are discussing; (2) Understanding pain points around WordPress performance, Shopify CRO, and development bottlenecks; (3) Extracting high-performing content angles; (4) Turning insights into authority-building posts; (5) Converting Twitter intelligence into business leverage for clear content angles, strong positioning, and qualified inbound leads.
xlsx
Use this skill any time a spreadsheet file is the primary input or output. This means any task where the user wants to: open, read, edit, or fix an existing .xlsx, .xlsm, .csv, or .tsv file (e.g., adding columns, computing formulas, formatting, charting, cleaning messy data); create a new spreadsheet from scratch or from other data sources; or convert between tabular file formats. Trigger especially when the user references a spreadsheet file by name or path — even casually (like "the xlsx in my downloads") — and wants something done to it or produced from it. Also trigger for cleaning or restructuring messy tabular data files (malformed rows, misplaced headers, junk data) into proper spreadsheets. The deliverable must be a spreadsheet file. Do NOT trigger when the primary deliverable is a Word document, HTML report, standalone Python script, database pipeline, or Google Sheets API integration, even if tabular data is involved.
xiaohongshu-mcp
Automate Xiaohongshu (RedNote) content operations using a Python client for the xiaohongshu-mcp server. Use for: (1) Publishing image, text, and video content, (2) Searching for notes and trends, (3) Analyzing post details and comments, (4) Managing user profiles and content feeds. Triggers: xiaohongshu automation, rednote content, publish to xiaohongshu, xiaohongshu search, social media management.
twitter-openclaw
Interact with Twitter/X — read tweets, search, post, like, retweet, and manage your timeline.
x-twitter-growth
X/Twitter growth engine for building audience, crafting viral content, and analyzing engagement. Use when the user wants to grow on X/Twitter, write tweets or threads, analyze their X profile, research competitors on X, plan a posting strategy, or optimize engagement. Complements social-content (generic multi-platform) with X-specific depth: algorithm mechanics, thread engineering, reply strategy, profile optimization, and competitive intelligence via web search.
akshare-online-alpha
Run Wyckoff master-style analysis from stock codes, holdings (symbol/cost/qty), cash, CSV data, and optional chart images. Use when users want online multi-source data fetching with source switching, strict Beijing-time trading-session checks, fixed system prompt analysis, single-stock analysis, holding rotation, holding add/reduce suggestions, or empty-position cash deployment suggestions.
writing-skills
Use when creating new skills, editing existing skills, or verifying skills work before deployment