以文本方式查看主题

-  金字塔客服中心 - 专业程序化交易软件提供商  (http://weistock.com/bbs/index.asp)
--  策略编写求助区  (http://weistock.com/bbs/list.asp?boardid=11)
----  跪求帮忙! 开多仓后,SUM函数的具体应用  (http://weistock.com/bbs/dispbbs.asp?boardid=11&id=53061)

--  作者:铃铛的寓言
--  发布时间:2013/6/15 19:34:33
--  跪求帮忙! 开多仓后,SUM函数的具体应用
老师你好:  假定现在开多仓,开仓价为ENTERPRICE. 如果K线的收盘价大于enterprice,且此根K线为阳线,则记录所有此类K线close-open;直到平仓为止。
--  作者:铃铛的寓言
--  发布时间:2013/6/15 19:35:19
--  
我补充一下,是记录所有此类K线的close-open 的和。
--  作者:铃铛的寓言
--  发布时间:2013/6/16 16:55:38
--  
老师,怎么能帮忙吗?
--  作者:every
--  发布时间:2013/6/17 14:12:24
--  

VARIABLE:s=0;//用全局变量记录你要的值


buycond:=ref(count(c>o,2)=2,1);
sellcond:=ref(count(c<o,2)=2,1);


if holding>0 and sellcond and enterbars>5 then sell(1,1,market);

if buycond and holding=0  then
 begin
 buy(1,1,market);
 s:=0;
 end
 
if holding>0 and c>ENTERPRICE and c>o then s:=s+(c-o);


--  作者:铃铛的寓言
--  发布时间:2013/6/17 17:26:40
--  

谢谢了。 我看明白了。