Skip to content

Commit d2b6fc5

Browse files
author
Robert Carver
committed
pandas fixes to asimpletradingrule.py
1 parent 3bf833d commit d2b6fc5

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

examples/introduction/asimpletradingrule.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -76,15 +76,15 @@ def calc_ewmac_forecast(price, Lfast, Lslow=None):
7676
# And we'll miss out on the rolldown. See
7777
# http://qoppac.blogspot.co.uk/2015/05/systems-building-futures-rolling.html
7878

79-
price = price.resample("1B", how="last")
79+
price = price.resample("1B").last()
8080

8181
if Lslow is None:
8282
Lslow = 4 * Lfast
8383

8484
# We don't need to calculate the decay parameter, just use the span
8585
# directly
86-
fast_ewma = pd.ewma(price, span=Lfast)
87-
slow_ewma = pd.ewma(price, span=Lslow)
86+
fast_ewma = price.ewm(span=Lfast).mean()
87+
slow_ewma = price.ewm(span=Lslow).mean()
8888
raw_ewmac = fast_ewma - slow_ewma
8989

9090
vol = robust_vol_calc(price.diff())

syscore/accounting.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -552,10 +552,10 @@ def __init__(self, returns_df, capital, weighted_flag=False):
552552
553553
"""
554554
# We often want to use
555-
daily_returns = returns_df.resample("1B", how="sum")
556-
weekly_returns = returns_df.resample("W", how="sum")
557-
monthly_returns = returns_df.resample("MS", how="sum")
558-
annual_returns = returns_df.resample("A", how="sum")
555+
daily_returns = returns_df.resample("1B").sum()
556+
weekly_returns = returns_df.resample("W").sum()
557+
monthly_returns = returns_df.resample("MS").sum()
558+
annual_returns = returns_df.resample("A").sum()
559559

560560
super().__init__(
561561
daily_returns,

0 commit comments

Comments
 (0)