Rss & SiteMap
金字塔客服中心 - 专业程序化交易软件提供商 http://www.weistock.com/bbs/
请教:橡胶25000以上每涨1000点开一手空,每回调一千点平一手空,怎么写?
variable:n=1;
if c>25000+n*1000 and c<25000+(n+1)*1000 then begin
buyshort(1,1,marketr);
n:=n+1;
end
if c<enterprice-1000 and holding<0 then begin
sellshort(1,1,marketr);
n:=n-1;