问答交流

特征输入列表中如何取前一天的均值?

由pudong365创建,最终由small_q 被浏览 20 用户

where((mean(close_0,5)>mean(close_0,20)),1,0)

这是判断当天的5天均值是否大于20天的均值,若要取前一天的5天的均值如何写?

shift(mean(close_0,5),1)不对


谢谢

标签

shift函数
评论
  • where((mean(close_1,5)>mean(close_0,20)),1,0)
  • 看你的描述,shift(mean(close_0,5),1)是可以满足的,有什么地方不对呢?
  • shift(mean(close_0,5),1)
{link}