Rss & SiteMap
金字塔客服中心 - 专业程序化交易软件提供商 http://www.weistock.com/bbs/
这个是什么意思?平仓k线不进行开仓?
exitbars>1
为什么不能用?
这个需要用全局变量来限定,一般是这样的
variable:n=0;
if 平仓条件 and 持仓判断 then begin
平仓语句;
n:=n+1;
end
if 开仓条件 and n=0 then 开仓语句;
if 开仓条件 and exitbars>1 then 开仓语句;