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


金字塔客服中心 - 专业程序化交易软件提供商金字塔软件公式模型编写问题提交 → 突破昨天最高价或最低价入场,谢谢.

   

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


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

主题:突破昨天最高价或最低价入场,谢谢.

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


加好友 发短信
等级:罗宾汉 帖子:46311 积分:50819 威望:0 精华:2 注册:2011/3/23 8:50:25
  发帖心情 Post By:2016/9/30 9:28:57    Post IP:180.169.30.6[显示全部帖子]

h1:=callstock(stklabel,vthigh,6,-1);

l1:=callstock(stklabel,vtlow,6,-1);

 

if h>h1 then buy(holding=0,1,thisclose);

if l<l1 then buyshort(holding=0,1,thisclose);

 

if h>enterprice+10 and holding>0 then sell(1,0,thisclose);

if l<enterprice-5 and holding>0 then sell(1,0,thisclose);

if l<enterprice-10 and holding<0 then sellshort(1,0,thisclose);

if h>enterprice+5 and holding<0 then sellshort(1,0,thisclose);

用固定时间间隔模式



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

客户服务部

----------------------------------------------------------- 欢迎您参加我公司的技术培训,具体培训需求请发邮件到service@weistock.com

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

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


加好友 发短信
等级:罗宾汉 帖子:46311 积分:50819 威望:0 精华:2 注册:2011/3/23 8:50:25
  发帖心情 Post By:2016/10/8 9:36:09    Post IP:116.226.229.171[显示全部帖子]

那你的意思是一天只开一次?


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

客户服务部

----------------------------------------------------------- 欢迎您参加我公司的技术培训,具体培训需求请发邮件到service@weistock.com

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

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


加好友 发短信
等级:罗宾汉 帖子:46311 积分:50819 威望:0 精华:2 注册:2011/3/23 8:50:25
  发帖心情 Post By:2016/10/8 15:12:44    Post IP:180.169.30.6[显示全部帖子]

那就要这样改

if cross(h,h1) then buy(holding=0,1,thisclose);

if cross(l1,l) then buyshort(holding=0,1,thisclose);



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

客户服务部

----------------------------------------------------------- 欢迎您参加我公司的技术培训,具体培训需求请发邮件到service@weistock.com

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

 回到顶部