npx skills add smithery/louloulin --skill kelly-position
louloulin/claude-agent-sdk · Archived
kelly-position
使用Kelly?
Installation
npx skills add louloulin/claude-agent-sdk --skill kelly-position
Stronger alternatives
This repository is archived — consider an actively maintained alternative.
分析股息投资机会,评估股息安?
61 installs统一查询股票、加密货币等金融数据。支持Yahoo Finance、Alpha Vantage、Tushare、Binance等多个数据…
9 installsSimilar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Helps users discover and install agent skills when they ask questions like "how do I do X", "fi…
3.3M installsBrowser automation CLI for AI agents. Use when the user needs to interact with websites, includ…
810.4K installsReview UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "chec…
617.3K installsBuild, deploy, evaluate, optimize, fine-tune, and manage Microsoft Foundry agents, models, and …
576.5K installsPrepare azd-based Azure projects for deployment: generates azure.yaml, infrastructure (Bicep/Te…
568.3K installsAlso in this package
Other skills from louloulin/claude-agent-sdk.
npx skills add louloulin/claude-agent-sdk
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Skill metadata
Parsed from SKILL.md frontmatter.
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md1,457 B -
docs
SUMMARY.md201 B
History
- First seen on skills.sh
- First recorded snapshot · 15 installs
SKILL.md
Kelly仓位计算
使用Kelly公式计算最优投资仓位,平衡长期增长与风险控制。
核心公式
完整Kelly: f* = (bp - q) / b
b= 盈亏比 (平均盈利/平均亏损)p= 胜率,q= 败率 (1-p)f*= 最优仓位比例
简化Kelly: f = μ / σ² (基于期望收益μ和方差σ²)
实践建议
- 分数Kelly: 使用1/4或1/2 Kelly降低波动
- 仓位上限: 单只股票≤25%(Munger原则)
- 最小仓位: Kelly<2%时不建仓
- 组合管理: 多只股票时需归一化总仓位
使用方式
当用户提供胜率和盈亏比时,计算完整Kelly并应用1/4分数:
let kelly = (b * p - (1.0 - p)) / b;
let safe_kelly = (kelly * 0.25).min(0.25).max(0.0);
输出内容
- Kelly最优仓位
- 推荐仓位(1/4或1/2 Kelly)
- 风险等级评估
- 仓位限制说明
- 建议理由
工具和详细文档
- 📁 [详细计算方法](./detailed-calculation.md)
- 📁 [Rust实现参考](./reference-implementation.md)
- 🔧 [kellycalculator.py](./scripts/kellycalculator.py) - 命令行工具