{1》kdj死叉 空開倉 金叉 空平倉 。
2》成交之后以成交價為準自動止損5個點,止贏10個點。
3》下午2:55之前強行平倉}
k:stkindi('','kdj.k',0,1);
d:stkindi('','kdj.d',0,1);
t1:=time<145500;
t2:=time>=145500;
if cross(d,k) and t1 then buyshort(holding=0,1,thisclose);
if cross(k,d) and t1 then sellshort(1,0,market);
if t1 and h>enterprice+5*mindiff and enterbars>0 then sellshort(1,0,market);//止損
if t1 and l<enterprice-10*mindiff and enterbars>0 then sellshort(1,0,market);//止盈
if t2 then sellshort(1,0,market);// 強平
謝謝老師的答復,我是新人第一次接觸程序化交易,真心謝謝老師!!我試試看看能不能行。再次真心謝謝老師!