先引入指标公式kdj,在把下列内容覆盖原内容,即可。(公式名称也改下) rsv:=(close-llv(low,n))/(hhv(high,n)-llv(low,n))*100;k:=sma(rsv,m1,1);d:=sma(k,m2,1);j:=3*k-2*d;j1:=ref(j,1);enterlong:count(v(v,55),30)=30 and j>j1 and k(j,5)>=1 and (v/ref(v,1)>1.7 or v/ref(v,2)>2);... 20210311
ma5:=ma(c,5);ma10:=ma(c,10);ma30:=ma(c,30);zx:=(ma5+ma10)/2;qsxs:=ma5>=ma30 and ma30>ref(ma30,1);gd:=zx>=ref(zx,1) and ref(zx,1)<ref(zx,2);yb:=c>ref((o-c)/2+c,2);买:=cross(c,zx) and (gd ...