以文本方式查看主题

-  金字塔客服中心 - 专业程序化交易软件提供商  (http://222.73.7.161/bbs/index.asp)
--  公式模型编写问题提交  (http://222.73.7.161/bbs/list.asp?boardid=4)
----  [原创]趋势指标  (http://222.73.7.161/bbs/dispbbs.asp?boardid=4&id=6465)

--  作者:z7c9
--  发布时间:2011/5/10 12:49:16
--  [原创]趋势指标

图片点击可在新窗口打开查看

 

hh:=ref(hhv(high,3),1);
ll:=ref(llv(low,3),1);
oo:=valuewhen(day<>ref(day,1),open);

upcond:=ref(all(isup,3),1) and ref(high,1)=hh and ref(low,3)=ll and hh-ll>=oo*0.005;
downcond:=ref(all(isdown,3),1) and ref(low,1)=ll and ref(high,3)=hh and hh-ll>=oo*0.005;

drawicon(upcond,hh,10);
drawicon(downcond,ll,11);


--  作者:背影很杀
--  发布时间:2011/5/15 9:17:30
--  
看样子挺准