以文本方式查看主题

-  金字塔客服中心 - 专业程序化交易软件提供商  (http://weistock.com/bbs/index.asp)
--  策略编写求助区  (http://weistock.com/bbs/list.asp?boardid=11)
----  怎么不产生开平仓?  (http://weistock.com/bbs/dispbbs.asp?boardid=11&id=62752)

--  作者:szwangwei88
--  发布时间:2014/3/16 11:16:19
--  怎么不产生开平仓?
fc:=close;

IF NOT(ISLASTBAR) THEN EXIT; 
for i=3 to DATACOUNT do
begin
if fc[i]>fc[i-1] then
BUY(HOLDING=0,1,THISCLOSE);
else if HOLDING=1 and fc[i]<fc[i-1] then
SELL(1,1,THISCLOSE);  
end

应用在图上,没有开平仓信号,测试也没有开平仓,是什么原因?

--  作者:fly
--  发布时间:2014/3/17 9:17:27
--  

类似帖子,下回请发到公式模型编写问题提交

 

if barpos<3 then exit;

if close>ref(close,1) and holding=0 then buy(1,1,thisclose);  
if close<ref(close,1) and holding>0 then sell(1,1,thisclose); 

[此贴子已经被作者于2014/3/17 9:18:50编辑过]