发布于: 雪球转发:0回复:1喜欢:0
In [7]: for x in range(1200, 2001, 100):
...: income = 1575+125*(x-800)/100
...: profit = (income-1485)*0.51
...: print(x, income, profit)
...:
1300 2200.0 364.65
1400 2325.0 428.4
1500 2450.0 492.15
1600 2575.0 555.9
1700 2700.0 619.65
1800 2825.0 683.4
1900 2950.0 747.15
2000 3075.0 810.9
引用:
2021-04-03 13:20
$中远海控(SH601919)$ ccfi均值与年化业务收入、年化收益的关系:
2021年年化业务收入
=1575+125*(ccfi均值-800)/100。
年化业务收入因为结算时间关系第一季度与总值的23%会有一些差异,时间拉长差距会逐步减少。数据中已经假设2021运量比2019增加6%。
2021年年化收益
=(年...

全部讨论

Szymon2021-05-06 20:40

print('运价, 收入, 利润, 8倍市值')
for x in range(1200, 2101, 100):
income = 1575 + 125 * (x - 800) / 100
profit = (income - 1485) * 0.51
value = profit * 8
print('{}, {:.0f}, {:.0f}, {:.0f}'.format(x, income, profit, value))
-----------------------
运价, 收入, 利润, 8倍市值
1200, 2075, 301, 2407
1300, 2200, 365, 2917
1400, 2325, 428, 3427
1500, 2450, 492, 3937
1600, 2575, 556, 4447
1700, 2700, 620, 4957
1800, 2825, 683, 5467
1900, 2950, 747, 5977
2000, 3075, 811, 6487
2100, 3200, 875, 6997