我有我在 excel 中按天数排序的数据,我现在想要做的是获得每天的每日收益总和。这里的问题是我这些天有多个条目。所以我可能只有一个 2018-12-05 的每日返回条目,但 2018-12-06 的 5 个条目。我希望我只获得 2018-12-06 的一个条目,其中包含累积每日回报(因此所有累积回报加在一起)和平均每日回报(因此累积回报除以当天的条目数量。对于2018-12-06 这将除以 5)。
所以我现在拥有的数据是这样的:
Dates Last.Price Daily.Return
19788 2018-11-23 75.18 -0.001199
19789 2018-11-23 129.04 -0.026490
19790 2018-11-26 77.84 -0.035382
19791 2018-11-26 127.98 0.008215
19792 2018-11-27 79.50 -0.021326
19793 2018-11-27 122.68 0.041413
19794 2018-11-28 80.27 -0.009686
19795 2018-11-29 80.00 0.003364
最终的数据框应该是这样的
Dates Last.Price Cum.Return Average.Return
19788 2018-11-23 75.18 -0.027689 -0.0138445
19790 2018-11-26 77.84 -0.027167 -0.0135835
19792 2018-11-27 79.50 0.020087 0.0100435
19794 2018-11-28 80.27 -0.009686 -0.009686
19795 2018-11-29 80.00 0.003364 0.003364
到目前为止,我有以下代码来总结每日回报。但是它的总和不正确。而且我不知道如何实现平均每日回报。
df = pd.read_csv('/Python Test/SP500Acquirer.csv')
def sum_from_days_prior(row, df):
'''returns sum of values in row month,
from all dates in df prior to row date'''
day = pd.to_datetime(row).day
all_dates_prior = df[df.index <= row]
same_day = all_dates_prior[all_dates_prior.index.day == day]
return same_day["Daily.Return"].sum()
df.set_index('Dates', inplace = True)
df.index = pd.to_datetime(df.index)
df["Dates"] = df.index
df.sort_index(inplace = True)
df["Day"] = df["Dates"].apply(lambda row: sum_from_days_prior (row, df))
df.drop("Dates", axis = 1, inplace = True)
print(df.tail(20))
如前所述,此代码未正确总结每日收益。而且我不知道如何获得这些天的平均回报。
天涯尽头无女友
相关分类