以文本方式查看主题 - 金字塔客服中心 - 专业程序化交易软件提供商 (http://weistock.com/bbs/index.asp) -- 金字塔软件问题提交 (http://weistock.com/bbs/list.asp?boardid=2) ---- [求助] 预警无法实现 (http://weistock.com/bbs/dispbbs.asp?boardid=2&id=2763) |
-- 作者:xch -- 发布时间:2010/9/8 22:36:48 -- [求助] 预警无法实现 设置预警在http://i3.6.cn/cvbnm/ff/7b/11/9fa3fe4badb90533c898ad0db5e028bd.jpg 用的公式基本上就是视频教程里面的 H30: = ref(hhv(h,n),1); L30: = ref(llv(l,n),1); //H20: =ref(hhv(h,20),1); //L20: =ref(llv(l,20),1); Long:=h>h30 and time>(090000+n*100) and time<145200; if l then begin sellshort(holding<0,0,limitr,h30); buy(holding=0,1,limitr,h30); end partline(holding>0,l30,colorred); Short:= l [此贴子已经被作者于2010-9-8 22:42:55编辑过]
|
-- 作者:fly -- 发布时间:2010/9/9 8:55:51 -- 假设n=30 H30: = ref(hhv(h,n),1); L30: = ref(llv(l,n),1); //H20: =ref(hhv(h,20),1); //L20: =ref(llv(l,20),1); Long:=h>h30 and time>093000 and time<145200; if long then begin sellshort(holding<0,0,limitr,h30); buy(holding=0,1,limitr,h30); end partline(holding>0,l30,colorred);
Short:= l<l30 and time<
试试这样 |
-- 作者:xch -- 发布时间:2010/9/9 22:39:33 -- 谢谢指点。 |
-- 作者:admin -- 发布时间:2010/9/9 22:52:49 -- 请楼主认真学习金字塔的后台自动交易的说明。 你的代码是工作在图表状态,无法在后台运行 |
-- 作者:xch -- 发布时间:2010/9/10 10:26:26 -- 谢谢教师指点。 |