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


金字塔客服中心 - 专业程序化交易软件提供商金字塔软件公式模型编写问题提交 → 每涨5%就卖出20%的仓位,怎么写

   

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


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

主题:每涨5%就卖出20%的仓位,怎么写

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


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

一共平5次吗?


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

客户服务部

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

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

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


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

if 开仓条件 and holding=0 then begin

   buy(1,100,marketr);

   cc:=holding;

end

 

if c>=enterprice*1.05 and c<enterprice>1.1 then sell(1,cc*0.2,marketr);

if c>=enterprice*1.1 and c<enterprice>1.15 then sell(1,cc*0.2,marketr);

if c>=enterprice*1.15 and c<enterprice>1.2 then sell(1,cc*0.2,marketr);

if c>=enterprice*1.2 and c<enterprice>1.25 then sell(1,cc*0.2,marketr);

if c>=enterprice*1.30 then sell(1,0,marketr);



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

客户服务部

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

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

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


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

variable:n=0;

if 开仓条件 and holding=0 then begin

   buy(1,100,marketr);

   cc:=holding;

   n:=0;

end

 

if c>=enterprice*1.05 and c<enterprice>1.1 and n=0 and holding>0 then begin

  n:=1;

  sell(1,cc*0.2,marketr);

end

if c>=enterprice*1.1 and c<enterprice>1.15 and n=1 and holding>0 then begin

  n:=2;

  sell(1,cc*0.2,marketr);

end

if c>=enterprice*1.15 and c<enterprice>1.2 and n=2 and holding>0 then begin

  n:=3;

  sell(1,cc*0.2,marketr);

end

if c>=enterprice*1.2 and c<enterprice>1.25 and n=3 and holding>0 then begin

   n:=4;

   sell(1,cc*0.2,marketr);

end

if c>=enterprice*1.30 and n=4 then begin

   n:=5;

   sell(1,0,marketr);

end




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

客户服务部

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

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

 回到顶部