Install in seconds
Install this skill
Copy the command and run it in your terminal. You can review the source before installing.
terminal
git clone https://github.com/CoderWanFeng/python-office

Works with Git. The repository opens in your current directory.

💰
AutomationPython

Stock T0 Profit Calculator

by CoderWanFeng

Compute stock T+0 trade profit considering buy price, sell price, shares, commission, and stamp tax. Quickly evaluate day trade profitability.

1.3K stars297 forksAdded 2026/07/20
officepippypipythonweixin

Documentation

README

t0 Skill

计算做 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