欢迎使用金字塔普通技术服务论坛,您可以在相关区域发表技术支持贴。
我司技术服务人员将优先处理 VIP客服论坛 服务贴,普通区问题处理速度慢,请耐心等待。谢谢您对我们的支持与理解。


金字塔客服中心 - 专业程序化交易软件提供商金字塔软件金字塔软件问题提交 → [求助] 预警无法实现

   

欢迎使用金字塔普通技术服务论坛,您可以在相关区域发表技术支持贴。
我司技术服务人员将优先处理 VIP客服论坛 服务贴,普通区问题处理速度慢,请耐心等待。谢谢您对我们的支持与理解。    


  共有6510人关注过本帖树形打印复制链接

主题:[求助] 预警无法实现

帅哥哟,离线,有人找我吗?
xch
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:新手上路 帖子:4 积分:90 威望:0 精华:0 注册:2010/9/6 15:09:23
[求助] 预警无法实现  发帖心情 Post By: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(090000+n*100) and time < 145200 ;

if short then

begin

sell(holding>0,0,limitr,l30);

buyshort(holding=0,1,limitr,l30);

end

partline(holding<0,h30,colorgreen);

sell(time>145500 and holding>0,0,thisclose);

sellshort(time>145500 and holding<0,0,thisclose);

为什么不会预警?什么地方弄错了?
[此贴子已经被作者于2010-9-8 22:42:55编辑过]

 回到顶部
帅哥哟,离线,有人找我吗?
fly
  2楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:管理员 帖子:5082 积分:17642 威望:0 精华:6 注册:2010/7/15 9:05:58
  发帖心情 Post By: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<(093000+n*100) and time < 145200 ;

if short then

begin

sell(holding>0,0,limitr,l30);

buyshort(holding=0,1,limitr,l30);

end

partline(holding<0,h30,colorgreen);

sell(time>145500 and holding>0,0,thisclose);

sellshort(time>145500 and holding<0,0,thisclose);

 

试试这样 



金字塔—专业程序化交易量化投资平台

客户服务部

-----------------------------------------------------------

欢迎您参加我公司的技术培训,具体培训需求请发邮件到

service@weistock.com

您的宝贵建议或者投诉,请发往邮箱:weiwei@weistock.com

 回到顶部
帅哥哟,离线,有人找我吗?
xch
  3楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:新手上路 帖子:4 积分:90 威望:0 精华:0 注册:2010/9/6 15:09:23
  发帖心情 Post By:2010/9/9 22:39:33 [只看该作者]

谢谢指点。

 回到顶部
帅哥哟,离线,有人找我吗?
admin
  4楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:管理员 帖子:7302 积分:32559 威望:1000 精华:45 注册:2003/12/30 16:34:32
  发帖心情 Post By:2010/9/9 22:52:49 [只看该作者]

请楼主认真学习金字塔的后台自动交易的说明。

你的代码是工作在图表状态,无法在后台运行


 回到顶部
帅哥哟,离线,有人找我吗?
xch
  5楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:新手上路 帖子:4 积分:90 威望:0 精华:0 注册:2010/9/6 15:09:23
  发帖心情 Post By:2010/9/10 10:26:26 [只看该作者]

谢谢教师指点。

 回到顶部