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


金字塔客服中心 - 专业程序化交易软件提供商金字塔软件公式模型编写问题提交 → 固定时间开仓。

   

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


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

主题:固定时间开仓。

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


加好友 发短信
等级:罗宾汉 帖子:46311 积分:50819 威望:0 精华:2 注册:2011/3/23 8:50:25
  发帖心情 Post By:2015/7/21 8:43:24    Post IP:58.246.57.26[显示全部帖子]

if time=093000 and h>=ma(c,5) then buy(holding=0,1,market);

if time=093000 and l<=ma(c,5) then buyshort(holding=0,1,market);

 

if holding>0 and l<enterprice-10*mindiff then sell(1,0,market);

if holding<0 and h>enterprice+10*mindiff then sellshort(1,0,market);

 

if time<151200 and holding>0 and enterbars>0 and l<=hhv(h,enterbars+1)-10*mindiff then begin

    sell(1,0,market);

    buyshort(holding=0,1,market);

end

 

if time<151200 and holding<0 and enterbars>0 and h>=llv(l,enterbars+1)+10*mindiff then begin

    sellshort(1,0,market);

    buy(holding=0,1,market);

end

 

if time>=151200 then begin

    sell(1,0,market);

    sellshort(1,0,market);

end



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

客户服务部

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

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

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


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

你发的截图也没能说明 9点到15点之间有空仓的情况,都是有持仓的


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

客户服务部

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

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

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


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

没有开多信号还是有信号有下单但是不成交?

图表交易里面开仓价格是enterprice



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

客户服务部

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

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

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


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

if time=093000 and h>=ma(c,5) then buy(holding=0,1,market);

if time=093000 and l<=ma(c,5) then buyshort(holding=0,1,market);

 

if holding>0 and l<enterprice-10*mindiff then begin

    sell(1,0,market);

    buyshort(holding=0,1,market);

end

if holding<0 and h>enterprice+10*mindiff then  begin

    sellshort(1,0,market);

    buy(holding=0,1,market);

end

 

if time<151200 and holding>0 and enterbars>0 and l<=hhv(h,enterbars+1)-10*mindiff then begin

    sell(1,0,market);

    buyshort(holding=0,1,market);

end

 

if time<151200 and holding<0 and enterbars>0 and h>=llv(l,enterbars+1)+10*mindiff then begin

    sellshort(1,0,market);

    buy(holding=0,1,market);

end

 

if time>=151200 then begin

    sell(1,0,market);

    sellshort(1,0,market);

end



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

客户服务部

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

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

 回到顶部