作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
class EWMAWeekly(CustomFactor):
inputs = [USEquityPricing.close]
window_length = (13 + 2 * 13 - 1) * 5 # Initial 13 weeks for sma, then 25 more weeks to improve the accuracy of the current ema.
def compute(
self,
today,
assets,
out,
data,
):
alpha = 2 / (13 + 1)
weekly_data = data[4::5] # len = 38, index from 0 - 37
ema = average(weekly_data[:13]) # Initial SMA
i = 0
while i < 25:
ema = weekly_data[13 + i] * alpha + ema * (1 - alpha)
i += 1
out[:] = ema
上面的CustomFactor
是我目前拥有的。当我通过管道运行此命令时,输出为 average(weekly_data[:13])
,这是 25 周前的 SMA
。该代码不会引发任何错误,并且我已经测试了 while 循环,因此我知道它正在运行。我认为问题出在 while 循环内重新分配 ema 变量。我可能有一瞬间的愚蠢,但我似乎找不到问题所在。如有任何建议,我们将不胜感激。
谢谢
最佳答案
看来我犯了一个愚蠢的错误。我使用整数而不是 float 来计算 alpha。更正后的代码如下。
class EWMAWeekly(CustomFactor):
inputs = [USEquityPricing.close]
window_length = (13 + 2 * 13 - 1) * 5 # Initial 13 weeks for sma, then 25 more weeks to improve the accuracy of the current ema.
def compute(
self,
today,
assets,
out,
data,
):
alpha = 2.0 / (13.0 + 1.0)
weekly_data = data[4::5] # len = 38, index from 0 - 37
ema = average(weekly_data[:13]) # Initial SMA
i = 0
while i < 25:
ema = weekly_data[13 + i] * alpha + ema * (1 - alpha)
i += 1
out[:] = ema
关于python - 如何编写每周 EMA 的 CustomFactor - Python、Quantopian,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57633590/
我正在尝试使用 quantopian qgrid在 iPython notebook 中打印数据帧。基于例子的简单例子notebook : import qgrid qgrid.nbinstall(o
class EWMAWeekly(CustomFactor): inputs = [USEquityPricing.close] window_length = (13 + 2 * 1
我正在尝试对我自己的一组返回数据 df_returns(pandas 数据框)运行 Pyfolio 的 pf.create_full_tear_sheet(df_returns) 函数,如下所示: 但
我是一名优秀的程序员,十分优秀!