在线检测未来函数

飞狐最基本的低点指标公式

来源:Internet,编辑:股旁网,2010-07-29

使用说明:从股价下穿5日均线到最低点5日均线上翘,回调不超过N%

ma5:=ma(c,5);ma10:=ma(c,10);ma20:=ma(c,20);
m5up:=ma5>ref(ma5,1) and ref(ma5,1)<=ref(ma5,2);
m5down:=ma5<ref(ma5,1) and ref(ma5,1)>=ref(ma5,2);
t1:=barslast(m5down);//:从5日均线开始向下捌头时算到现在的天数;
t2:=llvbars(ma5,t1);//:5日均线下行以来的5日线的最低点到现在的天数;
{股旁网-股票公式网站 www.gupang.com}
ww:=if(ref(c,t2)>ref(o,t2),c>ref(c,t2)*0.98,c>(ref(c,t2)+ref(o,t2))/2);
gl:=filter(m5up,3);
ref(c,t1)/ref(c,t2)<1.12 and ww and m5up and gl

飞狐最基本的低点指标公式

相关文章