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


金字塔客服中心 - 专业程序化交易软件提供商金字塔软件公式模型编写问题提交 → [讨论]同样的策略在后台多账号交易时要根据账号个数写多个公式?

   

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


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

主题:[讨论]同样的策略在后台多账号交易时要根据账号个数写多个公式?

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


加好友 发短信
等级:小飞侠 帖子:1882 积分:3310 威望:0 精华:15 注册:2010/3/15 13:11:56
[讨论]同样的策略在后台多账号交易时要根据账号个数写多个公式?  发帖心情 Post By:2010/12/28 11:48:18    Post IP:123.118.94.126[只看该作者]

账号666666的策略:

以下内容为程序代码:

1 begintime:=currenttime>=091500 and currenttime<=145500;
2 endtime:=currenttime>=145930;
3
4 buycond:=begintime;
5 sellcond:=begintime;
6
7 if tbuyholdingex('666666',0,0)=0 then begin
8     if buycond then begin
9         buyprice:=close;
10         mycash:=taccount2(19,'666666');
11         lots:=intpart(mycash/(buyprice*multiplier*taccount(41)));
12         tbuy(1,lots,lmt,close,0,'666666',0);
13     end
14 end
15
16 if tsellholdingex('666666',0,0)=0 then begin
17     if sellcond then begin
18         sellprice:=close;
19         mycash:=taccount2(19,'666666');
20         lots:=intpart(mycash/(sellprice*multiplier*taccount(42)));
21         tbuyshort(1,lots,lmt,close,0,'666666',0);
22     end
23 end
24
25 if tbuyholdingex('666666',0,0)>0 then begin
26     if endtime then
27         tsell(1,tbuyholdingex('666666',0,0),lmt,close,'666666',0);
28 end
29
30 if tsellholdingex('666666',0,0)<0 then begin
31     if endtime then
32         tsellshort(1,tsellholdingex('666666',0,0),lmt,close,'666666',0);
33 end

 

账号888888的策略:

以下内容为程序代码:

1 begintime:=currenttime>=091500 and currenttime<=145500;
2 endtime:=currenttime>=145930;
3
4 buycond:=begintime;
5 sellcond:=begintime;
6
7 if tbuyholdingex('888888',0,0)=0 then begin
8     if buycond then begin
9         buyprice:=close;
10         mycash:=taccount2(19,'888888');
11         lots:=intpart(mycash/(buyprice*multiplier*taccount(41)));
12         tbuy(1,lots,lmt,close,0,'888888',0);
13     end
14 end
15
16 if tsellholdingex('888888',0,0)=0 then begin
17     if sellcond then begin
18         sellprice:=close;
19         mycash:=taccount2(19,'888888');
20         lots:=intpart(mycash/(sellprice*multiplier*taccount(42)));
21         tbuyshort(1,lots,lmt,close,0,'888888',0);
22     end
23 end
24
25 if tbuyholdingex('888888',0,0)>0 then begin
26     if endtime then
27         tsell(1,tbuyholdingex('888888',0,0),lmt,close,'888888',0);
28 end
29
30 if tsellholdingex('888888',0,0)<0 then begin
31     if endtime then
32         tsellshort(1,tsellholdingex('888888',0,0),lmt,close,'888888',0);
33 end

 

 

仅仅因为账号不同就需要写多个公式?这个不太合理吧。

[此贴子已经被作者于2010-12-28 12:09:48编辑过]

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


加好友 发短信 大哥
等级:超级版主 帖子:2837 积分:13237 威望:0 精华:2 注册:2010/7/14 17:31:54
  发帖心情 Post By:2010/12/28 14:06:14    Post IP:58.246.57.26[只看该作者]

也可以用 条件2 or 条件2 then的形式嘛

你认为怎样最好?



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

客户服务部

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

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

service@weistock.com

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

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


加好友 发短信
等级:小飞侠 帖子:1882 积分:3310 威望:0 精华:15 注册:2010/3/15 13:11:56
  发帖心情 Post By:2010/12/28 17:30:18    Post IP:114.241.169.14[只看该作者]

以下是引用董小球在2010-12-28 14:06:14的发言:

也可以用 条件2 or 条件2 then的形式嘛

你认为怎样最好?

那还是1个策略不是2个策略吧,总不能把所有的策略写在一个公式中吧。

 

总不能有多少个账号,就copy多少份代码吧?

 

就像一个策略可以应用在多个品种上,一个策略应该也可以应用在多个账号上才对。

[此贴子已经被作者于2010-12-28 17:32:22编辑过]

 回到顶部