以文本方式查看主题 - 金字塔客服中心 - 专业程序化交易软件提供商 (http://weistock.com/bbs/index.asp) -- 公式模型编写问题提交 (http://weistock.com/bbs/list.asp?boardid=4) ---- 取最近5天的最低价 (http://weistock.com/bbs/dispbbs.asp?boardid=4&id=47960) |
-- 作者:双保险 -- 发布时间:2013/1/21 20:11:24 -- 取最近5天的最低价 如题,就最近5天的K线最低价。谢谢。 |
-- 作者:左岸 -- 发布时间:2013/1/21 21:37:25 -- A:=LLV(L,5); |
-- 作者:jinzhe -- 发布时间:2013/1/23 9:18:50 -- 通用的方法 l1:=callstock(stklabel,vtlow,6,-1); l2:=callstock(stklabel,vtlow,6,-2); l3:=callstock(stklabel,vtlow,6,-3); l4:=callstock(stklabel,vtlow,6,-4); l5:=callstock(stklabel,vtlow,6,-5);
llv5:min(l1,min(l2,min(l3,min(l4,l5)))); |