以文本方式查看主题

-  金字塔客服中心 - 专业程序化交易软件提供商  (http://weistock.com/bbs/index.asp)
--  公式模型编写问题提交  (http://weistock.com/bbs/list.asp?boardid=4)
----  麻烦写一个五连阴,五连阳的公式  (http://weistock.com/bbs/dispbbs.asp?boardid=4&id=51347)

--  作者:zyf1199
--  发布时间:2013/4/23 14:04:55
--  麻烦写一个五连阴,五连阳的公式
麻烦写一个五连阴,五连阳的公式,适用于各个周期
--  作者:jinzhe
--  发布时间:2013/4/23 14:16:53
--  

五连阳:c>o and ref(c,1)>ref(o,1) and  ref(c,2)>ref(o,2) and  ref(c,3)>ref(o,3)  ref(c,4)>ref(o,4)

五连阴把>改成<


--  作者:RogarZ
--  发布时间:2013/4/23 17:11:55
--  
count(closE>open,5)=5
count(close<open,5)=5

--  作者:zyf1199
--  发布时间:2013/4/23 19:13:50
--