您好,論壇有很多例子,您可以搜下
http://www.weistock.com/bbs/dispbbs.asp?BoardID=4&ID=3007
http://www.weistock.com/bbs/dispbbs.asp?boardid=10&Id=2160
您看可以看下這個代碼范例,論壇相關的帖子您也可以搜索下。
手數:1;
ma5:=ma(c,5);
ma20:=ma(c,20);
開多條件:=cross(ma5,ma20);
開空條件:=cross(ma20,ma5);
//移動止盈
//多單
variable:win=0;
if 開多條件 and holding=0 then begin
BUY(1,手數,THISCLOSE);;
win:=c-enterprice;
end
if c-enterprice>win then win:=c-enterprice;
if win>=10 and c-enterprice<=3 then 平多1:sell(1,0,THISCLOSE); //盈利10個點后回撤達到7個點后平倉。