with one click
t0
计算股票 T+0 交易的收益,考虑买入价、卖出价、手数、佣金、印花税。当用户提到做 T、T+0、股票做 T、短线做 T 时使用。
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
计算股票 T+0 交易的收益,考虑买入价、卖出价、手数、佣金、印花税。当用户提到做 T、T+0、股票做 T、短线做 T 时使用。
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
将 Excel 文件的指定工作表转换为 PDF 格式。当用户提到 Excel 转 PDF、表格转 PDF、导出 Excel 为 PDF 时使用。
自动创建 Excel 并模拟数据。当用户提到生成测试数据、mock 数据、造数据、Excel 模板、模拟数据时使用。
在 Excel 文件中搜索指定关键词并返回文件、行号、详情。当用户提到搜索 Excel、Excel 查找、Excel 搜索内容时使用。
将多个 Excel 文件合并到一个 Excel 的不同 sheet 中。当用户提到合并 Excel、合并多个表格、多个 Excel 合并时使用。
将多个 Excel 文件的多个 sheet 合并到同一个 sheet。当用户提到合并 sheet、跨表合并、汇总多个表格时使用。
将同一个 Excel 文件的多个 sheet 拆分为独立文件。当用户提到拆分 sheet、Excel 按表拆分、拆 sheet 时使用。
| name | t0 |
| description | 计算股票 T+0 交易的收益,考虑买入价、卖出价、手数、佣金、印花税。当用户提到做 T、T+0、股票做 T、短线做 T 时使用。 |
计算做 T 的收益
计算股票 T+0 交易的收益,考虑买入价、卖出价、手数、佣金、印花税等因素。
office/skills/finance/t0/
from office.skills.finance import t0
profit = t0(
buy_price=11.99,
sale_price=12.26,
shares=700
)
print(profit)
| 参数 | 类型 | 必填 | 默认值 | 说明 |
|---|---|---|---|---|
buy_price | float | 是 | - | 买入成本 |
sale_price | float | 是 | - | 卖出价格 |
shares | int | 是 | - | 单笔数量(手数) |
w_rate | float | 否 | 2.5/10000 | 佣金费率(万 0.25) |
min_rate | int | 否 | 5 | 单笔最低手续费(元) |
stamp_tax | float | 否 | 1/1000 | 印花税(千分之一) |
float:做 T 后的收益金额
from office.skills.finance import t0
# 买 11.99 卖 12.26,700 股
profit = t0(buy_price=11.99, sale_price=12.26, shares=700)
print(f"本次做T收益: {profit} 元")
office.api.finance.t0